repo_name
stringclasses
6 values
pr_number
int64
512
78.9k
pr_title
stringlengths
3
144
pr_description
stringlengths
0
30.3k
author
stringlengths
2
21
date_created
timestamp[ns, tz=UTC]
date_merged
timestamp[ns, tz=UTC]
previous_commit
stringlengths
40
40
pr_commit
stringlengths
40
40
query
stringlengths
17
30.4k
filepath
stringlengths
9
210
before_content
stringlengths
0
112M
after_content
stringlengths
0
112M
label
int64
-1
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/EditAndContinue/RudeEditKind.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable namespace Microsoft.CodeAnalysis.EditAndContinue { // TELEMETRY: DO NOT MODIFY ANY ENUM VALUES OF THIS ENUM. // IT WILL BREAK OUR SQM VARIABLE MAPPINGS. internal enum RudeEditKind : ushort { None = 0, ActiveStatementUpdate = 1, ActiveStatementLambdaRemoved = 2, Update = 3, ModifiersUpdate = 4, HandlesClauseUpdate = 5, ImplementsClauseUpdate = 6, VarianceUpdate = 7, FieldKindUpdate = 8, TypeUpdate = 9, //ConstraintKindUpdate = 10, InitializerUpdate = 11, FixedSizeFieldUpdate = 12, EnumUnderlyingTypeUpdate = 13, BaseTypeOrInterfaceUpdate = 14, TypeKindUpdate = 15, AccessorKindUpdate = 16, //MethodKindUpdate = 17, DeclareLibraryUpdate = 18, DeclareAliasUpdate = 19, Renamed = 20, Insert = 21, // InsertNonPrivate = 22, InsertVirtual = 23, InsertOverridable = 24, InsertExtern = 25, InsertOperator = 26, // InsertNonPublicConstructor = 27, InsertGenericMethod = 28, InsertDllImport = 29, InsertIntoStruct = 30, InsertIntoClassWithLayout = 31, Move = 32, Delete = 33, // MethodBodyAdd = 34, // MethodBodyDelete = 35, GenericMethodUpdate = 36, GenericMethodTriviaUpdate = 37, GenericTypeUpdate = 38, GenericTypeTriviaUpdate = 39, GenericTypeInitializerUpdate = 40, // PartialTypeInitializerUpdate = 41, // AsyncMethodUpdate = 42, // AsyncMethodTriviaUpdate = 43, StackAllocUpdate = 44, ExperimentalFeaturesEnabled = 45, AwaitStatementUpdate = 46, ChangingAccessibility = 47, CapturingVariable = 48, NotCapturingVariable = 49, DeletingCapturedVariable = 50, ChangingCapturedVariableType = 51, ChangingCapturedVariableScope = 52, ChangingLambdaParameters = 53, ChangingLambdaReturnType = 54, AccessingCapturedVariableInLambda = 55, NotAccessingCapturedVariableInLambda = 56, InsertLambdaWithMultiScopeCapture = 57, DeleteLambdaWithMultiScopeCapture = 58, ChangingQueryLambdaType = 59, InsertAroundActiveStatement = 60, DeleteAroundActiveStatement = 61, DeleteActiveStatement = 62, UpdateAroundActiveStatement = 63, UpdateExceptionHandlerOfActiveTry = 64, UpdateTryOrCatchWithActiveFinally = 65, UpdateCatchHandlerAroundActiveStatement = 66, UpdateStaticLocal = 67, InsertConstructorToTypeWithInitializersWithLambdas = 68, RenamingCapturedVariable = 69, InsertHandlesClause = 70, InsertFile = 71, PartiallyExecutedActiveStatementUpdate = 72, PartiallyExecutedActiveStatementDelete = 73, UpdatingStateMachineMethodAroundActiveStatement = 74, UpdatingStateMachineMethodMissingAttribute = 75, SwitchBetweenLambdaAndLocalFunction = 76, //RefStruct = 77, //ReadOnlyStruct = 78, //ReadOnlyReferences = 79, InternalError = 80, InsertMethodWithExplicitInterfaceSpecifier = 81, InsertIntoInterface = 82, InsertLocalFunctionIntoInterfaceMethod = 83, //SwitchExpressionUpdate = 84, ChangingFromAsynchronousToSynchronous = 85, ChangingStateMachineShape = 86, // Chagned from 0x103 in 16.1 and from 82 to 87 in 16.8 ComplexQueryExpression = 87, MemberBodyInternalError = 88, SourceFileTooBig = 89, MemberBodyTooBig = 90, InsertIntoGenericType = 91, ImplementRecordParameterAsReadOnly = 92, ImplementRecordParameterWithSet = 93, //AddRecordPositionalParameter = 94, //DeleteRecordPositionalParameter = 95, ExplicitRecordMethodParameterNamesMustMatch = 96, NotSupportedByRuntime = 97, MakeMethodAsync = 98, MakeMethodIterator = 99, InsertNotSupportedByRuntime = 100, ChangingAttributesNotSupportedByRuntime = 101, ChangeImplicitMainReturnType = 102, ChangingParameterTypes = 103, ChangingTypeParameters = 104, ChangingConstraints = 105, ChangingReloadableTypeNotSupportedByRuntime = 106, RenamingNotSupportedByRuntime = 107, } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable namespace Microsoft.CodeAnalysis.EditAndContinue { // TELEMETRY: DO NOT MODIFY ANY ENUM VALUES OF THIS ENUM. // IT WILL BREAK OUR SQM VARIABLE MAPPINGS. internal enum RudeEditKind : ushort { None = 0, ActiveStatementUpdate = 1, ActiveStatementLambdaRemoved = 2, Update = 3, ModifiersUpdate = 4, HandlesClauseUpdate = 5, ImplementsClauseUpdate = 6, VarianceUpdate = 7, FieldKindUpdate = 8, TypeUpdate = 9, //ConstraintKindUpdate = 10, InitializerUpdate = 11, FixedSizeFieldUpdate = 12, EnumUnderlyingTypeUpdate = 13, BaseTypeOrInterfaceUpdate = 14, TypeKindUpdate = 15, AccessorKindUpdate = 16, //MethodKindUpdate = 17, DeclareLibraryUpdate = 18, DeclareAliasUpdate = 19, Renamed = 20, Insert = 21, // InsertNonPrivate = 22, InsertVirtual = 23, InsertOverridable = 24, InsertExtern = 25, InsertOperator = 26, // InsertNonPublicConstructor = 27, InsertGenericMethod = 28, InsertDllImport = 29, InsertIntoStruct = 30, InsertIntoClassWithLayout = 31, Move = 32, Delete = 33, // MethodBodyAdd = 34, // MethodBodyDelete = 35, GenericMethodUpdate = 36, GenericMethodTriviaUpdate = 37, GenericTypeUpdate = 38, GenericTypeTriviaUpdate = 39, GenericTypeInitializerUpdate = 40, // PartialTypeInitializerUpdate = 41, // AsyncMethodUpdate = 42, // AsyncMethodTriviaUpdate = 43, StackAllocUpdate = 44, ExperimentalFeaturesEnabled = 45, AwaitStatementUpdate = 46, ChangingAccessibility = 47, CapturingVariable = 48, NotCapturingVariable = 49, DeletingCapturedVariable = 50, ChangingCapturedVariableType = 51, ChangingCapturedVariableScope = 52, ChangingLambdaParameters = 53, ChangingLambdaReturnType = 54, AccessingCapturedVariableInLambda = 55, NotAccessingCapturedVariableInLambda = 56, InsertLambdaWithMultiScopeCapture = 57, DeleteLambdaWithMultiScopeCapture = 58, ChangingQueryLambdaType = 59, InsertAroundActiveStatement = 60, DeleteAroundActiveStatement = 61, DeleteActiveStatement = 62, UpdateAroundActiveStatement = 63, UpdateExceptionHandlerOfActiveTry = 64, UpdateTryOrCatchWithActiveFinally = 65, UpdateCatchHandlerAroundActiveStatement = 66, UpdateStaticLocal = 67, InsertConstructorToTypeWithInitializersWithLambdas = 68, RenamingCapturedVariable = 69, InsertHandlesClause = 70, InsertFile = 71, PartiallyExecutedActiveStatementUpdate = 72, PartiallyExecutedActiveStatementDelete = 73, UpdatingStateMachineMethodAroundActiveStatement = 74, UpdatingStateMachineMethodMissingAttribute = 75, SwitchBetweenLambdaAndLocalFunction = 76, //RefStruct = 77, //ReadOnlyStruct = 78, //ReadOnlyReferences = 79, InternalError = 80, InsertMethodWithExplicitInterfaceSpecifier = 81, InsertIntoInterface = 82, InsertLocalFunctionIntoInterfaceMethod = 83, //SwitchExpressionUpdate = 84, ChangingFromAsynchronousToSynchronous = 85, ChangingStateMachineShape = 86, // Chagned from 0x103 in 16.1 and from 82 to 87 in 16.8 ComplexQueryExpression = 87, MemberBodyInternalError = 88, SourceFileTooBig = 89, MemberBodyTooBig = 90, InsertIntoGenericType = 91, ImplementRecordParameterAsReadOnly = 92, ImplementRecordParameterWithSet = 93, //AddRecordPositionalParameter = 94, //DeleteRecordPositionalParameter = 95, ExplicitRecordMethodParameterNamesMustMatch = 96, NotSupportedByRuntime = 97, MakeMethodAsync = 98, MakeMethodIterator = 99, InsertNotSupportedByRuntime = 100, ChangingAttributesNotSupportedByRuntime = 101, ChangeImplicitMainReturnType = 102, ChangingParameterTypes = 103, ChangingTypeParameters = 104, ChangingConstraints = 105, ChangingReloadableTypeNotSupportedByRuntime = 106, RenamingNotSupportedByRuntime = 107, ChangingNonCustomAttribute = 108 } }
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/FeaturesResources.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="0_directive" xml:space="preserve"> <value>#{0} directive</value> </data> <data name="Add_project_reference_to_0" xml:space="preserve"> <value>Add project reference to '{0}'.</value> </data> <data name="Add_reference_to_0" xml:space="preserve"> <value>Add reference to '{0}'.</value> </data> <data name="Actions_can_not_be_empty" xml:space="preserve"> <value>Actions can not be empty.</value> </data> <data name="generic_overload" xml:space="preserve"> <value>generic overload</value> </data> <data name="generic_overloads" xml:space="preserve"> <value>generic overloads</value> </data> <data name="overload" xml:space="preserve"> <value>overload</value> </data> <data name="overloads_" xml:space="preserve"> <value>overloads</value> </data> <data name="type" xml:space="preserve"> <value>type</value> </data> <data name="property_accessor" xml:space="preserve"> <value>property accessor</value> </data> <data name="_0_Keyword" xml:space="preserve"> <value>{0} Keyword</value> </data> <data name="Encapsulate_field_colon_0_and_use_property" xml:space="preserve"> <value>Encapsulate field: '{0}' (and use property)</value> </data> <data name="Encapsulate_field_colon_0_but_still_use_field" xml:space="preserve"> <value>Encapsulate field: '{0}' (but still use field)</value> </data> <data name="Encapsulate_fields_and_use_property" xml:space="preserve"> <value>Encapsulate fields (and use property)</value> </data> <data name="Encapsulate_fields_but_still_use_field" xml:space="preserve"> <value>Encapsulate fields (but still use field)</value> </data> <data name="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct" xml:space="preserve"> <value>Could not extract interface: The selection is not inside a class/interface/struct.</value> </data> <data name="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface" xml:space="preserve"> <value>Could not extract interface: The type does not contain any member that can be extracted to an interface.</value> </data> <data name="can_t_not_construct_final_tree" xml:space="preserve"> <value>can't not construct final tree</value> </data> <data name="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket" xml:space="preserve"> <value>Parameters' type or return type cannot be an anonymous type : [{0}]</value> </data> <data name="The_selection_contains_no_active_statement" xml:space="preserve"> <value>The selection contains no active statement.</value> </data> <data name="The_selection_contains_a_local_function_call_without_its_declaration" xml:space="preserve"> <value>The selection contains a local function call without its declaration.</value> </data> <data name="The_selection_contains_an_error_or_unknown_type" xml:space="preserve"> <value>The selection contains an error or unknown type.</value> </data> <data name="Type_parameter_0_is_hidden_by_another_type_parameter_1" xml:space="preserve"> <value>Type parameter '{0}' is hidden by another type parameter '{1}'.</value> </data> <data name="The_address_of_a_variable_is_used_inside_the_selected_code" xml:space="preserve"> <value>The address of a variable is used inside the selected code.</value> </data> <data name="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket" xml:space="preserve"> <value>Assigning to readonly fields must be done in a constructor : [{0}].</value> </data> <data name="generated_code_is_overlapping_with_hidden_portion_of_the_code" xml:space="preserve"> <value>generated code is overlapping with hidden portion of the code</value> </data> <data name="Add_optional_parameters_to_0" xml:space="preserve"> <value>Add optional parameters to '{0}'</value> </data> <data name="Add_parameters_to_0" xml:space="preserve"> <value>Add parameters to '{0}'</value> </data> <data name="Generate_delegating_constructor_0_1" xml:space="preserve"> <value>Generate delegating constructor '{0}({1})'</value> </data> <data name="Generate_constructor_0_1" xml:space="preserve"> <value>Generate constructor '{0}({1})'</value> </data> <data name="Generate_field_assigning_constructor_0_1" xml:space="preserve"> <value>Generate field assigning constructor '{0}({1})'</value> </data> <data name="Generate_Equals_and_GetHashCode" xml:space="preserve"> <value>Generate Equals and GetHashCode</value> </data> <data name="Generate_Equals_object" xml:space="preserve"> <value>Generate Equals(object)</value> </data> <data name="Generate_GetHashCode" xml:space="preserve"> <value>Generate GetHashCode()</value> </data> <data name="Generate_constructor_in_0" xml:space="preserve"> <value>Generate constructor in '{0}'</value> </data> <data name="Generate_all" xml:space="preserve"> <value>Generate all</value> </data> <data name="Generate_enum_member_1_0" xml:space="preserve"> <value>Generate enum member '{1}.{0}'</value> </data> <data name="Generate_constant_1_0" xml:space="preserve"> <value>Generate constant '{1}.{0}'</value> </data> <data name="Generate_read_only_property_1_0" xml:space="preserve"> <value>Generate read-only property '{1}.{0}'</value> </data> <data name="Generate_property_1_0" xml:space="preserve"> <value>Generate property '{1}.{0}'</value> </data> <data name="Generate_read_only_field_1_0" xml:space="preserve"> <value>Generate read-only field '{1}.{0}'</value> </data> <data name="Generate_field_1_0" xml:space="preserve"> <value>Generate field '{1}.{0}'</value> </data> <data name="Generate_local_0" xml:space="preserve"> <value>Generate local '{0}'</value> </data> <data name="Generate_0_1_in_new_file" xml:space="preserve"> <value>Generate {0} '{1}' in new file</value> </data> <data name="Generate_nested_0_1" xml:space="preserve"> <value>Generate nested {0} '{1}'</value> </data> <data name="Global_Namespace" xml:space="preserve"> <value>Global Namespace</value> </data> <data name="Implement_all_members_explicitly" xml:space="preserve"> <value>Implement all members explicitly</value> </data> <data name="Implement_interface_abstractly" xml:space="preserve"> <value>Implement interface abstractly</value> </data> <data name="Implement_interface_through_0" xml:space="preserve"> <value>Implement interface through '{0}'</value> </data> <data name="Implement_interface" xml:space="preserve"> <value>Implement interface</value> </data> <data name="Introduce_field_for_0" xml:space="preserve"> <value>Introduce field for '{0}'</value> </data> <data name="Introduce_local_for_0" xml:space="preserve"> <value>Introduce local for '{0}'</value> </data> <data name="Introduce_constant_for_0" xml:space="preserve"> <value>Introduce constant for '{0}'</value> </data> <data name="Introduce_local_constant_for_0" xml:space="preserve"> <value>Introduce local constant for '{0}'</value> </data> <data name="Introduce_field_for_all_occurrences_of_0" xml:space="preserve"> <value>Introduce field for all occurrences of '{0}'</value> </data> <data name="Introduce_local_for_all_occurrences_of_0" xml:space="preserve"> <value>Introduce local for all occurrences of '{0}'</value> </data> <data name="Introduce_constant_for_all_occurrences_of_0" xml:space="preserve"> <value>Introduce constant for all occurrences of '{0}'</value> </data> <data name="Introduce_local_constant_for_all_occurrences_of_0" xml:space="preserve"> <value>Introduce local constant for all occurrences of '{0}'</value> </data> <data name="Introduce_query_variable_for_all_occurrences_of_0" xml:space="preserve"> <value>Introduce query variable for all occurrences of '{0}'</value> </data> <data name="Introduce_query_variable_for_0" xml:space="preserve"> <value>Introduce query variable for '{0}'</value> </data> <data name="Anonymous_Types_colon" xml:space="preserve"> <value>Anonymous Types:</value> </data> <data name="is_" xml:space="preserve"> <value>is</value> </data> <data name="Represents_an_object_whose_operations_will_be_resolved_at_runtime" xml:space="preserve"> <value>Represents an object whose operations will be resolved at runtime.</value> </data> <data name="constant" xml:space="preserve"> <value>constant</value> </data> <data name="field" xml:space="preserve"> <value>field</value> </data> <data name="local_constant" xml:space="preserve"> <value>local constant</value> </data> <data name="local_variable" xml:space="preserve"> <value>local variable</value> </data> <data name="label" xml:space="preserve"> <value>label</value> </data> <data name="range_variable" xml:space="preserve"> <value>range variable</value> </data> <data name="parameter" xml:space="preserve"> <value>parameter</value> </data> <data name="discard" xml:space="preserve"> <value>discard</value> </data> <data name="in_" xml:space="preserve"> <value>in</value> </data> <data name="Summary_colon" xml:space="preserve"> <value>Summary:</value> </data> <data name="Locals_and_parameters" xml:space="preserve"> <value>Locals and parameters</value> </data> <data name="Type_parameters_colon" xml:space="preserve"> <value>Type parameters:</value> </data> <data name="Returns_colon" xml:space="preserve"> <value>Returns:</value> </data> <data name="Exceptions_colon" xml:space="preserve"> <value>Exceptions:</value> </data> <data name="Remarks_colon" xml:space="preserve"> <value>Remarks:</value> </data> <data name="generating_source_for_symbols_of_this_type_is_not_supported" xml:space="preserve"> <value>generating source for symbols of this type is not supported</value> </data> <data name="Assembly" xml:space="preserve"> <value>Assembly</value> </data> <data name="location_unknown" xml:space="preserve"> <value>location unknown</value> </data> <data name="Extract_interface" xml:space="preserve"> <value>Extract interface...</value> </data> <data name="Updating_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating '{0}' requires restarting the application.</value> </data> <data name="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine" xml:space="preserve"> <value>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</value> </data> <data name="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application" xml:space="preserve"> <value>Updating a complex statement containing an await expression requires restarting the application.</value> </data> <data name="Changing_visibility_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing visibility of {0} requires restarting the application.</value> </data> <data name="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application" xml:space="preserve"> <value>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</value> </data> <data name="Ceasing_to_capture_variable_0_requires_restarting_the_application" xml:space="preserve"> <value>Ceasing to capture variable '{0}' requires restarting the application.</value> </data> <data name="Deleting_captured_variable_0_requires_restarting_the_application" xml:space="preserve"> <value>Deleting captured variable '{0}' requires restarting the application.</value> </data> <data name="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application" xml:space="preserve"> <value>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</value> </data> <data name="Changing_the_parameters_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing the parameters of {0} requires restarting the application.</value> </data> <data name="Changing_the_return_type_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing the return type of {0} requires restarting the application.</value> </data> <data name="Changing_the_type_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing the type of {0} requires restarting the application.</value> </data> <data name="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</value> </data> <data name="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application" xml:space="preserve"> <value>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</value> </data> <data name="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application" xml:space="preserve"> <value>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</value> </data> <data name="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</value> </data> <data name="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application" xml:space="preserve"> <value>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</value> </data> <data name="Adding_0_into_a_1_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} into a {1} requires restarting the application.</value> </data> <data name="Adding_0_into_an_interface_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} into an interface requires restarting the application.</value> </data> <data name="Adding_0_into_a_generic_type_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} into a generic type requires restarting the application.</value> </data> <data name="Adding_0_into_an_interface_method_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} into an interface method requires restarting the application.</value> </data> <data name="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} into a class with explicit or sequential layout requires restarting the application.</value> </data> <data name="Updating_the_modifiers_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the modifiers of {0} requires restarting the application.</value> </data> <data name="Updating_the_Handles_clause_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the Handles clause of {0} requires restarting the application.</value> <comment>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</comment> </data> <data name="Adding_0_with_the_Handles_clause_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} with the Handles clause requires restarting the application.</value> <comment>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</comment> </data> <data name="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the Implements clause of a {0} requires restarting the application.</value> <comment>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</comment> </data> <data name="Updating_the_variance_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the variance of {0} requires restarting the application.</value> </data> <data name="Updating_the_type_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the type of {0} requires restarting the application.</value> </data> <data name="Updating_the_initializer_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the initializer of {0} requires restarting the application.</value> </data> <data name="Updating_the_size_of_a_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the size of a {0} requires restarting the application.</value> </data> <data name="Updating_the_underlying_type_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the underlying type of {0} requires restarting the application.</value> </data> <data name="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the base class and/or base interface(s) of {0} requires restarting the application.</value> </data> <data name="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application" xml:space="preserve"> <value>Changing a field to an event or vice versa requires restarting the application.</value> </data> <data name="Updating_the_kind_of_a_type_requires_restarting_the_application" xml:space="preserve"> <value>Updating the kind of a type requires restarting the application.</value> </data> <data name="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application" xml:space="preserve"> <value>Updating the kind of a property/event accessor requires restarting the application.</value> </data> <data name="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application" xml:space="preserve"> <value>Updating the library name of Declare statement requires restarting the application.</value> <comment>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</comment> </data> <data name="Updating_the_alias_of_Declare_statement_requires_restarting_the_application" xml:space="preserve"> <value>Updating the alias of Declare statement requires restarting the application.</value> <comment>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</comment> </data> <data name="Renaming_0_requires_restarting_the_application" xml:space="preserve"> <value>Renaming {0} requires restarting the application.</value> </data> <data name="Adding_0_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} requires restarting the application.</value> </data> <data name="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application" xml:space="preserve"> <value>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</value> </data> <data name="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application" xml:space="preserve"> <value>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</value> <comment>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</comment> </data> <data name="Adding_an_extern_0_requires_restarting_the_application" xml:space="preserve"> <value>Adding an extern {0} requires restarting the application.</value> <comment>{Locked="extern"} "extern" is C# keyword and should not be localized.</comment> </data> <data name="Adding_an_imported_method_requires_restarting_the_application" xml:space="preserve"> <value>Adding an imported method requires restarting the application.</value> </data> <data name="Adding_a_user_defined_0_requires_restarting_the_application" xml:space="preserve"> <value>Adding a user defined {0} requires restarting the application.</value> </data> <data name="Adding_a_generic_0_requires_restarting_the_application" xml:space="preserve"> <value>Adding a generic {0} requires restarting the application.</value> </data> <data name="Adding_0_around_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} around an active statement requires restarting the application.</value> </data> <data name="Moving_0_requires_restarting_the_application" xml:space="preserve"> <value>Moving {0} requires restarting the application.</value> </data> <data name="Deleting_0_requires_restarting_the_application" xml:space="preserve"> <value>Deleting {0} requires restarting the application.</value> </data> <data name="Deleting_0_around_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Deleting {0} around an active statement requires restarting the application.</value> </data> <data name="Updating_a_0_around_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Updating a {0} around an active statement requires restarting the application.</value> </data> <data name="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Updating async or iterator modifier around an active statement requires restarting the application.</value> <comment>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</comment> </data> <data name="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application" xml:space="preserve"> <value>Changing {0} from asynchronous to synchronous requires restarting the application.</value> </data> <data name="Modifying_a_generic_method_requires_restarting_the_application" xml:space="preserve"> <value>Modifying a generic method requires restarting the application.</value> </data> <data name="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application" xml:space="preserve"> <value>Modifying whitespace or comments in a generic {0} requires restarting the application.</value> </data> <data name="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application" xml:space="preserve"> <value>Modifying a method inside the context of a generic type requires restarting the application.</value> </data> <data name="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application" xml:space="preserve"> <value>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</value> </data> <data name="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application" xml:space="preserve"> <value>Modifying the initializer of {0} in a generic type requires restarting the application.</value> </data> <data name="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application" xml:space="preserve"> <value>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</value> </data> <data name="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application" xml:space="preserve"> <value>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</value> </data> <data name="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application" xml:space="preserve"> <value>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</value> </data> <data name="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application" xml:space="preserve"> <value>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</value> </data> <data name="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Modifying a catch handler around an active statement requires restarting the application.</value> </data> <data name="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application" xml:space="preserve"> <value>Modifying {0} which contains the stackalloc operator requires restarting the application.</value> <comment>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</comment> </data> <data name="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application" xml:space="preserve"> <value>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</value> <comment>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</comment> </data> <data name="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application" xml:space="preserve"> <value>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</value> <comment>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</comment> </data> <data name="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application" xml:space="preserve"> <value>Modifying source with experimental language features enabled requires restarting the application.</value> </data> <data name="Updating_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Updating an active statement requires restarting the application.</value> </data> <data name="Removing_0_that_contains_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Removing {0} that contains an active statement requires restarting the application.</value> </data> <data name="Adding_a_new_file_requires_restarting_the_application" xml:space="preserve"> <value>Adding a new file requires restarting the application.</value> </data> <data name="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application" xml:space="preserve"> <value>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</value> </data> <data name="Unexpected_interface_member_kind_colon_0" xml:space="preserve"> <value>Unexpected interface member kind: {0}</value> </data> <data name="Unknown_symbol_kind" xml:space="preserve"> <value>Unknown symbol kind</value> </data> <data name="Generate_abstract_property_1_0" xml:space="preserve"> <value>Generate abstract property '{1}.{0}'</value> </data> <data name="Generate_abstract_method_1_0" xml:space="preserve"> <value>Generate abstract method '{1}.{0}'</value> </data> <data name="Generate_method_1_0" xml:space="preserve"> <value>Generate method '{1}.{0}'</value> </data> <data name="Requested_assembly_already_loaded_from_0" xml:space="preserve"> <value>Requested assembly already loaded from '{0}'.</value> </data> <data name="The_symbol_does_not_have_an_icon" xml:space="preserve"> <value>The symbol does not have an icon.</value> </data> <data name="Extract_local_function" xml:space="preserve"> <value>Extract local function</value> </data> <data name="Extract_method" xml:space="preserve"> <value>Extract method</value> </data> <data name="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket" xml:space="preserve"> <value>Asynchronous method cannot have ref/out parameters : [{0}]</value> </data> <data name="The_member_is_defined_in_metadata" xml:space="preserve"> <value>The member is defined in metadata.</value> </data> <data name="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate" xml:space="preserve"> <value>You can only change the signature of a constructor, indexer, method or delegate.</value> </data> <data name="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue" xml:space="preserve"> <value>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</value> </data> <data name="Change_signature" xml:space="preserve"> <value>Change signature...</value> </data> <data name="Generate_new_type" xml:space="preserve"> <value>Generate new type...</value> </data> <data name="User_Diagnostic_Analyzer_Failure" xml:space="preserve"> <value>User Diagnostic Analyzer Failure.</value> </data> <data name="Analyzer_0_threw_an_exception_of_type_1_with_message_2" xml:space="preserve"> <value>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</value> </data> <data name="Analyzer_0_threw_the_following_exception_colon_1" xml:space="preserve"> <value>Analyzer '{0}' threw the following exception: '{1}'.</value> </data> <data name="Simplify_Names" xml:space="preserve"> <value>Simplify Names</value> </data> <data name="Simplify_Member_Access" xml:space="preserve"> <value>Simplify Member Access</value> </data> <data name="Remove_qualification" xml:space="preserve"> <value>Remove qualification</value> </data> <data name="Unknown_error_occurred" xml:space="preserve"> <value>Unknown error occurred</value> </data> <data name="No_valid_location_to_insert_method_call" xml:space="preserve"> <value>No valid location to insert method call.</value> </data> <data name="Available" xml:space="preserve"> <value>Available</value> </data> <data name="Not_Available" xml:space="preserve"> <value>Not Available ⚠</value> </data> <data name="_0_1" xml:space="preserve"> <value> {0} - {1}</value> </data> <data name="You_can_use_the_navigation_bar_to_switch_contexts" xml:space="preserve"> <value>You can use the navigation bar to switch contexts.</value> </data> <data name="in_Source" xml:space="preserve"> <value>in Source</value> </data> <data name="in_Suppression_File" xml:space="preserve"> <value>in Suppression File</value> </data> <data name="Remove_Suppression_0" xml:space="preserve"> <value>Remove Suppression {0}</value> </data> <data name="Remove_Suppression" xml:space="preserve"> <value>Remove Suppression</value> </data> <data name="Configure_0_severity" xml:space="preserve"> <value>Configure {0} severity</value> </data> <data name="Configure_0_code_style" xml:space="preserve"> <value>Configure {0} code style</value> </data> <data name="Configure_severity_for_all_0_analyzers" xml:space="preserve"> <value>Configure severity for all '{0}' analyzers</value> </data> <data name="Configure_severity_for_all_analyzers" xml:space="preserve"> <value>Configure severity for all analyzers</value> </data> <data name="Pending" xml:space="preserve"> <value>&lt;Pending&gt;</value> </data> <data name="Awaited_task_returns_0" xml:space="preserve"> <value>Awaited task returns '{0}'</value> </data> <data name="Awaited_task_returns_no_value" xml:space="preserve"> <value>Awaited task returns no value</value> </data> <data name="Note_colon_Tab_twice_to_insert_the_0_snippet" xml:space="preserve"> <value>Note: Tab twice to insert the '{0}' snippet.</value> </data> <data name="Implement_interface_explicitly_with_Dispose_pattern" xml:space="preserve"> <value>Implement interface explicitly with Dispose pattern</value> </data> <data name="Implement_interface_with_Dispose_pattern" xml:space="preserve"> <value>Implement interface with Dispose pattern</value> </data> <data name="Suppress_0" xml:space="preserve"> <value>Suppress {0}</value> </data> <data name="Re_triage_0_currently_1" xml:space="preserve"> <value>Re-triage {0}(currently '{1}')</value> </data> <data name="Argument_cannot_have_a_null_element" xml:space="preserve"> <value>Argument cannot have a null element.</value> </data> <data name="Argument_cannot_be_empty" xml:space="preserve"> <value>Argument cannot be empty.</value> </data> <data name="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer" xml:space="preserve"> <value>Reported diagnostic with ID '{0}' is not supported by the analyzer.</value> </data> <data name="Computing_fix_all_occurrences_code_fix" xml:space="preserve"> <value>Computing fix all occurrences code fix...</value> </data> <data name="Fix_all_occurrences" xml:space="preserve"> <value>Fix all occurrences</value> </data> <data name="Document" xml:space="preserve"> <value>Document</value> </data> <data name="Project" xml:space="preserve"> <value>Project</value> </data> <data name="Solution" xml:space="preserve"> <value>Solution</value> </data> <data name="TODO_colon_dispose_managed_state_managed_objects" xml:space="preserve"> <value>TODO: dispose managed state (managed objects)</value> </data> <data name="TODO_colon_set_large_fields_to_null" xml:space="preserve"> <value>TODO: set large fields to null</value> </data> <data name="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application" xml:space="preserve"> <value>Modifying {0} which contains a static variable requires restarting the application.</value> </data> <data name="Compiler2" xml:space="preserve"> <value>Compiler</value> </data> <data name="EditAndContinue" xml:space="preserve"> <value>Edit and Continue</value> </data> <data name="Live" xml:space="preserve"> <value>Live</value> </data> <data name="namespace_" xml:space="preserve"> <value>namespace</value> <comment>{Locked}</comment> </data> <data name="class_" xml:space="preserve"> <value>class</value> <comment>{Locked}</comment> </data> <data name="interface_" xml:space="preserve"> <value>interface</value> <comment>{Locked}</comment> </data> <data name="enum_" xml:space="preserve"> <value>enum</value> <comment>{Locked}</comment> </data> <data name="enum_value" xml:space="preserve"> <value>enum value</value> <comment>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</comment> </data> <data name="delegate_" xml:space="preserve"> <value>delegate</value> <comment>{Locked}</comment> </data> <data name="const_field" xml:space="preserve"> <value>const field</value> <comment>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</comment> </data> <data name="method" xml:space="preserve"> <value>method</value> </data> <data name="operator_" xml:space="preserve"> <value>operator</value> </data> <data name="constructor" xml:space="preserve"> <value>constructor</value> </data> <data name="static_constructor" xml:space="preserve"> <value>static constructor</value> </data> <data name="auto_property" xml:space="preserve"> <value>auto-property</value> </data> <data name="property_" xml:space="preserve"> <value>property</value> </data> <data name="event_" xml:space="preserve"> <value>event</value> <comment>{Locked}</comment> </data> <data name="event_accessor" xml:space="preserve"> <value>event accessor</value> </data> <data name="type_constraint" xml:space="preserve"> <value>type constraint</value> </data> <data name="type_parameter" xml:space="preserve"> <value>type parameter</value> </data> <data name="attribute" xml:space="preserve"> <value>attribute</value> </data> <data name="Replace_0_and_1_with_property" xml:space="preserve"> <value>Replace '{0}' and '{1}' with property</value> </data> <data name="Replace_0_with_property" xml:space="preserve"> <value>Replace '{0}' with property</value> </data> <data name="Method_referenced_implicitly" xml:space="preserve"> <value>Method referenced implicitly</value> </data> <data name="Generate_type_0" xml:space="preserve"> <value>Generate type '{0}'</value> </data> <data name="Generate_0_1" xml:space="preserve"> <value>Generate {0} '{1}'</value> </data> <data name="Change_0_to_1" xml:space="preserve"> <value>Change '{0}' to '{1}'.</value> </data> <data name="Non_invoked_method_cannot_be_replaced_with_property" xml:space="preserve"> <value>Non-invoked method cannot be replaced with property.</value> </data> <data name="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property" xml:space="preserve"> <value>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</value> </data> <data name="Roslyn_HostError" xml:space="preserve"> <value>Roslyn.HostError</value> </data> <data name="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2" xml:space="preserve"> <value>An instance of analyzer {0} cannot be created from {1}: {2}.</value> </data> <data name="The_assembly_0_does_not_contain_any_analyzers" xml:space="preserve"> <value>The assembly {0} does not contain any analyzers.</value> </data> <data name="Unable_to_load_Analyzer_assembly_0_colon_1" xml:space="preserve"> <value>Unable to load Analyzer assembly {0}: {1}</value> </data> <data name="Make_method_synchronous" xml:space="preserve"> <value>Make method synchronous</value> </data> <data name="from_0" xml:space="preserve"> <value>from {0}</value> </data> <data name="Find_and_install_latest_version" xml:space="preserve"> <value>Find and install latest version</value> </data> <data name="Use_local_version_0" xml:space="preserve"> <value>Use local version '{0}'</value> </data> <data name="Use_locally_installed_0_version_1_This_version_used_in_colon_2" xml:space="preserve"> <value>Use locally installed '{0}' version '{1}' This version used in: {2}</value> </data> <data name="Find_and_install_latest_version_of_0" xml:space="preserve"> <value>Find and install latest version of '{0}'</value> </data> <data name="Install_with_package_manager" xml:space="preserve"> <value>Install with package manager...</value> </data> <data name="Install_0_1" xml:space="preserve"> <value>Install '{0} {1}'</value> </data> <data name="Install_version_0" xml:space="preserve"> <value>Install version '{0}'</value> </data> <data name="Generate_variable_0" xml:space="preserve"> <value>Generate variable '{0}'</value> </data> <data name="Classes" xml:space="preserve"> <value>Classes</value> </data> <data name="Constants" xml:space="preserve"> <value>Constants</value> </data> <data name="Delegates" xml:space="preserve"> <value>Delegates</value> </data> <data name="Enums" xml:space="preserve"> <value>Enums</value> </data> <data name="Events" xml:space="preserve"> <value>Events</value> </data> <data name="Extension_methods" xml:space="preserve"> <value>Extension methods</value> </data> <data name="Fields" xml:space="preserve"> <value>Fields</value> </data> <data name="Interfaces" xml:space="preserve"> <value>Interfaces</value> </data> <data name="Locals" xml:space="preserve"> <value>Locals</value> </data> <data name="Methods" xml:space="preserve"> <value>Methods</value> </data> <data name="Modules" xml:space="preserve"> <value>Modules</value> </data> <data name="Namespaces" xml:space="preserve"> <value>Namespaces</value> </data> <data name="Properties" xml:space="preserve"> <value>Properties</value> </data> <data name="Structures" xml:space="preserve"> <value>Structures</value> </data> <data name="Parameters_colon" xml:space="preserve"> <value>Parameters:</value> </data> <data name="Variadic_SignatureHelpItem_must_have_at_least_one_parameter" xml:space="preserve"> <value>Variadic SignatureHelpItem must have at least one parameter.</value> </data> <data name="Replace_0_with_method" xml:space="preserve"> <value>Replace '{0}' with method</value> </data> <data name="Replace_0_with_methods" xml:space="preserve"> <value>Replace '{0}' with methods</value> </data> <data name="Property_referenced_implicitly" xml:space="preserve"> <value>Property referenced implicitly</value> </data> <data name="Property_cannot_safely_be_replaced_with_a_method_call" xml:space="preserve"> <value>Property cannot safely be replaced with a method call</value> </data> <data name="Convert_to_interpolated_string" xml:space="preserve"> <value>Convert to interpolated string</value> </data> <data name="Move_type_to_0" xml:space="preserve"> <value>Move type to {0}</value> </data> <data name="Rename_file_to_0" xml:space="preserve"> <value>Rename file to {0}</value> </data> <data name="Rename_type_to_0" xml:space="preserve"> <value>Rename type to {0}</value> </data> <data name="Remove_tag" xml:space="preserve"> <value>Remove tag</value> </data> <data name="Add_missing_param_nodes" xml:space="preserve"> <value>Add missing param nodes</value> </data> <data name="Asynchronously_waits_for_the_task_to_finish" xml:space="preserve"> <value>Asynchronously waits for the task to finish.</value> </data> <data name="Make_containing_scope_async" xml:space="preserve"> <value>Make containing scope async</value> </data> <data name="Make_containing_scope_async_return_Task" xml:space="preserve"> <value>Make containing scope async (return Task)</value> </data> <data name="paren_Unknown_paren" xml:space="preserve"> <value>(Unknown)</value> </data> <data name="Implement_abstract_class" xml:space="preserve"> <value>Implement abstract class</value> </data> <data name="Use_framework_type" xml:space="preserve"> <value>Use framework type</value> </data> <data name="Install_package_0" xml:space="preserve"> <value>Install package '{0}'</value> </data> <data name="project_0" xml:space="preserve"> <value>project {0}</value> </data> <data name="Use_interpolated_verbatim_string" xml:space="preserve"> <value>Use interpolated verbatim string</value> </data> <data name="Fix_typo_0" xml:space="preserve"> <value>Fix typo '{0}'</value> </data> <data name="Fully_qualify_0" xml:space="preserve"> <value>Fully qualify '{0}'</value> </data> <data name="Remove_reference_to_0" xml:space="preserve"> <value>Remove reference to '{0}'.</value> </data> <data name="Keywords" xml:space="preserve"> <value>Keywords</value> </data> <data name="Snippets" xml:space="preserve"> <value>Snippets</value> </data> <data name="All_lowercase" xml:space="preserve"> <value>All lowercase</value> </data> <data name="All_uppercase" xml:space="preserve"> <value>All uppercase</value> </data> <data name="First_word_capitalized" xml:space="preserve"> <value>First word capitalized</value> </data> <data name="Pascal_Case" xml:space="preserve"> <value>Pascal Case</value> </data> <data name="Remove_document_0" xml:space="preserve"> <value>Remove document '{0}'</value> </data> <data name="Add_document_0" xml:space="preserve"> <value>Add document '{0}'</value> </data> <data name="Add_argument_name_0" xml:space="preserve"> <value>Add argument name '{0}'</value> </data> <data name="Add_tuple_element_name_0" xml:space="preserve"> <value>Add tuple element name '{0}'</value> </data> <data name="Take_0" xml:space="preserve"> <value>Take '{0}'</value> </data> <data name="Take_both" xml:space="preserve"> <value>Take both</value> </data> <data name="Take_bottom" xml:space="preserve"> <value>Take bottom</value> </data> <data name="Take_top" xml:space="preserve"> <value>Take top</value> </data> <data name="Remove_unused_variable" xml:space="preserve"> <value>Remove unused variable</value> </data> <data name="Convert_to_binary" xml:space="preserve"> <value>Convert to binary</value> </data> <data name="Convert_to_decimal" xml:space="preserve"> <value>Convert to decimal</value> </data> <data name="Convert_to_hex" xml:space="preserve"> <value>Convert to hex</value> </data> <data name="Separate_thousands" xml:space="preserve"> <value>Separate thousands</value> </data> <data name="Separate_words" xml:space="preserve"> <value>Separate words</value> </data> <data name="Separate_nibbles" xml:space="preserve"> <value>Separate nibbles</value> </data> <data name="Remove_separators" xml:space="preserve"> <value>Remove separators</value> </data> <data name="Add_parameter_to_0" xml:space="preserve"> <value>Add parameter to '{0}'</value> </data> <data name="Add_parameter_to_0_and_overrides_implementations" xml:space="preserve"> <value>Add parameter to '{0}' (and overrides/implementations)</value> </data> <data name="Add_to_0" xml:space="preserve"> <value>Add to '{0}'</value> </data> <data name="Related_method_signatures_found_in_metadata_will_not_be_updated" xml:space="preserve"> <value>Related method signatures found in metadata will not be updated.</value> </data> <data name="Generate_constructor" xml:space="preserve"> <value>Generate constructor...</value> </data> <data name="Pick_members_to_be_used_as_constructor_parameters" xml:space="preserve"> <value>Pick members to be used as constructor parameters</value> </data> <data name="Pick_members_to_be_used_in_Equals_GetHashCode" xml:space="preserve"> <value>Pick members to be used in Equals/GetHashCode</value> </data> <data name="Generate_overrides" xml:space="preserve"> <value>Generate overrides...</value> </data> <data name="Pick_members_to_override" xml:space="preserve"> <value>Pick members to override</value> </data> <data name="Add_null_check" xml:space="preserve"> <value>Add null check</value> </data> <data name="Add_string_IsNullOrEmpty_check" xml:space="preserve"> <value>Add 'string.IsNullOrEmpty' check</value> </data> <data name="Add_string_IsNullOrWhiteSpace_check" xml:space="preserve"> <value>Add 'string.IsNullOrWhiteSpace' check</value> </data> <data name="Create_and_assign_field_0" xml:space="preserve"> <value>Create and assign field '{0}'</value> </data> <data name="Create_and_assign_property_0" xml:space="preserve"> <value>Create and assign property '{0}'</value> </data> <data name="Initialize_field_0" xml:space="preserve"> <value>Initialize field '{0}'</value> </data> <data name="Initialize_property_0" xml:space="preserve"> <value>Initialize property '{0}'</value> </data> <data name="Add_null_checks" xml:space="preserve"> <value>Add null checks</value> </data> <data name="Generate_operators" xml:space="preserve"> <value>Generate operators</value> </data> <data name="Implement_0" xml:space="preserve"> <value>Implement {0}</value> </data> <data name="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed" xml:space="preserve"> <value>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</value> </data> <data name="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file" xml:space="preserve"> <value>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</value> </data> <data name="in_0_project_1" xml:space="preserve"> <value>in {0} (project {1})</value> </data> <data name="Add_accessibility_modifiers" xml:space="preserve"> <value>Add accessibility modifiers</value> </data> <data name="Move_declaration_near_reference" xml:space="preserve"> <value>Move declaration near reference</value> </data> <data name="Convert_to_full_property" xml:space="preserve"> <value>Convert to full property</value> </data> <data name="Warning_Method_overrides_symbol_from_metadata" xml:space="preserve"> <value>Warning: Method overrides symbol from metadata</value> </data> <data name="Use_0" xml:space="preserve"> <value>Use {0}</value> </data> <data name="Switching_between_lambda_and_local_function_requires_restarting_the_application" xml:space="preserve"> <value>Switching between a lambda and a local function requires restarting the application.</value> </data> <data name="Add_argument_name_0_including_trailing_arguments" xml:space="preserve"> <value>Add argument name '{0}' (including trailing arguments)</value> </data> <data name="local_function" xml:space="preserve"> <value>local function</value> </data> <data name="indexer_" xml:space="preserve"> <value>indexer</value> </data> <data name="Alias_ambiguous_type_0" xml:space="preserve"> <value>Alias ambiguous type '{0}'</value> </data> <data name="Warning_colon_Collection_was_modified_during_iteration" xml:space="preserve"> <value>Warning: Collection was modified during iteration.</value> </data> <data name="Warning_colon_Iteration_variable_crossed_function_boundary" xml:space="preserve"> <value>Warning: Iteration variable crossed function boundary.</value> </data> <data name="Warning_colon_Collection_may_be_modified_during_iteration" xml:space="preserve"> <value>Warning: Collection may be modified during iteration.</value> </data> <data name="Convert_to_linq" xml:space="preserve"> <value>Convert to LINQ</value> </data> <data name="Convert_to_class" xml:space="preserve"> <value>Convert to class</value> </data> <data name="Convert_to_struct" xml:space="preserve"> <value>Convert to struct</value> </data> <data name="updating_usages_in_containing_member" xml:space="preserve"> <value>updating usages in containing member</value> </data> <data name="updating_usages_in_containing_project" xml:space="preserve"> <value>updating usages in containing project</value> </data> <data name="updating_usages_in_containing_type" xml:space="preserve"> <value>updating usages in containing type</value> </data> <data name="updating_usages_in_dependent_projects" xml:space="preserve"> <value>updating usages in dependent projects</value> </data> <data name="Formatting_document" xml:space="preserve"> <value>Formatting document</value> </data> <data name="Add_member_name" xml:space="preserve"> <value>Add member name</value> </data> <data name="Use_block_body_for_lambda_expressions" xml:space="preserve"> <value>Use block body for lambda expressions</value> </data> <data name="Use_expression_body_for_lambda_expressions" xml:space="preserve"> <value>Use expression body for lambda expressions</value> </data> <data name="Convert_to_linq_call_form" xml:space="preserve"> <value>Convert to LINQ (call form)</value> </data> <data name="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application" xml:space="preserve"> <value>Adding a method with an explicit interface specifier requires restarting the application.</value> </data> <data name="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1" xml:space="preserve"> <value>Modifying source file '{0}' requires restarting the application due to internal error: {1}</value> <comment>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</comment> </data> <data name="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big" xml:space="preserve"> <value>Modifying source file '{0}' requires restarting the application because the file is too big.</value> </data> <data name="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1" xml:space="preserve"> <value>Modifying the body of {0} requires restarting the application due to internal error: {1}</value> <comment>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</comment> </data> <data name="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements" xml:space="preserve"> <value>Modifying the body of {0} requires restarting the application because the body has too many statements.</value> </data> <data name="Change_namespace_to_0" xml:space="preserve"> <value>Change namespace to '{0}'</value> </data> <data name="Move_file_to_0" xml:space="preserve"> <value>Move file to '{0}'</value> </data> <data name="Move_file_to_project_root_folder" xml:space="preserve"> <value>Move file to project root folder</value> </data> <data name="Move_to_namespace" xml:space="preserve"> <value>Move to namespace...</value> </data> <data name="Change_to_global_namespace" xml:space="preserve"> <value>Change to global namespace</value> </data> <data name="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning" xml:space="preserve"> <value>Warning: Changing namespace may produce invalid code and change code meaning.</value> </data> <data name="Invert_conditional" xml:space="preserve"> <value>Invert conditional</value> </data> <data name="Replace_0_with_1" xml:space="preserve"> <value>Replace '{0}' with '{1}' </value> </data> <data name="Align_wrapped_parameters" xml:space="preserve"> <value>Align wrapped parameters</value> </data> <data name="Indent_all_parameters" xml:space="preserve"> <value>Indent all parameters</value> </data> <data name="Indent_wrapped_parameters" xml:space="preserve"> <value>Indent wrapped parameters</value> </data> <data name="Unwrap_all_parameters" xml:space="preserve"> <value>Unwrap all parameters</value> </data> <data name="Unwrap_and_indent_all_parameters" xml:space="preserve"> <value>Unwrap and indent all parameters</value> </data> <data name="Wrap_every_parameter" xml:space="preserve"> <value>Wrap every parameter</value> </data> <data name="Wrap_long_parameter_list" xml:space="preserve"> <value>Wrap long parameter list</value> </data> <data name="Unwrap_parameter_list" xml:space="preserve"> <value>Unwrap parameter list</value> </data> <data name="Align_wrapped_arguments" xml:space="preserve"> <value>Align wrapped arguments</value> </data> <data name="Indent_all_arguments" xml:space="preserve"> <value>Indent all arguments</value> </data> <data name="Indent_wrapped_arguments" xml:space="preserve"> <value>Indent wrapped arguments</value> </data> <data name="Unwrap_all_arguments" xml:space="preserve"> <value>Unwrap all arguments</value> </data> <data name="Unwrap_and_indent_all_arguments" xml:space="preserve"> <value>Unwrap and indent all arguments</value> </data> <data name="Wrap_every_argument" xml:space="preserve"> <value>Wrap every argument</value> </data> <data name="Wrap_long_argument_list" xml:space="preserve"> <value>Wrap long argument list</value> </data> <data name="Unwrap_argument_list" xml:space="preserve"> <value>Unwrap argument list</value> </data> <data name="Introduce_constant" xml:space="preserve"> <value>Introduce constant</value> </data> <data name="Introduce_field" xml:space="preserve"> <value>Introduce field</value> </data> <data name="Introduce_local" xml:space="preserve"> <value>Introduce local</value> </data> <data name="Introduce_query_variable" xml:space="preserve"> <value>Introduce query variable</value> </data> <data name="Failed_to_analyze_data_flow_for_0" xml:space="preserve"> <value>Failed to analyze data-flow for: {0}</value> </data> <data name="Fix_formatting" xml:space="preserve"> <value>Fix formatting</value> </data> <data name="Split_into_nested_0_statements" xml:space="preserve"> <value>Split into nested '{0}' statements</value> </data> <data name="Merge_with_outer_0_statement" xml:space="preserve"> <value>Merge with outer '{0}' statement</value> </data> <data name="Split_into_consecutive_0_statements" xml:space="preserve"> <value>Split into consecutive '{0}' statements</value> </data> <data name="Merge_with_previous_0_statement" xml:space="preserve"> <value>Merge with previous '{0}' statement</value> </data> <data name="Unwrap_expression" xml:space="preserve"> <value>Unwrap expression</value> </data> <data name="Wrap_expression" xml:space="preserve"> <value>Wrap expression</value> </data> <data name="Wrapping" xml:space="preserve"> <value>Wrapping</value> </data> <data name="Merge_with_nested_0_statement" xml:space="preserve"> <value>Merge with nested '{0}' statement</value> </data> <data name="Merge_with_next_0_statement" xml:space="preserve"> <value>Merge with next '{0}' statement</value> </data> <data name="Pull_0_up" xml:space="preserve"> <value>Pull '{0}' up</value> </data> <data name="Pull_members_up_to_base_type" xml:space="preserve"> <value>Pull members up to base type...</value> </data> <data name="Unwrap_call_chain" xml:space="preserve"> <value>Unwrap call chain</value> </data> <data name="Wrap_call_chain" xml:space="preserve"> <value>Wrap call chain</value> </data> <data name="Wrap_long_call_chain" xml:space="preserve"> <value>Wrap long call chain</value> </data> <data name="Pull_0_up_to_1" xml:space="preserve"> <value>Pull '{0}' up to '{1}'</value> </data> <data name="Wrap_and_align_expression" xml:space="preserve"> <value>Wrap and align expression</value> </data> <data name="Move_contents_to_namespace" xml:space="preserve"> <value>Move contents to namespace...</value> </data> <data name="Add_optional_parameter_to_constructor" xml:space="preserve"> <value>Add optional parameter to constructor</value> </data> <data name="Add_parameter_to_constructor" xml:space="preserve"> <value>Add parameter to constructor</value> </data> <data name="Target_type_matches" xml:space="preserve"> <value>Target type matches</value> </data> <data name="Generate_parameter_0" xml:space="preserve"> <value>Generate parameter '{0}'</value> </data> <data name="Generate_parameter_0_and_overrides_implementations" xml:space="preserve"> <value>Generate parameter '{0}' (and overrides/implementations)</value> </data> <data name="in_Source_attribute" xml:space="preserve"> <value>in Source (attribute)</value> </data> <data name="StreamMustSupportReadAndSeek" xml:space="preserve"> <value>Stream must support read and seek operations.</value> </data> <data name="MethodMustReturnStreamThatSupportsReadAndSeek" xml:space="preserve"> <value>{0} must return a stream that supports read and seek operations.</value> </data> <data name="RudeEdit" xml:space="preserve"> <value>Rude edit</value> </data> <data name="EditAndContinueDisallowedByModule" xml:space="preserve"> <value>Edit and Continue disallowed by module</value> </data> <data name="CannotApplyChangesUnexpectedError" xml:space="preserve"> <value>Cannot apply changes -- unexpected error: '{0}'</value> </data> <data name="ErrorReadingFile" xml:space="preserve"> <value>Error while reading file '{0}': {1}</value> </data> <data name="EditAndContinueDisallowedByProject" xml:space="preserve"> <value>Changes made in project '{0}' require restarting the application: {1}</value> </data> <data name="ChangesNotAppliedWhileRunning" xml:space="preserve"> <value>Changes made in project '{0}' will not be applied while the application is running</value> </data> <data name="DocumentIsOutOfSyncWithDebuggee" xml:space="preserve"> <value>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</value> </data> <data name="UnableToReadSourceFileOrPdb" xml:space="preserve"> <value>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</value> </data> <data name="ChangesDisallowedWhileStoppedAtException" xml:space="preserve"> <value>Changes are not allowed while stopped at exception</value> </data> <data name="Wrap_and_align_call_chain" xml:space="preserve"> <value>Wrap and align call chain</value> </data> <data name="Wrap_and_align_long_call_chain" xml:space="preserve"> <value>Wrap and align long call chain</value> </data> <data name="Warning_colon_semantics_may_change_when_converting_statement" xml:space="preserve"> <value>Warning: Semantics may change when converting statement.</value> </data> <data name="Add_null_checks_for_all_parameters" xml:space="preserve"> <value>Add null checks for all parameters</value> </data> <data name="Implement_0_implicitly" xml:space="preserve"> <value>Implement '{0}' implicitly</value> </data> <data name="Implement_all_interfaces_implicitly" xml:space="preserve"> <value>Implement all interfaces implicitly</value> </data> <data name="Implement_implicitly" xml:space="preserve"> <value>Implement implicitly</value> </data> <data name="Implement_0_explicitly" xml:space="preserve"> <value>Implement '{0}' explicitly</value> </data> <data name="Make_member_static" xml:space="preserve"> <value>Make static</value> </data> <data name="ChangeSignature_NewParameterIntroduceTODOVariable" xml:space="preserve"> <value>TODO</value> <comment>"TODO" is an indication that there is work still to be done.</comment> </data> <data name="ChangeSignature_NewParameterOmitValue" xml:space="preserve"> <value>&lt;omit&gt;</value> </data> <data name="Value_colon" xml:space="preserve"> <value>Value:</value> </data> <data name="Implement_through_0" xml:space="preserve"> <value>Implement through '{0}'</value> </data> <data name="Implement_all_interfaces_explicitly" xml:space="preserve"> <value>Implement all interfaces explicitly</value> </data> <data name="Implement_explicitly" xml:space="preserve"> <value>Implement explicitly</value> </data> <data name="Resolve_conflict_markers" xml:space="preserve"> <value>Resolve conflict markers</value> </data> <data name="Base_classes_contain_inaccessible_unimplemented_members" xml:space="preserve"> <value>Base classes contain inaccessible unimplemented members</value> </data> <data name="Add_DebuggerDisplay_attribute" xml:space="preserve"> <value>Add 'DebuggerDisplay' attribute</value> <comment>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</comment> </data> <data name="Do_not_change_this_code_Put_cleanup_code_in_0_method" xml:space="preserve"> <value>Do not change this code. Put cleanup code in '{0}' method</value> </data> <data name="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer" xml:space="preserve"> <value>TODO: free unmanaged resources (unmanaged objects) and override finalizer</value> </data> <data name="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources" xml:space="preserve"> <value>TODO: override finalizer only if '{0}' has code to free unmanaged resources</value> </data> <data name="AM_PM_abbreviated" xml:space="preserve"> <value>AM/PM (abbreviated)</value> </data> <data name="AM_PM_abbreviated_description" xml:space="preserve"> <value>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</value> </data> <data name="AM_PM_full" xml:space="preserve"> <value>AM/PM (full)</value> </data> <data name="AM_PM_full_description" xml:space="preserve"> <value>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</value> </data> <data name="date_separator" xml:space="preserve"> <value>date separator</value> </data> <data name="date_separator_description" xml:space="preserve"> <value>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</value> </data> <data name="day_of_the_month_1_2_digits" xml:space="preserve"> <value>day of the month (1-2 digits)</value> </data> <data name="day_of_the_month_1_2_digits_description" xml:space="preserve"> <value>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</value> </data> <data name="day_of_the_month_2_digits" xml:space="preserve"> <value>day of the month (2 digits)</value> </data> <data name="day_of_the_month_2_digits_description" xml:space="preserve"> <value>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</value> </data> <data name="day_of_the_week_abbreviated" xml:space="preserve"> <value>day of the week (abbreviated)</value> </data> <data name="day_of_the_week_abbreviated_description" xml:space="preserve"> <value>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</value> </data> <data name="day_of_the_week_full" xml:space="preserve"> <value>day of the week (full)</value> </data> <data name="day_of_the_week_full_description" xml:space="preserve"> <value>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</value> </data> <data name="full_long_date_time" xml:space="preserve"> <value>full long date/time</value> </data> <data name="full_long_date_time_description" xml:space="preserve"> <value>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</value> </data> <data name="full_short_date_time" xml:space="preserve"> <value>full short date/time</value> </data> <data name="full_short_date_time_description" xml:space="preserve"> <value>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</value> </data> <data name="general_long_date_time" xml:space="preserve"> <value>general long date/time</value> </data> <data name="general_long_date_time_description" xml:space="preserve"> <value>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</value> </data> <data name="general_short_date_time" xml:space="preserve"> <value>general short date/time</value> </data> <data name="general_short_date_time_description" xml:space="preserve"> <value>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</value> </data> <data name="long_date" xml:space="preserve"> <value>long date</value> </data> <data name="long_date_description" xml:space="preserve"> <value>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</value> </data> <data name="long_time" xml:space="preserve"> <value>long time</value> </data> <data name="long_time_description" xml:space="preserve"> <value>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</value> </data> <data name="minute_1_2_digits" xml:space="preserve"> <value>minute (1-2 digits)</value> </data> <data name="minute_1_2_digits_description" xml:space="preserve"> <value>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</value> </data> <data name="minute_2_digits" xml:space="preserve"> <value>minute (2 digits)</value> </data> <data name="minute_2_digits_description" xml:space="preserve"> <value>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</value> </data> <data name="month_1_2_digits" xml:space="preserve"> <value>month (1-2 digits)</value> </data> <data name="month_1_2_digits_description" xml:space="preserve"> <value>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</value> </data> <data name="month_2_digits" xml:space="preserve"> <value>month (2 digits)</value> </data> <data name="month_2_digits_description" xml:space="preserve"> <value>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</value> </data> <data name="month_abbreviated" xml:space="preserve"> <value>month (abbreviated)</value> </data> <data name="month_abbreviated_description" xml:space="preserve"> <value>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</value> </data> <data name="month_day" xml:space="preserve"> <value>month day</value> </data> <data name="month_day_description" xml:space="preserve"> <value>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</value> </data> <data name="month_full" xml:space="preserve"> <value>month (full)</value> </data> <data name="month_full_description" xml:space="preserve"> <value>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</value> </data> <data name="period_era" xml:space="preserve"> <value>period/era</value> </data> <data name="period_era_description" xml:space="preserve"> <value>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</value> </data> <data name="rfc1123_date_time" xml:space="preserve"> <value>rfc1123 date/time</value> </data> <data name="rfc1123_date_time_description" xml:space="preserve"> <value>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</value> </data> <data name="round_trip_date_time" xml:space="preserve"> <value>round-trip date/time</value> </data> <data name="round_trip_date_time_description" xml:space="preserve"> <value>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</value> </data> <data name="second_1_2_digits" xml:space="preserve"> <value>second (1-2 digits)</value> </data> <data name="second_1_2_digits_description" xml:space="preserve"> <value>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</value> </data> <data name="second_2_digits" xml:space="preserve"> <value>second (2 digits)</value> </data> <data name="second_2_digits_description" xml:space="preserve"> <value>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</value> </data> <data name="short_date" xml:space="preserve"> <value>short date</value> </data> <data name="short_date_description" xml:space="preserve"> <value>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</value> </data> <data name="short_time" xml:space="preserve"> <value>short time</value> </data> <data name="short_time_description" xml:space="preserve"> <value>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</value> </data> <data name="sortable_date_time" xml:space="preserve"> <value>sortable date/time</value> </data> <data name="sortable_date_time_description" xml:space="preserve"> <value>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</value> </data> <data name="time_separator" xml:space="preserve"> <value>time separator</value> </data> <data name="time_separator_description" xml:space="preserve"> <value>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</value> </data> <data name="time_zone" xml:space="preserve"> <value>time zone</value> </data> <data name="time_zone_description" xml:space="preserve"> <value>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</value> </data> <data name="universal_full_date_time" xml:space="preserve"> <value>universal full date/time</value> </data> <data name="universal_full_date_time_description" xml:space="preserve"> <value>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</value> </data> <data name="universal_sortable_date_time" xml:space="preserve"> <value>universal sortable date/time</value> </data> <data name="universal_sortable_date_time_description" xml:space="preserve"> <value>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</value> </data> <data name="utc_hour_and_minute_offset" xml:space="preserve"> <value>utc hour and minute offset</value> </data> <data name="utc_hour_and_minute_offset_description" xml:space="preserve"> <value>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</value> </data> <data name="utc_hour_offset_1_2_digits" xml:space="preserve"> <value>utc hour offset (1-2 digits)</value> </data> <data name="utc_hour_offset_1_2_digits_description" xml:space="preserve"> <value>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</value> </data> <data name="utc_hour_offset_2_digits" xml:space="preserve"> <value>utc hour offset (2 digits)</value> </data> <data name="utc_hour_offset_2_digits_description" xml:space="preserve"> <value>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</value> </data> <data name="year_1_2_digits" xml:space="preserve"> <value>year (1-2 digits)</value> </data> <data name="year_1_2_digits_description" xml:space="preserve"> <value>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</value> </data> <data name="year_2_digits" xml:space="preserve"> <value>year (2 digits)</value> </data> <data name="year_2_digits_description" xml:space="preserve"> <value>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</value> </data> <data name="year_3_4_digits" xml:space="preserve"> <value>year (3-4 digits)</value> </data> <data name="year_3_4_digits_description" xml:space="preserve"> <value>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</value> </data> <data name="year_4_digits" xml:space="preserve"> <value>year (4 digits)</value> </data> <data name="year_4_digits_description" xml:space="preserve"> <value>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</value> </data> <data name="year_5_digits" xml:space="preserve"> <value>year (5 digits)</value> </data> <data name="year_5_digits_description" xml:space="preserve"> <value>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</value> </data> <data name="year_month" xml:space="preserve"> <value>year month</value> </data> <data name="year_month_description" xml:space="preserve"> <value>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</value> </data> <data name="_10000000ths_of_a_second" xml:space="preserve"> <value>10,000,000ths of a second</value> </data> <data name="_10000000ths_of_a_second_description" xml:space="preserve"> <value>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_10000000ths_of_a_second_non_zero" xml:space="preserve"> <value>10,000,000ths of a second (non-zero)</value> </data> <data name="_10000000ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_1000000ths_of_a_second" xml:space="preserve"> <value>1,000,000ths of a second</value> </data> <data name="_1000000ths_of_a_second_description" xml:space="preserve"> <value>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_1000000ths_of_a_second_non_zero" xml:space="preserve"> <value>1,000,000ths of a second (non-zero)</value> </data> <data name="_1000000ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_100000ths_of_a_second" xml:space="preserve"> <value>100,000ths of a second</value> </data> <data name="_100000ths_of_a_second_description" xml:space="preserve"> <value>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_100000ths_of_a_second_non_zero" xml:space="preserve"> <value>100,000ths of a second (non-zero)</value> </data> <data name="_100000ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_10000ths_of_a_second" xml:space="preserve"> <value>10,000ths of a second</value> </data> <data name="_10000ths_of_a_second_description" xml:space="preserve"> <value>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_10000ths_of_a_second_non_zero" xml:space="preserve"> <value>10,000ths of a second (non-zero)</value> </data> <data name="_10000ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_1000ths_of_a_second" xml:space="preserve"> <value>1,000ths of a second</value> </data> <data name="_1000ths_of_a_second_description" xml:space="preserve"> <value>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</value> </data> <data name="_1000ths_of_a_second_non_zero" xml:space="preserve"> <value>1,000ths of a second (non-zero)</value> </data> <data name="_1000ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</value> </data> <data name="_100ths_of_a_second" xml:space="preserve"> <value>100ths of a second</value> </data> <data name="_100ths_of_a_second_description" xml:space="preserve"> <value>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</value> </data> <data name="_100ths_of_a_second_non_zero" xml:space="preserve"> <value>100ths of a second (non-zero)</value> </data> <data name="_100ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</value> </data> <data name="_10ths_of_a_second" xml:space="preserve"> <value>10ths of a second</value> </data> <data name="_10ths_of_a_second_description" xml:space="preserve"> <value>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</value> <comment>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</comment> </data> <data name="_10ths_of_a_second_non_zero" xml:space="preserve"> <value>10ths of a second (non-zero)</value> </data> <data name="_10ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</value> </data> <data name="_12_hour_clock_1_2_digits" xml:space="preserve"> <value>12 hour clock (1-2 digits)</value> </data> <data name="_12_hour_clock_1_2_digits_description" xml:space="preserve"> <value>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</value> </data> <data name="_12_hour_clock_2_digits" xml:space="preserve"> <value>12 hour clock (2 digits)</value> </data> <data name="_12_hour_clock_2_digits_description" xml:space="preserve"> <value>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</value> </data> <data name="_24_hour_clock_1_2_digits" xml:space="preserve"> <value>24 hour clock (1-2 digits)</value> </data> <data name="_24_hour_clock_1_2_digits_description" xml:space="preserve"> <value>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</value> </data> <data name="_24_hour_clock_2_digits" xml:space="preserve"> <value>24 hour clock (2 digits)</value> </data> <data name="_24_hour_clock_2_digits_description" xml:space="preserve"> <value>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</value> </data> <data name="Implement_remaining_members_explicitly" xml:space="preserve"> <value>Implement remaining members explicitly</value> </data> <data name="Generate_for_0" xml:space="preserve"> <value>Generate for '{0}'</value> </data> <data name="Generate_comparison_operators" xml:space="preserve"> <value>Generate comparison operators</value> </data> <data name="Create_and_assign_remaining_as_fields" xml:space="preserve"> <value>Create and assign remaining as fields</value> </data> <data name="Create_and_assign_remaining_as_properties" xml:space="preserve"> <value>Create and assign remaining as properties</value> </data> <data name="Add_explicit_cast" xml:space="preserve"> <value>Add explicit cast</value> </data> <data name="Example" xml:space="preserve"> <value>Example:</value> <comment>Singular form when we want to show an example, but only have one to show.</comment> </data> <data name="Examples" xml:space="preserve"> <value>Examples:</value> <comment>Plural form when we have multiple examples to show.</comment> </data> <data name="Alternation_conditions_cannot_be_comments" xml:space="preserve"> <value>Alternation conditions cannot be comments</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</comment> </data> <data name="Alternation_conditions_do_not_capture_and_cannot_be_named" xml:space="preserve"> <value>Alternation conditions do not capture and cannot be named</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</comment> </data> <data name="A_subtraction_must_be_the_last_element_in_a_character_class" xml:space="preserve"> <value>A subtraction must be the last element in a character class</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</comment> </data> <data name="Cannot_include_class_0_in_character_range" xml:space="preserve"> <value>Cannot include class \{0} in character range</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</comment> </data> <data name="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue" xml:space="preserve"> <value>Capture group numbers must be less than or equal to Int32.MaxValue</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</comment> </data> <data name="Capture_number_cannot_be_zero" xml:space="preserve"> <value>Capture number cannot be zero</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</comment> </data> <data name="Illegal_backslash_at_end_of_pattern" xml:space="preserve"> <value>Illegal \ at end of pattern</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</comment> </data> <data name="Illegal_x_y_with_x_less_than_y" xml:space="preserve"> <value>Illegal {x,y} with x &gt; y</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</comment> </data> <data name="Incomplete_character_escape" xml:space="preserve"> <value>Incomplete \p{X} character escape</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</comment> </data> <data name="Insufficient_hexadecimal_digits" xml:space="preserve"> <value>Insufficient hexadecimal digits</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</comment> </data> <data name="Invalid_group_name_Group_names_must_begin_with_a_word_character" xml:space="preserve"> <value>Invalid group name: Group names must begin with a word character</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</comment> </data> <data name="Malformed" xml:space="preserve"> <value>malformed</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</comment> </data> <data name="Malformed_character_escape" xml:space="preserve"> <value>Malformed \p{X} character escape</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</comment> </data> <data name="Malformed_named_back_reference" xml:space="preserve"> <value>Malformed \k&lt;...&gt; named back reference</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</comment> </data> <data name="Missing_control_character" xml:space="preserve"> <value>Missing control character</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</comment> </data> <data name="Nested_quantifier_0" xml:space="preserve"> <value>Nested quantifier {0}</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</comment> </data> <data name="Not_enough_close_parens" xml:space="preserve"> <value>Not enough )'s</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</comment> </data> <data name="Quantifier_x_y_following_nothing" xml:space="preserve"> <value>Quantifier {x,y} following nothing</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</comment> </data> <data name="Reference_to_undefined_group" xml:space="preserve"> <value>reference to undefined group</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</comment> </data> <data name="Reference_to_undefined_group_name_0" xml:space="preserve"> <value>Reference to undefined group name {0}</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</comment> </data> <data name="Reference_to_undefined_group_number_0" xml:space="preserve"> <value>Reference to undefined group number {0}</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</comment> </data> <data name="Too_many_bars_in_conditional_grouping" xml:space="preserve"> <value>Too many | in (?()|)</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</comment> </data> <data name="Too_many_close_parens" xml:space="preserve"> <value>Too many )'s</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</comment> </data> <data name="Unknown_property" xml:space="preserve"> <value>Unknown property</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</comment> </data> <data name="Unknown_property_0" xml:space="preserve"> <value>Unknown property '{0}'</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</comment> </data> <data name="Unrecognized_control_character" xml:space="preserve"> <value>Unrecognized control character</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</comment> </data> <data name="Unrecognized_escape_sequence_0" xml:space="preserve"> <value>Unrecognized escape sequence \{0}</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</comment> </data> <data name="Unrecognized_grouping_construct" xml:space="preserve"> <value>Unrecognized grouping construct</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</comment> </data> <data name="Unterminated_character_class_set" xml:space="preserve"> <value>Unterminated [] set</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</comment> </data> <data name="Unterminated_regex_comment" xml:space="preserve"> <value>Unterminated (?#...) comment</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</comment> </data> <data name="x_y_range_in_reverse_order" xml:space="preserve"> <value>[x-y] range in reverse order</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</comment> </data> <data name="Regex_issue_0" xml:space="preserve"> <value>Regex issue: {0}</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</comment> </data> <data name="Regex_number_decimal_digit" xml:space="preserve"> <value>number, decimal digit</value> </data> <data name="Regex_number_letter" xml:space="preserve"> <value>number, letter</value> </data> <data name="Regex_number_other" xml:space="preserve"> <value>number, other</value> </data> <data name="Regex_other_control" xml:space="preserve"> <value>other, control</value> </data> <data name="Regex_other_format" xml:space="preserve"> <value>other, format</value> </data> <data name="Regex_other_not_assigned" xml:space="preserve"> <value>other, not assigned</value> </data> <data name="Regex_other_private_use" xml:space="preserve"> <value>other, private use</value> </data> <data name="Regex_other_surrogate" xml:space="preserve"> <value>other, surrogate</value> </data> <data name="Regex_punctuation_close" xml:space="preserve"> <value>punctuation, close</value> </data> <data name="Regex_punctuation_connector" xml:space="preserve"> <value>punctuation, connector</value> </data> <data name="Regex_punctuation_dash" xml:space="preserve"> <value>punctuation, dash</value> </data> <data name="Regex_punctuation_final_quote" xml:space="preserve"> <value>punctuation, final quote</value> </data> <data name="Regex_punctuation_initial_quote" xml:space="preserve"> <value>punctuation, initial quote</value> </data> <data name="Regex_punctuation_open" xml:space="preserve"> <value>punctuation, open</value> </data> <data name="Regex_punctuation_other" xml:space="preserve"> <value>punctuation, other</value> </data> <data name="Regex_separator_line" xml:space="preserve"> <value>separator, line</value> </data> <data name="Regex_separator_paragraph" xml:space="preserve"> <value>separator, paragraph</value> </data> <data name="Regex_separator_space" xml:space="preserve"> <value>separator, space</value> </data> <data name="Regex_symbol_currency" xml:space="preserve"> <value>symbol, currency</value> </data> <data name="Regex_symbol_math" xml:space="preserve"> <value>symbol, math</value> </data> <data name="Regex_symbol_modifier" xml:space="preserve"> <value>symbol, modifier</value> </data> <data name="Regex_symbol_other" xml:space="preserve"> <value>symbol, other</value> </data> <data name="Regex_letter_lowercase" xml:space="preserve"> <value>letter, lowercase</value> </data> <data name="Regex_letter_modifier" xml:space="preserve"> <value>letter, modifier</value> </data> <data name="Regex_letter_other" xml:space="preserve"> <value>letter, other</value> </data> <data name="Regex_letter_titlecase" xml:space="preserve"> <value>letter, titlecase</value> </data> <data name="Regex_mark_enclosing" xml:space="preserve"> <value>mark, enclosing</value> </data> <data name="Regex_mark_nonspacing" xml:space="preserve"> <value>mark, nonspacing</value> </data> <data name="Regex_mark_spacing_combining" xml:space="preserve"> <value>mark, spacing combining</value> </data> <data name="Regex_contiguous_matches_long" xml:space="preserve"> <value>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</value> </data> <data name="Regex_contiguous_matches_short" xml:space="preserve"> <value>contiguous matches</value> </data> <data name="Regex_end_of_string_only_long" xml:space="preserve"> <value>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</value> </data> <data name="Regex_end_of_string_only_short" xml:space="preserve"> <value>end of string only</value> </data> <data name="Regex_end_of_string_or_before_ending_newline_long" xml:space="preserve"> <value>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</value> </data> <data name="Regex_end_of_string_or_before_ending_newline_short" xml:space="preserve"> <value>end of string or before ending newline</value> </data> <data name="Regex_non_word_boundary_long" xml:space="preserve"> <value>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</value> </data> <data name="Regex_non_word_boundary_short" xml:space="preserve"> <value>non-word boundary</value> </data> <data name="Regex_start_of_string_only_long" xml:space="preserve"> <value>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</value> </data> <data name="Regex_start_of_string_only_short" xml:space="preserve"> <value>start of string only</value> </data> <data name="Regex_word_boundary_long" xml:space="preserve"> <value>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</value> </data> <data name="Regex_word_boundary_short" xml:space="preserve"> <value>word boundary</value> </data> <data name="Regex_start_of_string_or_line_long" xml:space="preserve"> <value>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</value> </data> <data name="Regex_start_of_string_or_line_short" xml:space="preserve"> <value>start of string or line</value> </data> <data name="Regex_end_of_string_or_line_long" xml:space="preserve"> <value>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</value> </data> <data name="Regex_end_of_string_or_line_short" xml:space="preserve"> <value>end of string or line</value> </data> <data name="Regex_any_character_group_long" xml:space="preserve"> <value>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</value> </data> <data name="Regex_any_character_group_short" xml:space="preserve"> <value>any character</value> </data> <data name="Regex_backspace_character_long" xml:space="preserve"> <value>Matches a backspace character, \u0008</value> </data> <data name="Regex_backspace_character_short" xml:space="preserve"> <value>backspace character</value> </data> <data name="Regex_bell_character_long" xml:space="preserve"> <value>Matches a bell (alarm) character, \u0007</value> </data> <data name="Regex_bell_character_short" xml:space="preserve"> <value>bell character</value> </data> <data name="Regex_carriage_return_character_long" xml:space="preserve"> <value>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</value> </data> <data name="Regex_carriage_return_character_short" xml:space="preserve"> <value>carriage-return character</value> </data> <data name="Regex_control_character_long" xml:space="preserve"> <value>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</value> </data> <data name="Regex_control_character_short" xml:space="preserve"> <value>control character</value> </data> <data name="Regex_decimal_digit_character_long" xml:space="preserve"> <value>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</value> </data> <data name="Regex_decimal_digit_character_short" xml:space="preserve"> <value>decimal-digit character</value> </data> <data name="Regex_escape_character_long" xml:space="preserve"> <value>Matches an escape character, \u001B</value> </data> <data name="Regex_escape_character_short" xml:space="preserve"> <value>escape character</value> </data> <data name="Regex_form_feed_character_long" xml:space="preserve"> <value>Matches a form-feed character, \u000C</value> </data> <data name="Regex_form_feed_character_short" xml:space="preserve"> <value>form-feed character</value> </data> <data name="Regex_hexadecimal_escape_long" xml:space="preserve"> <value>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</value> </data> <data name="Regex_hexadecimal_escape_short" xml:space="preserve"> <value>hexadecimal escape</value> </data> <data name="Regex_letter_uppercase" xml:space="preserve"> <value>letter, uppercase</value> </data> <data name="Regex_matched_subexpression_long" xml:space="preserve"> <value>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</value> </data> <data name="Regex_matched_subexpression_short" xml:space="preserve"> <value>matched subexpression</value> </data> <data name="Regex_negative_character_group_long" xml:space="preserve"> <value>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</value> </data> <data name="Regex_negative_character_group_short" xml:space="preserve"> <value>negative character group</value> </data> <data name="Regex_negative_character_range_long" xml:space="preserve"> <value>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</value> </data> <data name="Regex_negative_character_range_short" xml:space="preserve"> <value>negative character range</value> </data> <data name="Regex_negative_unicode_category_long" xml:space="preserve"> <value>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</value> </data> <data name="Regex_negative_unicode_category_short" xml:space="preserve"> <value>negative unicode category</value> </data> <data name="Regex_new_line_character_long" xml:space="preserve"> <value>Matches a new-line character, \u000A</value> </data> <data name="Regex_new_line_character_short" xml:space="preserve"> <value>new-line character</value> </data> <data name="Regex_non_digit_character_long" xml:space="preserve"> <value>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</value> </data> <data name="Regex_non_digit_character_short" xml:space="preserve"> <value>non-digit character</value> </data> <data name="Regex_non_white_space_character_long" xml:space="preserve"> <value>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</value> </data> <data name="Regex_non_white_space_character_short" xml:space="preserve"> <value>non-white-space character</value> </data> <data name="Regex_non_word_character_long" xml:space="preserve"> <value>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</value> <comment>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </comment> </data> <data name="Regex_non_word_character_short" xml:space="preserve"> <value>non-word character</value> </data> <data name="Regex_positive_character_group_long" xml:space="preserve"> <value>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</value> </data> <data name="Regex_positive_character_group_short" xml:space="preserve"> <value>positive character group</value> </data> <data name="Regex_positive_character_range_long" xml:space="preserve"> <value>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </value> </data> <data name="Regex_positive_character_range_short" xml:space="preserve"> <value>positive character range</value> </data> <data name="Regex_subexpression" xml:space="preserve"> <value>subexpression</value> </data> <data name="Regex_tab_character_long" xml:space="preserve"> <value>Matches a tab character, \u0009</value> </data> <data name="Regex_tab_character_short" xml:space="preserve"> <value>tab character</value> </data> <data name="Regex_unicode_category_long" xml:space="preserve"> <value>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</value> </data> <data name="Regex_unicode_category_short" xml:space="preserve"> <value>unicode category</value> </data> <data name="Regex_unicode_escape_long" xml:space="preserve"> <value>Matches a UTF-16 code unit whose value is #### hexadecimal.</value> </data> <data name="Regex_unicode_escape_short" xml:space="preserve"> <value>unicode escape</value> </data> <data name="Regex_vertical_tab_character_long" xml:space="preserve"> <value>Matches a vertical-tab character, \u000B</value> </data> <data name="Regex_vertical_tab_character_short" xml:space="preserve"> <value>vertical-tab character</value> </data> <data name="Regex_white_space_character_long" xml:space="preserve"> <value>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</value> </data> <data name="Regex_white_space_character_short" xml:space="preserve"> <value>white-space character</value> </data> <data name="Regex_word_character_long" xml:space="preserve"> <value>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</value> <comment>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</comment> </data> <data name="Regex_word_character_short" xml:space="preserve"> <value>word character</value> </data> <data name="Regex_alternation_long" xml:space="preserve"> <value>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</value> </data> <data name="Regex_alternation_short" xml:space="preserve"> <value>alternation</value> </data> <data name="Regex_balancing_group_long" xml:space="preserve"> <value>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</value> </data> <data name="Regex_balancing_group_short" xml:space="preserve"> <value>balancing group</value> </data> <data name="Regex_comment" xml:space="preserve"> <value>comment</value> </data> <data name="Regex_conditional_expression_match_long" xml:space="preserve"> <value>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</value> </data> <data name="Regex_conditional_expression_match_short" xml:space="preserve"> <value>conditional expression match</value> </data> <data name="Regex_conditional_group_match_long" xml:space="preserve"> <value>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</value> </data> <data name="Regex_conditional_group_match_short" xml:space="preserve"> <value>conditional group match</value> </data> <data name="Regex_end_of_line_comment_long" xml:space="preserve"> <value>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</value> </data> <data name="Regex_end_of_line_comment_short" xml:space="preserve"> <value>end-of-line comment</value> </data> <data name="Regex_expression" xml:space="preserve"> <value>expression</value> </data> <data name="Regex_group_options_long" xml:space="preserve"> <value>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</value> </data> <data name="Regex_group_options_short" xml:space="preserve"> <value>group options</value> </data> <data name="Regex_inline_comment_long" xml:space="preserve"> <value>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</value> </data> <data name="Regex_inline_comment_short" xml:space="preserve"> <value>inline comment</value> </data> <data name="Regex_name" xml:space="preserve"> <value>name</value> </data> <data name="Regex_name1" xml:space="preserve"> <value>name1</value> </data> <data name="Regex_name2" xml:space="preserve"> <value>name2</value> </data> <data name="Regex_named_backreference_long" xml:space="preserve"> <value>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</value> </data> <data name="Regex_named_backreference_short" xml:space="preserve"> <value>named backreference</value> </data> <data name="Regex_named_matched_subexpression_long" xml:space="preserve"> <value>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</value> </data> <data name="Regex_named_matched_subexpression_short" xml:space="preserve"> <value>named matched subexpression</value> </data> <data name="Regex_name_or_number" xml:space="preserve"> <value>name-or-number</value> </data> <data name="Regex_no" xml:space="preserve"> <value>no</value> </data> <data name="Regex_atomic_group_long" xml:space="preserve"> <value>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</value> </data> <data name="Regex_atomic_group_short" xml:space="preserve"> <value>atomic group</value> </data> <data name="Regex_noncapturing_group_long" xml:space="preserve"> <value>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</value> </data> <data name="Regex_noncapturing_group_short" xml:space="preserve"> <value>noncapturing group</value> </data> <data name="Regex_numbered_backreference_long" xml:space="preserve"> <value>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</value> </data> <data name="Regex_numbered_backreference_short" xml:space="preserve"> <value>numbered backreference</value> </data> <data name="Regex_yes" xml:space="preserve"> <value>yes</value> </data> <data name="Regex_zero_width_negative_lookahead_assertion_long" xml:space="preserve"> <value>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</value> </data> <data name="Regex_zero_width_negative_lookahead_assertion_short" xml:space="preserve"> <value>zero-width negative lookahead assertion</value> </data> <data name="Regex_zero_width_negative_lookbehind_assertion_long" xml:space="preserve"> <value>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</value> </data> <data name="Regex_zero_width_negative_lookbehind_assertion_short" xml:space="preserve"> <value>zero-width negative lookbehind assertion</value> </data> <data name="Regex_zero_width_positive_lookahead_assertion_long" xml:space="preserve"> <value>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</value> </data> <data name="Regex_zero_width_positive_lookahead_assertion_short" xml:space="preserve"> <value>zero-width positive lookahead assertion</value> </data> <data name="Regex_zero_width_positive_lookbehind_assertion_long" xml:space="preserve"> <value>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</value> </data> <data name="Regex_zero_width_positive_lookbehind_assertion_short" xml:space="preserve"> <value>zero-width positive lookbehind assertion</value> </data> <data name="Regex_all_control_characters_long" xml:space="preserve"> <value>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</value> </data> <data name="Regex_all_control_characters_short" xml:space="preserve"> <value>all control characters</value> </data> <data name="Regex_all_diacritic_marks_long" xml:space="preserve"> <value>All diacritic marks. This includes the Mn, Mc, and Me categories.</value> </data> <data name="Regex_all_diacritic_marks_short" xml:space="preserve"> <value>all diacritic marks</value> </data> <data name="Regex_all_letter_characters_long" xml:space="preserve"> <value>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</value> </data> <data name="Regex_all_letter_characters_short" xml:space="preserve"> <value>all letter characters</value> </data> <data name="Regex_all_numbers_long" xml:space="preserve"> <value>All numbers. This includes the Nd, Nl, and No categories.</value> </data> <data name="Regex_all_numbers_short" xml:space="preserve"> <value>all numbers</value> </data> <data name="Regex_all_punctuation_characters_long" xml:space="preserve"> <value>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</value> </data> <data name="Regex_all_punctuation_characters_short" xml:space="preserve"> <value>all punctuation characters</value> </data> <data name="Regex_all_separator_characters_long" xml:space="preserve"> <value>All separator characters. This includes the Zs, Zl, and Zp categories.</value> </data> <data name="Regex_all_separator_characters_short" xml:space="preserve"> <value>all separator characters</value> </data> <data name="Regex_all_symbols_long" xml:space="preserve"> <value>All symbols. This includes the Sm, Sc, Sk, and So categories.</value> </data> <data name="Regex_all_symbols_short" xml:space="preserve"> <value>all symbols</value> </data> <data name="Regex_base_group" xml:space="preserve"> <value>base-group</value> </data> <data name="Regex_character_class_subtraction_long" xml:space="preserve"> <value>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</value> </data> <data name="Regex_character_class_subtraction_short" xml:space="preserve"> <value>character class subtraction</value> </data> <data name="Regex_character_group" xml:space="preserve"> <value>character-group</value> </data> <data name="Regex_excluded_group" xml:space="preserve"> <value>excluded-group</value> </data> <data name="Regex_match_at_least_n_times_lazy_long" xml:space="preserve"> <value>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</value> </data> <data name="Regex_match_at_least_n_times_lazy_short" xml:space="preserve"> <value>match at least 'n' times (lazy)</value> </data> <data name="Regex_match_at_least_n_times_long" xml:space="preserve"> <value>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</value> </data> <data name="Regex_match_at_least_n_times_short" xml:space="preserve"> <value>match at least 'n' times</value> </data> <data name="Regex_match_between_m_and_n_times_lazy_long" xml:space="preserve"> <value>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</value> </data> <data name="Regex_match_between_m_and_n_times_lazy_short" xml:space="preserve"> <value>match at least 'n' times (lazy)</value> </data> <data name="Regex_match_between_m_and_n_times_long" xml:space="preserve"> <value>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</value> </data> <data name="Regex_match_between_m_and_n_times_short" xml:space="preserve"> <value>match between 'm' and 'n' times</value> </data> <data name="Regex_match_exactly_n_times_lazy_long" xml:space="preserve"> <value>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</value> </data> <data name="Regex_match_exactly_n_times_lazy_short" xml:space="preserve"> <value>match exactly 'n' times (lazy)</value> </data> <data name="Regex_match_exactly_n_times_long" xml:space="preserve"> <value>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</value> </data> <data name="Regex_match_exactly_n_times_short" xml:space="preserve"> <value>match exactly 'n' times</value> </data> <data name="Regex_match_one_or_more_times_lazy_long" xml:space="preserve"> <value>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</value> </data> <data name="Regex_match_one_or_more_times_lazy_short" xml:space="preserve"> <value>match one or more times (lazy)</value> </data> <data name="Regex_match_one_or_more_times_long" xml:space="preserve"> <value>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</value> </data> <data name="Regex_match_one_or_more_times_short" xml:space="preserve"> <value>match one or more times</value> </data> <data name="Regex_match_zero_or_more_times_lazy_long" xml:space="preserve"> <value>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</value> </data> <data name="Regex_match_zero_or_more_times_lazy_short" xml:space="preserve"> <value>match zero or more times (lazy)</value> </data> <data name="Regex_match_zero_or_more_times_long" xml:space="preserve"> <value>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</value> </data> <data name="Regex_match_zero_or_more_times_short" xml:space="preserve"> <value>match zero or more times</value> </data> <data name="Regex_match_zero_or_one_time_lazy_long" xml:space="preserve"> <value>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</value> </data> <data name="Regex_match_zero_or_one_time_lazy_short" xml:space="preserve"> <value>match zero or one time (lazy)</value> </data> <data name="Regex_match_zero_or_one_time_long" xml:space="preserve"> <value>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</value> </data> <data name="Regex_match_zero_or_one_time_short" xml:space="preserve"> <value>match zero or one time</value> </data> <data name="Regex_unicode_general_category_0" xml:space="preserve"> <value>Unicode General Category: {0}</value> </data> <data name="Regex_inline_options_long" xml:space="preserve"> <value>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</value> </data> <data name="Regex_inline_options_short" xml:space="preserve"> <value>inline options</value> </data> <data name="_0_cannot_be_null_or_empty" xml:space="preserve"> <value>'{0}' cannot be null or empty.</value> </data> <data name="_0_cannot_be_null_or_whitespace" xml:space="preserve"> <value>'{0}' cannot be null or whitespace.</value> </data> <data name="_0_is_not_null_here" xml:space="preserve"> <value>'{0}' is not null here.</value> </data> <data name="_0_may_be_null_here" xml:space="preserve"> <value>'{0}' may be null here.</value> </data> <data name="ChangeSignature_NewParameterInferValue" xml:space="preserve"> <value>&lt;infer&gt;</value> </data> <data name="Convert_type_to_0" xml:space="preserve"> <value>Convert type to '{0}'</value> </data> <data name="from_metadata" xml:space="preserve"> <value>from metadata</value> </data> <data name="symbol_cannot_be_a_namespace" xml:space="preserve"> <value>'symbol' cannot be a namespace.</value> </data> <data name="Document_must_be_contained_in_the_workspace_that_created_this_service" xml:space="preserve"> <value>Document must be contained in the workspace that created this service</value> </data> <data name="Generate_constructor_in_0_with_fields" xml:space="preserve"> <value>Generate constructor in '{0}' (with fields)</value> </data> <data name="Generate_constructor_in_0_with_properties" xml:space="preserve"> <value>Generate constructor in '{0}' (with properties)</value> </data> <data name="Property_reference_cannot_be_updated" xml:space="preserve"> <value>Property reference cannot be updated</value> </data> <data name="Make_class_abstract" xml:space="preserve"> <value>Make class 'abstract'</value> </data> <data name="Inline_0" xml:space="preserve"> <value>Inline '{0}'</value> </data> <data name="Remove_async_modifier" xml:space="preserve"> <value>Remove 'async' modifier</value> </data> <data name="Extract_base_class" xml:space="preserve"> <value>Extract base class...</value> </data> <data name="Inline_and_keep_0" xml:space="preserve"> <value>Inline and keep '{0}'</value> </data> <data name="Pull_members_up_to_new_base_class" xml:space="preserve"> <value>Pull member(s) up to new base class...</value> </data> <data name="Operators" xml:space="preserve"> <value>Operators</value> </data> <data name="The_assembly_0_containing_type_1_references_NET_Framework" xml:space="preserve"> <value>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</value> </data> <data name="Apply_file_header_preferences" xml:space="preserve"> <value>Apply file header preferences</value> </data> <data name="Apply_object_collection_initialization_preferences" xml:space="preserve"> <value>Apply object/collection initialization preferences</value> </data> <data name="Remove_unnecessary_casts" xml:space="preserve"> <value>Remove unnecessary casts</value> </data> <data name="Remove_unused_variables" xml:space="preserve"> <value>Remove unused variables</value> </data> <data name="Sort_accessibility_modifiers" xml:space="preserve"> <value>Sort accessibility modifiers</value> </data> <data name="Format_document" xml:space="preserve"> <value>Format document</value> </data> <data name="Error_creating_instance_of_CodeFixProvider" xml:space="preserve"> <value>Error creating instance of CodeFixProvider</value> </data> <data name="Error_creating_instance_of_CodeFixProvider_0" xml:space="preserve"> <value>Error creating instance of CodeFixProvider '{0}'</value> </data> <data name="Removal_of_document_not_supported" xml:space="preserve"> <value>Removal of document not supported</value> </data> <data name="in_0_1_2" xml:space="preserve"> <value>in {0} ({1} - {2})</value> </data> <data name="_0_dash_1" xml:space="preserve"> <value>{0} - {1}</value> </data> <data name="member_kind_and_name" xml:space="preserve"> <value>{0} '{1}'</value> <comment>e.g. "method 'M'"</comment> </data> <data name="code" xml:space="preserve"> <value>code</value> </data> <data name="Convert_to_record" xml:space="preserve"> <value>Convert to record</value> </data> <data name="Introduce_parameter" xml:space="preserve"> <value>Introduce parameter</value> </data> <data name="Introduce_parameter_for_0" xml:space="preserve"> <value>Introduce parameter for '{0}'</value> </data> <data name="Introduce_parameter_for_all_occurrences_of_0" xml:space="preserve"> <value>Introduce parameter for all occurrences of '{0}'</value> </data> <data name="into_new_overload" xml:space="preserve"> <value>into new overload</value> </data> <data name="into_extracted_method_to_invoke_at_call_sites" xml:space="preserve"> <value>into extracted method to invoke at call sites</value> </data> <data name="and_update_call_sites_directly" xml:space="preserve"> <value>and update call sites directly</value> </data> <data name="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application" xml:space="preserve"> <value>Implementing a record positional parameter '{0}' as read only requires restarting the application,</value> </data> <data name="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application" xml:space="preserve"> <value>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</value> </data> <data name="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0" xml:space="preserve"> <value>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</value> </data> <data name="Convert_to_record_struct" xml:space="preserve"> <value>Convert to record struct</value> </data> <data name="Edit_and_continue_is_not_supported_by_the_runtime" xml:space="preserve"> <value>Edit and continue is not supported by the runtime.</value> </data> <data name="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime" xml:space="preserve"> <value>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</value> </data> <data name="Making_a_method_an_iterator_requires_restarting_the_application" xml:space="preserve"> <value>Making a method an iterator requires restarting the application.</value> </data> <data name="Making_a_method_asynchronous_requires_restarting_the_application" xml:space="preserve"> <value>Making a method asynchronous requires restarting the application.</value> </data> <data name="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime" xml:space="preserve"> <value>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</value> </data> <data name="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application" xml:space="preserve"> <value>An update that causes the return type of the implicit Main method to change requires restarting the application.</value> <comment>{Locked="Main"} is C# keywords and should not be localized.</comment> </data> <data name="Changing_parameter_types_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing parameter types of {0} requires restarting the application.</value> </data> <data name="Changing_type_parameters_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing type parameters of {0} requires restarting the application.</value> </data> <data name="Changing_constraints_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing constraints of {0} requires restarting the application.</value> </data> <data name="No_common_root_node_for_extraction" xml:space="preserve"> <value>No common root node for extraction.</value> </data> <data name="No_valid_selection_to_perform_extraction" xml:space="preserve"> <value>No valid selection to perform extraction.</value> </data> <data name="Selection_does_not_contain_a_valid_token" xml:space="preserve"> <value>Selection does not contain a valid token.</value> </data> <data name="Selection_not_contained_inside_a_type" xml:space="preserve"> <value>Selection not contained inside a type.</value> </data> <data name="Invalid_selection" xml:space="preserve"> <value>Invalid selection.</value> </data> <data name="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime" xml:space="preserve"> <value>Renaming {0} requires restarting the application because it is not supported by the runtime.</value> </data> <data name="ChangesRequiredSynthesizedType" xml:space="preserve"> <value>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="0_directive" xml:space="preserve"> <value>#{0} directive</value> </data> <data name="Add_project_reference_to_0" xml:space="preserve"> <value>Add project reference to '{0}'.</value> </data> <data name="Add_reference_to_0" xml:space="preserve"> <value>Add reference to '{0}'.</value> </data> <data name="Actions_can_not_be_empty" xml:space="preserve"> <value>Actions can not be empty.</value> </data> <data name="generic_overload" xml:space="preserve"> <value>generic overload</value> </data> <data name="generic_overloads" xml:space="preserve"> <value>generic overloads</value> </data> <data name="overload" xml:space="preserve"> <value>overload</value> </data> <data name="overloads_" xml:space="preserve"> <value>overloads</value> </data> <data name="type" xml:space="preserve"> <value>type</value> </data> <data name="property_accessor" xml:space="preserve"> <value>property accessor</value> </data> <data name="_0_Keyword" xml:space="preserve"> <value>{0} Keyword</value> </data> <data name="Encapsulate_field_colon_0_and_use_property" xml:space="preserve"> <value>Encapsulate field: '{0}' (and use property)</value> </data> <data name="Encapsulate_field_colon_0_but_still_use_field" xml:space="preserve"> <value>Encapsulate field: '{0}' (but still use field)</value> </data> <data name="Encapsulate_fields_and_use_property" xml:space="preserve"> <value>Encapsulate fields (and use property)</value> </data> <data name="Encapsulate_fields_but_still_use_field" xml:space="preserve"> <value>Encapsulate fields (but still use field)</value> </data> <data name="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct" xml:space="preserve"> <value>Could not extract interface: The selection is not inside a class/interface/struct.</value> </data> <data name="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface" xml:space="preserve"> <value>Could not extract interface: The type does not contain any member that can be extracted to an interface.</value> </data> <data name="can_t_not_construct_final_tree" xml:space="preserve"> <value>can't not construct final tree</value> </data> <data name="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket" xml:space="preserve"> <value>Parameters' type or return type cannot be an anonymous type : [{0}]</value> </data> <data name="The_selection_contains_no_active_statement" xml:space="preserve"> <value>The selection contains no active statement.</value> </data> <data name="The_selection_contains_a_local_function_call_without_its_declaration" xml:space="preserve"> <value>The selection contains a local function call without its declaration.</value> </data> <data name="The_selection_contains_an_error_or_unknown_type" xml:space="preserve"> <value>The selection contains an error or unknown type.</value> </data> <data name="Type_parameter_0_is_hidden_by_another_type_parameter_1" xml:space="preserve"> <value>Type parameter '{0}' is hidden by another type parameter '{1}'.</value> </data> <data name="The_address_of_a_variable_is_used_inside_the_selected_code" xml:space="preserve"> <value>The address of a variable is used inside the selected code.</value> </data> <data name="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket" xml:space="preserve"> <value>Assigning to readonly fields must be done in a constructor : [{0}].</value> </data> <data name="generated_code_is_overlapping_with_hidden_portion_of_the_code" xml:space="preserve"> <value>generated code is overlapping with hidden portion of the code</value> </data> <data name="Add_optional_parameters_to_0" xml:space="preserve"> <value>Add optional parameters to '{0}'</value> </data> <data name="Add_parameters_to_0" xml:space="preserve"> <value>Add parameters to '{0}'</value> </data> <data name="Generate_delegating_constructor_0_1" xml:space="preserve"> <value>Generate delegating constructor '{0}({1})'</value> </data> <data name="Generate_constructor_0_1" xml:space="preserve"> <value>Generate constructor '{0}({1})'</value> </data> <data name="Generate_field_assigning_constructor_0_1" xml:space="preserve"> <value>Generate field assigning constructor '{0}({1})'</value> </data> <data name="Generate_Equals_and_GetHashCode" xml:space="preserve"> <value>Generate Equals and GetHashCode</value> </data> <data name="Generate_Equals_object" xml:space="preserve"> <value>Generate Equals(object)</value> </data> <data name="Generate_GetHashCode" xml:space="preserve"> <value>Generate GetHashCode()</value> </data> <data name="Generate_constructor_in_0" xml:space="preserve"> <value>Generate constructor in '{0}'</value> </data> <data name="Generate_all" xml:space="preserve"> <value>Generate all</value> </data> <data name="Generate_enum_member_1_0" xml:space="preserve"> <value>Generate enum member '{1}.{0}'</value> </data> <data name="Generate_constant_1_0" xml:space="preserve"> <value>Generate constant '{1}.{0}'</value> </data> <data name="Generate_read_only_property_1_0" xml:space="preserve"> <value>Generate read-only property '{1}.{0}'</value> </data> <data name="Generate_property_1_0" xml:space="preserve"> <value>Generate property '{1}.{0}'</value> </data> <data name="Generate_read_only_field_1_0" xml:space="preserve"> <value>Generate read-only field '{1}.{0}'</value> </data> <data name="Generate_field_1_0" xml:space="preserve"> <value>Generate field '{1}.{0}'</value> </data> <data name="Generate_local_0" xml:space="preserve"> <value>Generate local '{0}'</value> </data> <data name="Generate_0_1_in_new_file" xml:space="preserve"> <value>Generate {0} '{1}' in new file</value> </data> <data name="Generate_nested_0_1" xml:space="preserve"> <value>Generate nested {0} '{1}'</value> </data> <data name="Global_Namespace" xml:space="preserve"> <value>Global Namespace</value> </data> <data name="Implement_all_members_explicitly" xml:space="preserve"> <value>Implement all members explicitly</value> </data> <data name="Implement_interface_abstractly" xml:space="preserve"> <value>Implement interface abstractly</value> </data> <data name="Implement_interface_through_0" xml:space="preserve"> <value>Implement interface through '{0}'</value> </data> <data name="Implement_interface" xml:space="preserve"> <value>Implement interface</value> </data> <data name="Introduce_field_for_0" xml:space="preserve"> <value>Introduce field for '{0}'</value> </data> <data name="Introduce_local_for_0" xml:space="preserve"> <value>Introduce local for '{0}'</value> </data> <data name="Introduce_constant_for_0" xml:space="preserve"> <value>Introduce constant for '{0}'</value> </data> <data name="Introduce_local_constant_for_0" xml:space="preserve"> <value>Introduce local constant for '{0}'</value> </data> <data name="Introduce_field_for_all_occurrences_of_0" xml:space="preserve"> <value>Introduce field for all occurrences of '{0}'</value> </data> <data name="Introduce_local_for_all_occurrences_of_0" xml:space="preserve"> <value>Introduce local for all occurrences of '{0}'</value> </data> <data name="Introduce_constant_for_all_occurrences_of_0" xml:space="preserve"> <value>Introduce constant for all occurrences of '{0}'</value> </data> <data name="Introduce_local_constant_for_all_occurrences_of_0" xml:space="preserve"> <value>Introduce local constant for all occurrences of '{0}'</value> </data> <data name="Introduce_query_variable_for_all_occurrences_of_0" xml:space="preserve"> <value>Introduce query variable for all occurrences of '{0}'</value> </data> <data name="Introduce_query_variable_for_0" xml:space="preserve"> <value>Introduce query variable for '{0}'</value> </data> <data name="Anonymous_Types_colon" xml:space="preserve"> <value>Anonymous Types:</value> </data> <data name="is_" xml:space="preserve"> <value>is</value> </data> <data name="Represents_an_object_whose_operations_will_be_resolved_at_runtime" xml:space="preserve"> <value>Represents an object whose operations will be resolved at runtime.</value> </data> <data name="constant" xml:space="preserve"> <value>constant</value> </data> <data name="field" xml:space="preserve"> <value>field</value> </data> <data name="local_constant" xml:space="preserve"> <value>local constant</value> </data> <data name="local_variable" xml:space="preserve"> <value>local variable</value> </data> <data name="label" xml:space="preserve"> <value>label</value> </data> <data name="range_variable" xml:space="preserve"> <value>range variable</value> </data> <data name="parameter" xml:space="preserve"> <value>parameter</value> </data> <data name="discard" xml:space="preserve"> <value>discard</value> </data> <data name="in_" xml:space="preserve"> <value>in</value> </data> <data name="Summary_colon" xml:space="preserve"> <value>Summary:</value> </data> <data name="Locals_and_parameters" xml:space="preserve"> <value>Locals and parameters</value> </data> <data name="Type_parameters_colon" xml:space="preserve"> <value>Type parameters:</value> </data> <data name="Returns_colon" xml:space="preserve"> <value>Returns:</value> </data> <data name="Exceptions_colon" xml:space="preserve"> <value>Exceptions:</value> </data> <data name="Remarks_colon" xml:space="preserve"> <value>Remarks:</value> </data> <data name="generating_source_for_symbols_of_this_type_is_not_supported" xml:space="preserve"> <value>generating source for symbols of this type is not supported</value> </data> <data name="Assembly" xml:space="preserve"> <value>Assembly</value> </data> <data name="location_unknown" xml:space="preserve"> <value>location unknown</value> </data> <data name="Extract_interface" xml:space="preserve"> <value>Extract interface...</value> </data> <data name="Updating_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating '{0}' requires restarting the application.</value> </data> <data name="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine" xml:space="preserve"> <value>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</value> </data> <data name="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application" xml:space="preserve"> <value>Updating a complex statement containing an await expression requires restarting the application.</value> </data> <data name="Changing_visibility_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing visibility of {0} requires restarting the application.</value> </data> <data name="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application" xml:space="preserve"> <value>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</value> </data> <data name="Ceasing_to_capture_variable_0_requires_restarting_the_application" xml:space="preserve"> <value>Ceasing to capture variable '{0}' requires restarting the application.</value> </data> <data name="Deleting_captured_variable_0_requires_restarting_the_application" xml:space="preserve"> <value>Deleting captured variable '{0}' requires restarting the application.</value> </data> <data name="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application" xml:space="preserve"> <value>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</value> </data> <data name="Changing_the_parameters_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing the parameters of {0} requires restarting the application.</value> </data> <data name="Changing_the_return_type_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing the return type of {0} requires restarting the application.</value> </data> <data name="Changing_the_type_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing the type of {0} requires restarting the application.</value> </data> <data name="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</value> </data> <data name="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application" xml:space="preserve"> <value>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</value> </data> <data name="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application" xml:space="preserve"> <value>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</value> </data> <data name="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</value> </data> <data name="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application" xml:space="preserve"> <value>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</value> </data> <data name="Adding_0_into_a_1_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} into a {1} requires restarting the application.</value> </data> <data name="Adding_0_into_an_interface_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} into an interface requires restarting the application.</value> </data> <data name="Adding_0_into_a_generic_type_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} into a generic type requires restarting the application.</value> </data> <data name="Adding_0_into_an_interface_method_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} into an interface method requires restarting the application.</value> </data> <data name="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} into a class with explicit or sequential layout requires restarting the application.</value> </data> <data name="Updating_the_modifiers_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the modifiers of {0} requires restarting the application.</value> </data> <data name="Updating_the_Handles_clause_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the Handles clause of {0} requires restarting the application.</value> <comment>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</comment> </data> <data name="Adding_0_with_the_Handles_clause_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} with the Handles clause requires restarting the application.</value> <comment>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</comment> </data> <data name="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the Implements clause of a {0} requires restarting the application.</value> <comment>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</comment> </data> <data name="Updating_the_variance_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the variance of {0} requires restarting the application.</value> </data> <data name="Updating_the_type_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the type of {0} requires restarting the application.</value> </data> <data name="Updating_the_initializer_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the initializer of {0} requires restarting the application.</value> </data> <data name="Updating_the_size_of_a_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the size of a {0} requires restarting the application.</value> </data> <data name="Updating_the_underlying_type_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the underlying type of {0} requires restarting the application.</value> </data> <data name="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Updating the base class and/or base interface(s) of {0} requires restarting the application.</value> </data> <data name="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application" xml:space="preserve"> <value>Changing a field to an event or vice versa requires restarting the application.</value> </data> <data name="Updating_the_kind_of_a_type_requires_restarting_the_application" xml:space="preserve"> <value>Updating the kind of a type requires restarting the application.</value> </data> <data name="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application" xml:space="preserve"> <value>Updating the kind of a property/event accessor requires restarting the application.</value> </data> <data name="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application" xml:space="preserve"> <value>Updating the library name of Declare statement requires restarting the application.</value> <comment>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</comment> </data> <data name="Updating_the_alias_of_Declare_statement_requires_restarting_the_application" xml:space="preserve"> <value>Updating the alias of Declare statement requires restarting the application.</value> <comment>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</comment> </data> <data name="Renaming_0_requires_restarting_the_application" xml:space="preserve"> <value>Renaming {0} requires restarting the application.</value> </data> <data name="Adding_0_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} requires restarting the application.</value> </data> <data name="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application" xml:space="preserve"> <value>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</value> </data> <data name="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application" xml:space="preserve"> <value>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</value> <comment>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</comment> </data> <data name="Adding_an_extern_0_requires_restarting_the_application" xml:space="preserve"> <value>Adding an extern {0} requires restarting the application.</value> <comment>{Locked="extern"} "extern" is C# keyword and should not be localized.</comment> </data> <data name="Adding_an_imported_method_requires_restarting_the_application" xml:space="preserve"> <value>Adding an imported method requires restarting the application.</value> </data> <data name="Adding_a_user_defined_0_requires_restarting_the_application" xml:space="preserve"> <value>Adding a user defined {0} requires restarting the application.</value> </data> <data name="Adding_a_generic_0_requires_restarting_the_application" xml:space="preserve"> <value>Adding a generic {0} requires restarting the application.</value> </data> <data name="Adding_0_around_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Adding {0} around an active statement requires restarting the application.</value> </data> <data name="Moving_0_requires_restarting_the_application" xml:space="preserve"> <value>Moving {0} requires restarting the application.</value> </data> <data name="Deleting_0_requires_restarting_the_application" xml:space="preserve"> <value>Deleting {0} requires restarting the application.</value> </data> <data name="Deleting_0_around_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Deleting {0} around an active statement requires restarting the application.</value> </data> <data name="Updating_a_0_around_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Updating a {0} around an active statement requires restarting the application.</value> </data> <data name="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Updating async or iterator modifier around an active statement requires restarting the application.</value> <comment>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</comment> </data> <data name="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application" xml:space="preserve"> <value>Changing {0} from asynchronous to synchronous requires restarting the application.</value> </data> <data name="Modifying_a_generic_method_requires_restarting_the_application" xml:space="preserve"> <value>Modifying a generic method requires restarting the application.</value> </data> <data name="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application" xml:space="preserve"> <value>Modifying whitespace or comments in a generic {0} requires restarting the application.</value> </data> <data name="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application" xml:space="preserve"> <value>Modifying a method inside the context of a generic type requires restarting the application.</value> </data> <data name="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application" xml:space="preserve"> <value>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</value> </data> <data name="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application" xml:space="preserve"> <value>Modifying the initializer of {0} in a generic type requires restarting the application.</value> </data> <data name="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application" xml:space="preserve"> <value>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</value> </data> <data name="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application" xml:space="preserve"> <value>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</value> </data> <data name="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application" xml:space="preserve"> <value>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</value> </data> <data name="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application" xml:space="preserve"> <value>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</value> </data> <data name="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Modifying a catch handler around an active statement requires restarting the application.</value> </data> <data name="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application" xml:space="preserve"> <value>Modifying {0} which contains the stackalloc operator requires restarting the application.</value> <comment>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</comment> </data> <data name="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application" xml:space="preserve"> <value>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</value> <comment>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</comment> </data> <data name="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application" xml:space="preserve"> <value>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</value> <comment>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</comment> </data> <data name="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application" xml:space="preserve"> <value>Modifying source with experimental language features enabled requires restarting the application.</value> </data> <data name="Updating_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Updating an active statement requires restarting the application.</value> </data> <data name="Removing_0_that_contains_an_active_statement_requires_restarting_the_application" xml:space="preserve"> <value>Removing {0} that contains an active statement requires restarting the application.</value> </data> <data name="Adding_a_new_file_requires_restarting_the_application" xml:space="preserve"> <value>Adding a new file requires restarting the application.</value> </data> <data name="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application" xml:space="preserve"> <value>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</value> </data> <data name="Unexpected_interface_member_kind_colon_0" xml:space="preserve"> <value>Unexpected interface member kind: {0}</value> </data> <data name="Unknown_symbol_kind" xml:space="preserve"> <value>Unknown symbol kind</value> </data> <data name="Generate_abstract_property_1_0" xml:space="preserve"> <value>Generate abstract property '{1}.{0}'</value> </data> <data name="Generate_abstract_method_1_0" xml:space="preserve"> <value>Generate abstract method '{1}.{0}'</value> </data> <data name="Generate_method_1_0" xml:space="preserve"> <value>Generate method '{1}.{0}'</value> </data> <data name="Requested_assembly_already_loaded_from_0" xml:space="preserve"> <value>Requested assembly already loaded from '{0}'.</value> </data> <data name="The_symbol_does_not_have_an_icon" xml:space="preserve"> <value>The symbol does not have an icon.</value> </data> <data name="Extract_local_function" xml:space="preserve"> <value>Extract local function</value> </data> <data name="Extract_method" xml:space="preserve"> <value>Extract method</value> </data> <data name="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket" xml:space="preserve"> <value>Asynchronous method cannot have ref/out parameters : [{0}]</value> </data> <data name="The_member_is_defined_in_metadata" xml:space="preserve"> <value>The member is defined in metadata.</value> </data> <data name="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate" xml:space="preserve"> <value>You can only change the signature of a constructor, indexer, method or delegate.</value> </data> <data name="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue" xml:space="preserve"> <value>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</value> </data> <data name="Change_signature" xml:space="preserve"> <value>Change signature...</value> </data> <data name="Generate_new_type" xml:space="preserve"> <value>Generate new type...</value> </data> <data name="User_Diagnostic_Analyzer_Failure" xml:space="preserve"> <value>User Diagnostic Analyzer Failure.</value> </data> <data name="Analyzer_0_threw_an_exception_of_type_1_with_message_2" xml:space="preserve"> <value>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</value> </data> <data name="Analyzer_0_threw_the_following_exception_colon_1" xml:space="preserve"> <value>Analyzer '{0}' threw the following exception: '{1}'.</value> </data> <data name="Simplify_Names" xml:space="preserve"> <value>Simplify Names</value> </data> <data name="Simplify_Member_Access" xml:space="preserve"> <value>Simplify Member Access</value> </data> <data name="Remove_qualification" xml:space="preserve"> <value>Remove qualification</value> </data> <data name="Unknown_error_occurred" xml:space="preserve"> <value>Unknown error occurred</value> </data> <data name="No_valid_location_to_insert_method_call" xml:space="preserve"> <value>No valid location to insert method call.</value> </data> <data name="Available" xml:space="preserve"> <value>Available</value> </data> <data name="Not_Available" xml:space="preserve"> <value>Not Available ⚠</value> </data> <data name="_0_1" xml:space="preserve"> <value> {0} - {1}</value> </data> <data name="You_can_use_the_navigation_bar_to_switch_contexts" xml:space="preserve"> <value>You can use the navigation bar to switch contexts.</value> </data> <data name="in_Source" xml:space="preserve"> <value>in Source</value> </data> <data name="in_Suppression_File" xml:space="preserve"> <value>in Suppression File</value> </data> <data name="Remove_Suppression_0" xml:space="preserve"> <value>Remove Suppression {0}</value> </data> <data name="Remove_Suppression" xml:space="preserve"> <value>Remove Suppression</value> </data> <data name="Configure_0_severity" xml:space="preserve"> <value>Configure {0} severity</value> </data> <data name="Configure_0_code_style" xml:space="preserve"> <value>Configure {0} code style</value> </data> <data name="Configure_severity_for_all_0_analyzers" xml:space="preserve"> <value>Configure severity for all '{0}' analyzers</value> </data> <data name="Configure_severity_for_all_analyzers" xml:space="preserve"> <value>Configure severity for all analyzers</value> </data> <data name="Pending" xml:space="preserve"> <value>&lt;Pending&gt;</value> </data> <data name="Awaited_task_returns_0" xml:space="preserve"> <value>Awaited task returns '{0}'</value> </data> <data name="Awaited_task_returns_no_value" xml:space="preserve"> <value>Awaited task returns no value</value> </data> <data name="Note_colon_Tab_twice_to_insert_the_0_snippet" xml:space="preserve"> <value>Note: Tab twice to insert the '{0}' snippet.</value> </data> <data name="Implement_interface_explicitly_with_Dispose_pattern" xml:space="preserve"> <value>Implement interface explicitly with Dispose pattern</value> </data> <data name="Implement_interface_with_Dispose_pattern" xml:space="preserve"> <value>Implement interface with Dispose pattern</value> </data> <data name="Suppress_0" xml:space="preserve"> <value>Suppress {0}</value> </data> <data name="Re_triage_0_currently_1" xml:space="preserve"> <value>Re-triage {0}(currently '{1}')</value> </data> <data name="Argument_cannot_have_a_null_element" xml:space="preserve"> <value>Argument cannot have a null element.</value> </data> <data name="Argument_cannot_be_empty" xml:space="preserve"> <value>Argument cannot be empty.</value> </data> <data name="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer" xml:space="preserve"> <value>Reported diagnostic with ID '{0}' is not supported by the analyzer.</value> </data> <data name="Computing_fix_all_occurrences_code_fix" xml:space="preserve"> <value>Computing fix all occurrences code fix...</value> </data> <data name="Fix_all_occurrences" xml:space="preserve"> <value>Fix all occurrences</value> </data> <data name="Document" xml:space="preserve"> <value>Document</value> </data> <data name="Project" xml:space="preserve"> <value>Project</value> </data> <data name="Solution" xml:space="preserve"> <value>Solution</value> </data> <data name="TODO_colon_dispose_managed_state_managed_objects" xml:space="preserve"> <value>TODO: dispose managed state (managed objects)</value> </data> <data name="TODO_colon_set_large_fields_to_null" xml:space="preserve"> <value>TODO: set large fields to null</value> </data> <data name="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application" xml:space="preserve"> <value>Modifying {0} which contains a static variable requires restarting the application.</value> </data> <data name="Compiler2" xml:space="preserve"> <value>Compiler</value> </data> <data name="EditAndContinue" xml:space="preserve"> <value>Edit and Continue</value> </data> <data name="Live" xml:space="preserve"> <value>Live</value> </data> <data name="namespace_" xml:space="preserve"> <value>namespace</value> <comment>{Locked}</comment> </data> <data name="class_" xml:space="preserve"> <value>class</value> <comment>{Locked}</comment> </data> <data name="interface_" xml:space="preserve"> <value>interface</value> <comment>{Locked}</comment> </data> <data name="enum_" xml:space="preserve"> <value>enum</value> <comment>{Locked}</comment> </data> <data name="enum_value" xml:space="preserve"> <value>enum value</value> <comment>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</comment> </data> <data name="delegate_" xml:space="preserve"> <value>delegate</value> <comment>{Locked}</comment> </data> <data name="const_field" xml:space="preserve"> <value>const field</value> <comment>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</comment> </data> <data name="method" xml:space="preserve"> <value>method</value> </data> <data name="operator_" xml:space="preserve"> <value>operator</value> </data> <data name="constructor" xml:space="preserve"> <value>constructor</value> </data> <data name="static_constructor" xml:space="preserve"> <value>static constructor</value> </data> <data name="auto_property" xml:space="preserve"> <value>auto-property</value> </data> <data name="property_" xml:space="preserve"> <value>property</value> </data> <data name="event_" xml:space="preserve"> <value>event</value> <comment>{Locked}</comment> </data> <data name="event_accessor" xml:space="preserve"> <value>event accessor</value> </data> <data name="type_constraint" xml:space="preserve"> <value>type constraint</value> </data> <data name="type_parameter" xml:space="preserve"> <value>type parameter</value> </data> <data name="attribute" xml:space="preserve"> <value>attribute</value> </data> <data name="Replace_0_and_1_with_property" xml:space="preserve"> <value>Replace '{0}' and '{1}' with property</value> </data> <data name="Replace_0_with_property" xml:space="preserve"> <value>Replace '{0}' with property</value> </data> <data name="Method_referenced_implicitly" xml:space="preserve"> <value>Method referenced implicitly</value> </data> <data name="Generate_type_0" xml:space="preserve"> <value>Generate type '{0}'</value> </data> <data name="Generate_0_1" xml:space="preserve"> <value>Generate {0} '{1}'</value> </data> <data name="Change_0_to_1" xml:space="preserve"> <value>Change '{0}' to '{1}'.</value> </data> <data name="Non_invoked_method_cannot_be_replaced_with_property" xml:space="preserve"> <value>Non-invoked method cannot be replaced with property.</value> </data> <data name="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property" xml:space="preserve"> <value>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</value> </data> <data name="Roslyn_HostError" xml:space="preserve"> <value>Roslyn.HostError</value> </data> <data name="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2" xml:space="preserve"> <value>An instance of analyzer {0} cannot be created from {1}: {2}.</value> </data> <data name="The_assembly_0_does_not_contain_any_analyzers" xml:space="preserve"> <value>The assembly {0} does not contain any analyzers.</value> </data> <data name="Unable_to_load_Analyzer_assembly_0_colon_1" xml:space="preserve"> <value>Unable to load Analyzer assembly {0}: {1}</value> </data> <data name="Make_method_synchronous" xml:space="preserve"> <value>Make method synchronous</value> </data> <data name="from_0" xml:space="preserve"> <value>from {0}</value> </data> <data name="Find_and_install_latest_version" xml:space="preserve"> <value>Find and install latest version</value> </data> <data name="Use_local_version_0" xml:space="preserve"> <value>Use local version '{0}'</value> </data> <data name="Use_locally_installed_0_version_1_This_version_used_in_colon_2" xml:space="preserve"> <value>Use locally installed '{0}' version '{1}' This version used in: {2}</value> </data> <data name="Find_and_install_latest_version_of_0" xml:space="preserve"> <value>Find and install latest version of '{0}'</value> </data> <data name="Install_with_package_manager" xml:space="preserve"> <value>Install with package manager...</value> </data> <data name="Install_0_1" xml:space="preserve"> <value>Install '{0} {1}'</value> </data> <data name="Install_version_0" xml:space="preserve"> <value>Install version '{0}'</value> </data> <data name="Generate_variable_0" xml:space="preserve"> <value>Generate variable '{0}'</value> </data> <data name="Classes" xml:space="preserve"> <value>Classes</value> </data> <data name="Constants" xml:space="preserve"> <value>Constants</value> </data> <data name="Delegates" xml:space="preserve"> <value>Delegates</value> </data> <data name="Enums" xml:space="preserve"> <value>Enums</value> </data> <data name="Events" xml:space="preserve"> <value>Events</value> </data> <data name="Extension_methods" xml:space="preserve"> <value>Extension methods</value> </data> <data name="Fields" xml:space="preserve"> <value>Fields</value> </data> <data name="Interfaces" xml:space="preserve"> <value>Interfaces</value> </data> <data name="Locals" xml:space="preserve"> <value>Locals</value> </data> <data name="Methods" xml:space="preserve"> <value>Methods</value> </data> <data name="Modules" xml:space="preserve"> <value>Modules</value> </data> <data name="Namespaces" xml:space="preserve"> <value>Namespaces</value> </data> <data name="Properties" xml:space="preserve"> <value>Properties</value> </data> <data name="Structures" xml:space="preserve"> <value>Structures</value> </data> <data name="Parameters_colon" xml:space="preserve"> <value>Parameters:</value> </data> <data name="Variadic_SignatureHelpItem_must_have_at_least_one_parameter" xml:space="preserve"> <value>Variadic SignatureHelpItem must have at least one parameter.</value> </data> <data name="Replace_0_with_method" xml:space="preserve"> <value>Replace '{0}' with method</value> </data> <data name="Replace_0_with_methods" xml:space="preserve"> <value>Replace '{0}' with methods</value> </data> <data name="Property_referenced_implicitly" xml:space="preserve"> <value>Property referenced implicitly</value> </data> <data name="Property_cannot_safely_be_replaced_with_a_method_call" xml:space="preserve"> <value>Property cannot safely be replaced with a method call</value> </data> <data name="Convert_to_interpolated_string" xml:space="preserve"> <value>Convert to interpolated string</value> </data> <data name="Move_type_to_0" xml:space="preserve"> <value>Move type to {0}</value> </data> <data name="Rename_file_to_0" xml:space="preserve"> <value>Rename file to {0}</value> </data> <data name="Rename_type_to_0" xml:space="preserve"> <value>Rename type to {0}</value> </data> <data name="Remove_tag" xml:space="preserve"> <value>Remove tag</value> </data> <data name="Add_missing_param_nodes" xml:space="preserve"> <value>Add missing param nodes</value> </data> <data name="Asynchronously_waits_for_the_task_to_finish" xml:space="preserve"> <value>Asynchronously waits for the task to finish.</value> </data> <data name="Make_containing_scope_async" xml:space="preserve"> <value>Make containing scope async</value> </data> <data name="Make_containing_scope_async_return_Task" xml:space="preserve"> <value>Make containing scope async (return Task)</value> </data> <data name="paren_Unknown_paren" xml:space="preserve"> <value>(Unknown)</value> </data> <data name="Implement_abstract_class" xml:space="preserve"> <value>Implement abstract class</value> </data> <data name="Use_framework_type" xml:space="preserve"> <value>Use framework type</value> </data> <data name="Install_package_0" xml:space="preserve"> <value>Install package '{0}'</value> </data> <data name="project_0" xml:space="preserve"> <value>project {0}</value> </data> <data name="Use_interpolated_verbatim_string" xml:space="preserve"> <value>Use interpolated verbatim string</value> </data> <data name="Fix_typo_0" xml:space="preserve"> <value>Fix typo '{0}'</value> </data> <data name="Fully_qualify_0" xml:space="preserve"> <value>Fully qualify '{0}'</value> </data> <data name="Remove_reference_to_0" xml:space="preserve"> <value>Remove reference to '{0}'.</value> </data> <data name="Keywords" xml:space="preserve"> <value>Keywords</value> </data> <data name="Snippets" xml:space="preserve"> <value>Snippets</value> </data> <data name="All_lowercase" xml:space="preserve"> <value>All lowercase</value> </data> <data name="All_uppercase" xml:space="preserve"> <value>All uppercase</value> </data> <data name="First_word_capitalized" xml:space="preserve"> <value>First word capitalized</value> </data> <data name="Pascal_Case" xml:space="preserve"> <value>Pascal Case</value> </data> <data name="Remove_document_0" xml:space="preserve"> <value>Remove document '{0}'</value> </data> <data name="Add_document_0" xml:space="preserve"> <value>Add document '{0}'</value> </data> <data name="Add_argument_name_0" xml:space="preserve"> <value>Add argument name '{0}'</value> </data> <data name="Add_tuple_element_name_0" xml:space="preserve"> <value>Add tuple element name '{0}'</value> </data> <data name="Take_0" xml:space="preserve"> <value>Take '{0}'</value> </data> <data name="Take_both" xml:space="preserve"> <value>Take both</value> </data> <data name="Take_bottom" xml:space="preserve"> <value>Take bottom</value> </data> <data name="Take_top" xml:space="preserve"> <value>Take top</value> </data> <data name="Remove_unused_variable" xml:space="preserve"> <value>Remove unused variable</value> </data> <data name="Convert_to_binary" xml:space="preserve"> <value>Convert to binary</value> </data> <data name="Convert_to_decimal" xml:space="preserve"> <value>Convert to decimal</value> </data> <data name="Convert_to_hex" xml:space="preserve"> <value>Convert to hex</value> </data> <data name="Separate_thousands" xml:space="preserve"> <value>Separate thousands</value> </data> <data name="Separate_words" xml:space="preserve"> <value>Separate words</value> </data> <data name="Separate_nibbles" xml:space="preserve"> <value>Separate nibbles</value> </data> <data name="Remove_separators" xml:space="preserve"> <value>Remove separators</value> </data> <data name="Add_parameter_to_0" xml:space="preserve"> <value>Add parameter to '{0}'</value> </data> <data name="Add_parameter_to_0_and_overrides_implementations" xml:space="preserve"> <value>Add parameter to '{0}' (and overrides/implementations)</value> </data> <data name="Add_to_0" xml:space="preserve"> <value>Add to '{0}'</value> </data> <data name="Related_method_signatures_found_in_metadata_will_not_be_updated" xml:space="preserve"> <value>Related method signatures found in metadata will not be updated.</value> </data> <data name="Generate_constructor" xml:space="preserve"> <value>Generate constructor...</value> </data> <data name="Pick_members_to_be_used_as_constructor_parameters" xml:space="preserve"> <value>Pick members to be used as constructor parameters</value> </data> <data name="Pick_members_to_be_used_in_Equals_GetHashCode" xml:space="preserve"> <value>Pick members to be used in Equals/GetHashCode</value> </data> <data name="Generate_overrides" xml:space="preserve"> <value>Generate overrides...</value> </data> <data name="Pick_members_to_override" xml:space="preserve"> <value>Pick members to override</value> </data> <data name="Add_null_check" xml:space="preserve"> <value>Add null check</value> </data> <data name="Add_string_IsNullOrEmpty_check" xml:space="preserve"> <value>Add 'string.IsNullOrEmpty' check</value> </data> <data name="Add_string_IsNullOrWhiteSpace_check" xml:space="preserve"> <value>Add 'string.IsNullOrWhiteSpace' check</value> </data> <data name="Create_and_assign_field_0" xml:space="preserve"> <value>Create and assign field '{0}'</value> </data> <data name="Create_and_assign_property_0" xml:space="preserve"> <value>Create and assign property '{0}'</value> </data> <data name="Initialize_field_0" xml:space="preserve"> <value>Initialize field '{0}'</value> </data> <data name="Initialize_property_0" xml:space="preserve"> <value>Initialize property '{0}'</value> </data> <data name="Add_null_checks" xml:space="preserve"> <value>Add null checks</value> </data> <data name="Generate_operators" xml:space="preserve"> <value>Generate operators</value> </data> <data name="Implement_0" xml:space="preserve"> <value>Implement {0}</value> </data> <data name="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed" xml:space="preserve"> <value>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</value> </data> <data name="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file" xml:space="preserve"> <value>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</value> </data> <data name="in_0_project_1" xml:space="preserve"> <value>in {0} (project {1})</value> </data> <data name="Add_accessibility_modifiers" xml:space="preserve"> <value>Add accessibility modifiers</value> </data> <data name="Move_declaration_near_reference" xml:space="preserve"> <value>Move declaration near reference</value> </data> <data name="Convert_to_full_property" xml:space="preserve"> <value>Convert to full property</value> </data> <data name="Warning_Method_overrides_symbol_from_metadata" xml:space="preserve"> <value>Warning: Method overrides symbol from metadata</value> </data> <data name="Use_0" xml:space="preserve"> <value>Use {0}</value> </data> <data name="Switching_between_lambda_and_local_function_requires_restarting_the_application" xml:space="preserve"> <value>Switching between a lambda and a local function requires restarting the application.</value> </data> <data name="Add_argument_name_0_including_trailing_arguments" xml:space="preserve"> <value>Add argument name '{0}' (including trailing arguments)</value> </data> <data name="local_function" xml:space="preserve"> <value>local function</value> </data> <data name="indexer_" xml:space="preserve"> <value>indexer</value> </data> <data name="Alias_ambiguous_type_0" xml:space="preserve"> <value>Alias ambiguous type '{0}'</value> </data> <data name="Warning_colon_Collection_was_modified_during_iteration" xml:space="preserve"> <value>Warning: Collection was modified during iteration.</value> </data> <data name="Warning_colon_Iteration_variable_crossed_function_boundary" xml:space="preserve"> <value>Warning: Iteration variable crossed function boundary.</value> </data> <data name="Warning_colon_Collection_may_be_modified_during_iteration" xml:space="preserve"> <value>Warning: Collection may be modified during iteration.</value> </data> <data name="Convert_to_linq" xml:space="preserve"> <value>Convert to LINQ</value> </data> <data name="Convert_to_class" xml:space="preserve"> <value>Convert to class</value> </data> <data name="Convert_to_struct" xml:space="preserve"> <value>Convert to struct</value> </data> <data name="updating_usages_in_containing_member" xml:space="preserve"> <value>updating usages in containing member</value> </data> <data name="updating_usages_in_containing_project" xml:space="preserve"> <value>updating usages in containing project</value> </data> <data name="updating_usages_in_containing_type" xml:space="preserve"> <value>updating usages in containing type</value> </data> <data name="updating_usages_in_dependent_projects" xml:space="preserve"> <value>updating usages in dependent projects</value> </data> <data name="Formatting_document" xml:space="preserve"> <value>Formatting document</value> </data> <data name="Add_member_name" xml:space="preserve"> <value>Add member name</value> </data> <data name="Use_block_body_for_lambda_expressions" xml:space="preserve"> <value>Use block body for lambda expressions</value> </data> <data name="Use_expression_body_for_lambda_expressions" xml:space="preserve"> <value>Use expression body for lambda expressions</value> </data> <data name="Convert_to_linq_call_form" xml:space="preserve"> <value>Convert to LINQ (call form)</value> </data> <data name="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application" xml:space="preserve"> <value>Adding a method with an explicit interface specifier requires restarting the application.</value> </data> <data name="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1" xml:space="preserve"> <value>Modifying source file '{0}' requires restarting the application due to internal error: {1}</value> <comment>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</comment> </data> <data name="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big" xml:space="preserve"> <value>Modifying source file '{0}' requires restarting the application because the file is too big.</value> </data> <data name="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1" xml:space="preserve"> <value>Modifying the body of {0} requires restarting the application due to internal error: {1}</value> <comment>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</comment> </data> <data name="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements" xml:space="preserve"> <value>Modifying the body of {0} requires restarting the application because the body has too many statements.</value> </data> <data name="Change_namespace_to_0" xml:space="preserve"> <value>Change namespace to '{0}'</value> </data> <data name="Move_file_to_0" xml:space="preserve"> <value>Move file to '{0}'</value> </data> <data name="Move_file_to_project_root_folder" xml:space="preserve"> <value>Move file to project root folder</value> </data> <data name="Move_to_namespace" xml:space="preserve"> <value>Move to namespace...</value> </data> <data name="Change_to_global_namespace" xml:space="preserve"> <value>Change to global namespace</value> </data> <data name="Warning_colon_changing_namespace_may_produce_invalid_code_and_change_code_meaning" xml:space="preserve"> <value>Warning: Changing namespace may produce invalid code and change code meaning.</value> </data> <data name="Invert_conditional" xml:space="preserve"> <value>Invert conditional</value> </data> <data name="Replace_0_with_1" xml:space="preserve"> <value>Replace '{0}' with '{1}' </value> </data> <data name="Align_wrapped_parameters" xml:space="preserve"> <value>Align wrapped parameters</value> </data> <data name="Indent_all_parameters" xml:space="preserve"> <value>Indent all parameters</value> </data> <data name="Indent_wrapped_parameters" xml:space="preserve"> <value>Indent wrapped parameters</value> </data> <data name="Unwrap_all_parameters" xml:space="preserve"> <value>Unwrap all parameters</value> </data> <data name="Unwrap_and_indent_all_parameters" xml:space="preserve"> <value>Unwrap and indent all parameters</value> </data> <data name="Wrap_every_parameter" xml:space="preserve"> <value>Wrap every parameter</value> </data> <data name="Wrap_long_parameter_list" xml:space="preserve"> <value>Wrap long parameter list</value> </data> <data name="Unwrap_parameter_list" xml:space="preserve"> <value>Unwrap parameter list</value> </data> <data name="Align_wrapped_arguments" xml:space="preserve"> <value>Align wrapped arguments</value> </data> <data name="Indent_all_arguments" xml:space="preserve"> <value>Indent all arguments</value> </data> <data name="Indent_wrapped_arguments" xml:space="preserve"> <value>Indent wrapped arguments</value> </data> <data name="Unwrap_all_arguments" xml:space="preserve"> <value>Unwrap all arguments</value> </data> <data name="Unwrap_and_indent_all_arguments" xml:space="preserve"> <value>Unwrap and indent all arguments</value> </data> <data name="Wrap_every_argument" xml:space="preserve"> <value>Wrap every argument</value> </data> <data name="Wrap_long_argument_list" xml:space="preserve"> <value>Wrap long argument list</value> </data> <data name="Unwrap_argument_list" xml:space="preserve"> <value>Unwrap argument list</value> </data> <data name="Introduce_constant" xml:space="preserve"> <value>Introduce constant</value> </data> <data name="Introduce_field" xml:space="preserve"> <value>Introduce field</value> </data> <data name="Introduce_local" xml:space="preserve"> <value>Introduce local</value> </data> <data name="Introduce_query_variable" xml:space="preserve"> <value>Introduce query variable</value> </data> <data name="Failed_to_analyze_data_flow_for_0" xml:space="preserve"> <value>Failed to analyze data-flow for: {0}</value> </data> <data name="Fix_formatting" xml:space="preserve"> <value>Fix formatting</value> </data> <data name="Split_into_nested_0_statements" xml:space="preserve"> <value>Split into nested '{0}' statements</value> </data> <data name="Merge_with_outer_0_statement" xml:space="preserve"> <value>Merge with outer '{0}' statement</value> </data> <data name="Split_into_consecutive_0_statements" xml:space="preserve"> <value>Split into consecutive '{0}' statements</value> </data> <data name="Merge_with_previous_0_statement" xml:space="preserve"> <value>Merge with previous '{0}' statement</value> </data> <data name="Unwrap_expression" xml:space="preserve"> <value>Unwrap expression</value> </data> <data name="Wrap_expression" xml:space="preserve"> <value>Wrap expression</value> </data> <data name="Wrapping" xml:space="preserve"> <value>Wrapping</value> </data> <data name="Merge_with_nested_0_statement" xml:space="preserve"> <value>Merge with nested '{0}' statement</value> </data> <data name="Merge_with_next_0_statement" xml:space="preserve"> <value>Merge with next '{0}' statement</value> </data> <data name="Pull_0_up" xml:space="preserve"> <value>Pull '{0}' up</value> </data> <data name="Pull_members_up_to_base_type" xml:space="preserve"> <value>Pull members up to base type...</value> </data> <data name="Unwrap_call_chain" xml:space="preserve"> <value>Unwrap call chain</value> </data> <data name="Wrap_call_chain" xml:space="preserve"> <value>Wrap call chain</value> </data> <data name="Wrap_long_call_chain" xml:space="preserve"> <value>Wrap long call chain</value> </data> <data name="Pull_0_up_to_1" xml:space="preserve"> <value>Pull '{0}' up to '{1}'</value> </data> <data name="Wrap_and_align_expression" xml:space="preserve"> <value>Wrap and align expression</value> </data> <data name="Move_contents_to_namespace" xml:space="preserve"> <value>Move contents to namespace...</value> </data> <data name="Add_optional_parameter_to_constructor" xml:space="preserve"> <value>Add optional parameter to constructor</value> </data> <data name="Add_parameter_to_constructor" xml:space="preserve"> <value>Add parameter to constructor</value> </data> <data name="Target_type_matches" xml:space="preserve"> <value>Target type matches</value> </data> <data name="Generate_parameter_0" xml:space="preserve"> <value>Generate parameter '{0}'</value> </data> <data name="Generate_parameter_0_and_overrides_implementations" xml:space="preserve"> <value>Generate parameter '{0}' (and overrides/implementations)</value> </data> <data name="in_Source_attribute" xml:space="preserve"> <value>in Source (attribute)</value> </data> <data name="StreamMustSupportReadAndSeek" xml:space="preserve"> <value>Stream must support read and seek operations.</value> </data> <data name="MethodMustReturnStreamThatSupportsReadAndSeek" xml:space="preserve"> <value>{0} must return a stream that supports read and seek operations.</value> </data> <data name="RudeEdit" xml:space="preserve"> <value>Rude edit</value> </data> <data name="EditAndContinueDisallowedByModule" xml:space="preserve"> <value>Edit and Continue disallowed by module</value> </data> <data name="CannotApplyChangesUnexpectedError" xml:space="preserve"> <value>Cannot apply changes -- unexpected error: '{0}'</value> </data> <data name="ErrorReadingFile" xml:space="preserve"> <value>Error while reading file '{0}': {1}</value> </data> <data name="EditAndContinueDisallowedByProject" xml:space="preserve"> <value>Changes made in project '{0}' require restarting the application: {1}</value> </data> <data name="ChangesNotAppliedWhileRunning" xml:space="preserve"> <value>Changes made in project '{0}' will not be applied while the application is running</value> </data> <data name="DocumentIsOutOfSyncWithDebuggee" xml:space="preserve"> <value>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</value> </data> <data name="UnableToReadSourceFileOrPdb" xml:space="preserve"> <value>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</value> </data> <data name="ChangesDisallowedWhileStoppedAtException" xml:space="preserve"> <value>Changes are not allowed while stopped at exception</value> </data> <data name="Wrap_and_align_call_chain" xml:space="preserve"> <value>Wrap and align call chain</value> </data> <data name="Wrap_and_align_long_call_chain" xml:space="preserve"> <value>Wrap and align long call chain</value> </data> <data name="Warning_colon_semantics_may_change_when_converting_statement" xml:space="preserve"> <value>Warning: Semantics may change when converting statement.</value> </data> <data name="Add_null_checks_for_all_parameters" xml:space="preserve"> <value>Add null checks for all parameters</value> </data> <data name="Implement_0_implicitly" xml:space="preserve"> <value>Implement '{0}' implicitly</value> </data> <data name="Implement_all_interfaces_implicitly" xml:space="preserve"> <value>Implement all interfaces implicitly</value> </data> <data name="Implement_implicitly" xml:space="preserve"> <value>Implement implicitly</value> </data> <data name="Implement_0_explicitly" xml:space="preserve"> <value>Implement '{0}' explicitly</value> </data> <data name="Make_member_static" xml:space="preserve"> <value>Make static</value> </data> <data name="ChangeSignature_NewParameterIntroduceTODOVariable" xml:space="preserve"> <value>TODO</value> <comment>"TODO" is an indication that there is work still to be done.</comment> </data> <data name="ChangeSignature_NewParameterOmitValue" xml:space="preserve"> <value>&lt;omit&gt;</value> </data> <data name="Value_colon" xml:space="preserve"> <value>Value:</value> </data> <data name="Implement_through_0" xml:space="preserve"> <value>Implement through '{0}'</value> </data> <data name="Implement_all_interfaces_explicitly" xml:space="preserve"> <value>Implement all interfaces explicitly</value> </data> <data name="Implement_explicitly" xml:space="preserve"> <value>Implement explicitly</value> </data> <data name="Resolve_conflict_markers" xml:space="preserve"> <value>Resolve conflict markers</value> </data> <data name="Base_classes_contain_inaccessible_unimplemented_members" xml:space="preserve"> <value>Base classes contain inaccessible unimplemented members</value> </data> <data name="Add_DebuggerDisplay_attribute" xml:space="preserve"> <value>Add 'DebuggerDisplay' attribute</value> <comment>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</comment> </data> <data name="Do_not_change_this_code_Put_cleanup_code_in_0_method" xml:space="preserve"> <value>Do not change this code. Put cleanup code in '{0}' method</value> </data> <data name="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer" xml:space="preserve"> <value>TODO: free unmanaged resources (unmanaged objects) and override finalizer</value> </data> <data name="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources" xml:space="preserve"> <value>TODO: override finalizer only if '{0}' has code to free unmanaged resources</value> </data> <data name="AM_PM_abbreviated" xml:space="preserve"> <value>AM/PM (abbreviated)</value> </data> <data name="AM_PM_abbreviated_description" xml:space="preserve"> <value>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</value> </data> <data name="AM_PM_full" xml:space="preserve"> <value>AM/PM (full)</value> </data> <data name="AM_PM_full_description" xml:space="preserve"> <value>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</value> </data> <data name="date_separator" xml:space="preserve"> <value>date separator</value> </data> <data name="date_separator_description" xml:space="preserve"> <value>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</value> </data> <data name="day_of_the_month_1_2_digits" xml:space="preserve"> <value>day of the month (1-2 digits)</value> </data> <data name="day_of_the_month_1_2_digits_description" xml:space="preserve"> <value>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</value> </data> <data name="day_of_the_month_2_digits" xml:space="preserve"> <value>day of the month (2 digits)</value> </data> <data name="day_of_the_month_2_digits_description" xml:space="preserve"> <value>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</value> </data> <data name="day_of_the_week_abbreviated" xml:space="preserve"> <value>day of the week (abbreviated)</value> </data> <data name="day_of_the_week_abbreviated_description" xml:space="preserve"> <value>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</value> </data> <data name="day_of_the_week_full" xml:space="preserve"> <value>day of the week (full)</value> </data> <data name="day_of_the_week_full_description" xml:space="preserve"> <value>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</value> </data> <data name="full_long_date_time" xml:space="preserve"> <value>full long date/time</value> </data> <data name="full_long_date_time_description" xml:space="preserve"> <value>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</value> </data> <data name="full_short_date_time" xml:space="preserve"> <value>full short date/time</value> </data> <data name="full_short_date_time_description" xml:space="preserve"> <value>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</value> </data> <data name="general_long_date_time" xml:space="preserve"> <value>general long date/time</value> </data> <data name="general_long_date_time_description" xml:space="preserve"> <value>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</value> </data> <data name="general_short_date_time" xml:space="preserve"> <value>general short date/time</value> </data> <data name="general_short_date_time_description" xml:space="preserve"> <value>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</value> </data> <data name="long_date" xml:space="preserve"> <value>long date</value> </data> <data name="long_date_description" xml:space="preserve"> <value>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</value> </data> <data name="long_time" xml:space="preserve"> <value>long time</value> </data> <data name="long_time_description" xml:space="preserve"> <value>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</value> </data> <data name="minute_1_2_digits" xml:space="preserve"> <value>minute (1-2 digits)</value> </data> <data name="minute_1_2_digits_description" xml:space="preserve"> <value>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</value> </data> <data name="minute_2_digits" xml:space="preserve"> <value>minute (2 digits)</value> </data> <data name="minute_2_digits_description" xml:space="preserve"> <value>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</value> </data> <data name="month_1_2_digits" xml:space="preserve"> <value>month (1-2 digits)</value> </data> <data name="month_1_2_digits_description" xml:space="preserve"> <value>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</value> </data> <data name="month_2_digits" xml:space="preserve"> <value>month (2 digits)</value> </data> <data name="month_2_digits_description" xml:space="preserve"> <value>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</value> </data> <data name="month_abbreviated" xml:space="preserve"> <value>month (abbreviated)</value> </data> <data name="month_abbreviated_description" xml:space="preserve"> <value>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</value> </data> <data name="month_day" xml:space="preserve"> <value>month day</value> </data> <data name="month_day_description" xml:space="preserve"> <value>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</value> </data> <data name="month_full" xml:space="preserve"> <value>month (full)</value> </data> <data name="month_full_description" xml:space="preserve"> <value>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</value> </data> <data name="period_era" xml:space="preserve"> <value>period/era</value> </data> <data name="period_era_description" xml:space="preserve"> <value>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</value> </data> <data name="rfc1123_date_time" xml:space="preserve"> <value>rfc1123 date/time</value> </data> <data name="rfc1123_date_time_description" xml:space="preserve"> <value>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</value> </data> <data name="round_trip_date_time" xml:space="preserve"> <value>round-trip date/time</value> </data> <data name="round_trip_date_time_description" xml:space="preserve"> <value>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</value> </data> <data name="second_1_2_digits" xml:space="preserve"> <value>second (1-2 digits)</value> </data> <data name="second_1_2_digits_description" xml:space="preserve"> <value>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</value> </data> <data name="second_2_digits" xml:space="preserve"> <value>second (2 digits)</value> </data> <data name="second_2_digits_description" xml:space="preserve"> <value>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</value> </data> <data name="short_date" xml:space="preserve"> <value>short date</value> </data> <data name="short_date_description" xml:space="preserve"> <value>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</value> </data> <data name="short_time" xml:space="preserve"> <value>short time</value> </data> <data name="short_time_description" xml:space="preserve"> <value>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</value> </data> <data name="sortable_date_time" xml:space="preserve"> <value>sortable date/time</value> </data> <data name="sortable_date_time_description" xml:space="preserve"> <value>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</value> </data> <data name="time_separator" xml:space="preserve"> <value>time separator</value> </data> <data name="time_separator_description" xml:space="preserve"> <value>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</value> </data> <data name="time_zone" xml:space="preserve"> <value>time zone</value> </data> <data name="time_zone_description" xml:space="preserve"> <value>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</value> </data> <data name="universal_full_date_time" xml:space="preserve"> <value>universal full date/time</value> </data> <data name="universal_full_date_time_description" xml:space="preserve"> <value>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</value> </data> <data name="universal_sortable_date_time" xml:space="preserve"> <value>universal sortable date/time</value> </data> <data name="universal_sortable_date_time_description" xml:space="preserve"> <value>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</value> </data> <data name="utc_hour_and_minute_offset" xml:space="preserve"> <value>utc hour and minute offset</value> </data> <data name="utc_hour_and_minute_offset_description" xml:space="preserve"> <value>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</value> </data> <data name="utc_hour_offset_1_2_digits" xml:space="preserve"> <value>utc hour offset (1-2 digits)</value> </data> <data name="utc_hour_offset_1_2_digits_description" xml:space="preserve"> <value>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</value> </data> <data name="utc_hour_offset_2_digits" xml:space="preserve"> <value>utc hour offset (2 digits)</value> </data> <data name="utc_hour_offset_2_digits_description" xml:space="preserve"> <value>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</value> </data> <data name="year_1_2_digits" xml:space="preserve"> <value>year (1-2 digits)</value> </data> <data name="year_1_2_digits_description" xml:space="preserve"> <value>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</value> </data> <data name="year_2_digits" xml:space="preserve"> <value>year (2 digits)</value> </data> <data name="year_2_digits_description" xml:space="preserve"> <value>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</value> </data> <data name="year_3_4_digits" xml:space="preserve"> <value>year (3-4 digits)</value> </data> <data name="year_3_4_digits_description" xml:space="preserve"> <value>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</value> </data> <data name="year_4_digits" xml:space="preserve"> <value>year (4 digits)</value> </data> <data name="year_4_digits_description" xml:space="preserve"> <value>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</value> </data> <data name="year_5_digits" xml:space="preserve"> <value>year (5 digits)</value> </data> <data name="year_5_digits_description" xml:space="preserve"> <value>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</value> </data> <data name="year_month" xml:space="preserve"> <value>year month</value> </data> <data name="year_month_description" xml:space="preserve"> <value>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</value> </data> <data name="_10000000ths_of_a_second" xml:space="preserve"> <value>10,000,000ths of a second</value> </data> <data name="_10000000ths_of_a_second_description" xml:space="preserve"> <value>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_10000000ths_of_a_second_non_zero" xml:space="preserve"> <value>10,000,000ths of a second (non-zero)</value> </data> <data name="_10000000ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_1000000ths_of_a_second" xml:space="preserve"> <value>1,000,000ths of a second</value> </data> <data name="_1000000ths_of_a_second_description" xml:space="preserve"> <value>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_1000000ths_of_a_second_non_zero" xml:space="preserve"> <value>1,000,000ths of a second (non-zero)</value> </data> <data name="_1000000ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_100000ths_of_a_second" xml:space="preserve"> <value>100,000ths of a second</value> </data> <data name="_100000ths_of_a_second_description" xml:space="preserve"> <value>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_100000ths_of_a_second_non_zero" xml:space="preserve"> <value>100,000ths of a second (non-zero)</value> </data> <data name="_100000ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_10000ths_of_a_second" xml:space="preserve"> <value>10,000ths of a second</value> </data> <data name="_10000ths_of_a_second_description" xml:space="preserve"> <value>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_10000ths_of_a_second_non_zero" xml:space="preserve"> <value>10,000ths of a second (non-zero)</value> </data> <data name="_10000ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</value> </data> <data name="_1000ths_of_a_second" xml:space="preserve"> <value>1,000ths of a second</value> </data> <data name="_1000ths_of_a_second_description" xml:space="preserve"> <value>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</value> </data> <data name="_1000ths_of_a_second_non_zero" xml:space="preserve"> <value>1,000ths of a second (non-zero)</value> </data> <data name="_1000ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</value> </data> <data name="_100ths_of_a_second" xml:space="preserve"> <value>100ths of a second</value> </data> <data name="_100ths_of_a_second_description" xml:space="preserve"> <value>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</value> </data> <data name="_100ths_of_a_second_non_zero" xml:space="preserve"> <value>100ths of a second (non-zero)</value> </data> <data name="_100ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</value> </data> <data name="_10ths_of_a_second" xml:space="preserve"> <value>10ths of a second</value> </data> <data name="_10ths_of_a_second_description" xml:space="preserve"> <value>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</value> <comment>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</comment> </data> <data name="_10ths_of_a_second_non_zero" xml:space="preserve"> <value>10ths of a second (non-zero)</value> </data> <data name="_10ths_of_a_second_non_zero_description" xml:space="preserve"> <value>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</value> </data> <data name="_12_hour_clock_1_2_digits" xml:space="preserve"> <value>12 hour clock (1-2 digits)</value> </data> <data name="_12_hour_clock_1_2_digits_description" xml:space="preserve"> <value>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</value> </data> <data name="_12_hour_clock_2_digits" xml:space="preserve"> <value>12 hour clock (2 digits)</value> </data> <data name="_12_hour_clock_2_digits_description" xml:space="preserve"> <value>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</value> </data> <data name="_24_hour_clock_1_2_digits" xml:space="preserve"> <value>24 hour clock (1-2 digits)</value> </data> <data name="_24_hour_clock_1_2_digits_description" xml:space="preserve"> <value>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</value> </data> <data name="_24_hour_clock_2_digits" xml:space="preserve"> <value>24 hour clock (2 digits)</value> </data> <data name="_24_hour_clock_2_digits_description" xml:space="preserve"> <value>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</value> </data> <data name="Implement_remaining_members_explicitly" xml:space="preserve"> <value>Implement remaining members explicitly</value> </data> <data name="Generate_for_0" xml:space="preserve"> <value>Generate for '{0}'</value> </data> <data name="Generate_comparison_operators" xml:space="preserve"> <value>Generate comparison operators</value> </data> <data name="Create_and_assign_remaining_as_fields" xml:space="preserve"> <value>Create and assign remaining as fields</value> </data> <data name="Create_and_assign_remaining_as_properties" xml:space="preserve"> <value>Create and assign remaining as properties</value> </data> <data name="Add_explicit_cast" xml:space="preserve"> <value>Add explicit cast</value> </data> <data name="Example" xml:space="preserve"> <value>Example:</value> <comment>Singular form when we want to show an example, but only have one to show.</comment> </data> <data name="Examples" xml:space="preserve"> <value>Examples:</value> <comment>Plural form when we have multiple examples to show.</comment> </data> <data name="Alternation_conditions_cannot_be_comments" xml:space="preserve"> <value>Alternation conditions cannot be comments</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</comment> </data> <data name="Alternation_conditions_do_not_capture_and_cannot_be_named" xml:space="preserve"> <value>Alternation conditions do not capture and cannot be named</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</comment> </data> <data name="A_subtraction_must_be_the_last_element_in_a_character_class" xml:space="preserve"> <value>A subtraction must be the last element in a character class</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</comment> </data> <data name="Cannot_include_class_0_in_character_range" xml:space="preserve"> <value>Cannot include class \{0} in character range</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</comment> </data> <data name="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue" xml:space="preserve"> <value>Capture group numbers must be less than or equal to Int32.MaxValue</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</comment> </data> <data name="Capture_number_cannot_be_zero" xml:space="preserve"> <value>Capture number cannot be zero</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</comment> </data> <data name="Illegal_backslash_at_end_of_pattern" xml:space="preserve"> <value>Illegal \ at end of pattern</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</comment> </data> <data name="Illegal_x_y_with_x_less_than_y" xml:space="preserve"> <value>Illegal {x,y} with x &gt; y</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</comment> </data> <data name="Incomplete_character_escape" xml:space="preserve"> <value>Incomplete \p{X} character escape</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</comment> </data> <data name="Insufficient_hexadecimal_digits" xml:space="preserve"> <value>Insufficient hexadecimal digits</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</comment> </data> <data name="Invalid_group_name_Group_names_must_begin_with_a_word_character" xml:space="preserve"> <value>Invalid group name: Group names must begin with a word character</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</comment> </data> <data name="Malformed" xml:space="preserve"> <value>malformed</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</comment> </data> <data name="Malformed_character_escape" xml:space="preserve"> <value>Malformed \p{X} character escape</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</comment> </data> <data name="Malformed_named_back_reference" xml:space="preserve"> <value>Malformed \k&lt;...&gt; named back reference</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</comment> </data> <data name="Missing_control_character" xml:space="preserve"> <value>Missing control character</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</comment> </data> <data name="Nested_quantifier_0" xml:space="preserve"> <value>Nested quantifier {0}</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</comment> </data> <data name="Not_enough_close_parens" xml:space="preserve"> <value>Not enough )'s</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</comment> </data> <data name="Quantifier_x_y_following_nothing" xml:space="preserve"> <value>Quantifier {x,y} following nothing</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</comment> </data> <data name="Reference_to_undefined_group" xml:space="preserve"> <value>reference to undefined group</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</comment> </data> <data name="Reference_to_undefined_group_name_0" xml:space="preserve"> <value>Reference to undefined group name {0}</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</comment> </data> <data name="Reference_to_undefined_group_number_0" xml:space="preserve"> <value>Reference to undefined group number {0}</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</comment> </data> <data name="Too_many_bars_in_conditional_grouping" xml:space="preserve"> <value>Too many | in (?()|)</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</comment> </data> <data name="Too_many_close_parens" xml:space="preserve"> <value>Too many )'s</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</comment> </data> <data name="Unknown_property" xml:space="preserve"> <value>Unknown property</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</comment> </data> <data name="Unknown_property_0" xml:space="preserve"> <value>Unknown property '{0}'</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</comment> </data> <data name="Unrecognized_control_character" xml:space="preserve"> <value>Unrecognized control character</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</comment> </data> <data name="Unrecognized_escape_sequence_0" xml:space="preserve"> <value>Unrecognized escape sequence \{0}</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</comment> </data> <data name="Unrecognized_grouping_construct" xml:space="preserve"> <value>Unrecognized grouping construct</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</comment> </data> <data name="Unterminated_character_class_set" xml:space="preserve"> <value>Unterminated [] set</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</comment> </data> <data name="Unterminated_regex_comment" xml:space="preserve"> <value>Unterminated (?#...) comment</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</comment> </data> <data name="x_y_range_in_reverse_order" xml:space="preserve"> <value>[x-y] range in reverse order</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</comment> </data> <data name="Regex_issue_0" xml:space="preserve"> <value>Regex issue: {0}</value> <comment>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</comment> </data> <data name="Regex_number_decimal_digit" xml:space="preserve"> <value>number, decimal digit</value> </data> <data name="Regex_number_letter" xml:space="preserve"> <value>number, letter</value> </data> <data name="Regex_number_other" xml:space="preserve"> <value>number, other</value> </data> <data name="Regex_other_control" xml:space="preserve"> <value>other, control</value> </data> <data name="Regex_other_format" xml:space="preserve"> <value>other, format</value> </data> <data name="Regex_other_not_assigned" xml:space="preserve"> <value>other, not assigned</value> </data> <data name="Regex_other_private_use" xml:space="preserve"> <value>other, private use</value> </data> <data name="Regex_other_surrogate" xml:space="preserve"> <value>other, surrogate</value> </data> <data name="Regex_punctuation_close" xml:space="preserve"> <value>punctuation, close</value> </data> <data name="Regex_punctuation_connector" xml:space="preserve"> <value>punctuation, connector</value> </data> <data name="Regex_punctuation_dash" xml:space="preserve"> <value>punctuation, dash</value> </data> <data name="Regex_punctuation_final_quote" xml:space="preserve"> <value>punctuation, final quote</value> </data> <data name="Regex_punctuation_initial_quote" xml:space="preserve"> <value>punctuation, initial quote</value> </data> <data name="Regex_punctuation_open" xml:space="preserve"> <value>punctuation, open</value> </data> <data name="Regex_punctuation_other" xml:space="preserve"> <value>punctuation, other</value> </data> <data name="Regex_separator_line" xml:space="preserve"> <value>separator, line</value> </data> <data name="Regex_separator_paragraph" xml:space="preserve"> <value>separator, paragraph</value> </data> <data name="Regex_separator_space" xml:space="preserve"> <value>separator, space</value> </data> <data name="Regex_symbol_currency" xml:space="preserve"> <value>symbol, currency</value> </data> <data name="Regex_symbol_math" xml:space="preserve"> <value>symbol, math</value> </data> <data name="Regex_symbol_modifier" xml:space="preserve"> <value>symbol, modifier</value> </data> <data name="Regex_symbol_other" xml:space="preserve"> <value>symbol, other</value> </data> <data name="Regex_letter_lowercase" xml:space="preserve"> <value>letter, lowercase</value> </data> <data name="Regex_letter_modifier" xml:space="preserve"> <value>letter, modifier</value> </data> <data name="Regex_letter_other" xml:space="preserve"> <value>letter, other</value> </data> <data name="Regex_letter_titlecase" xml:space="preserve"> <value>letter, titlecase</value> </data> <data name="Regex_mark_enclosing" xml:space="preserve"> <value>mark, enclosing</value> </data> <data name="Regex_mark_nonspacing" xml:space="preserve"> <value>mark, nonspacing</value> </data> <data name="Regex_mark_spacing_combining" xml:space="preserve"> <value>mark, spacing combining</value> </data> <data name="Regex_contiguous_matches_long" xml:space="preserve"> <value>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</value> </data> <data name="Regex_contiguous_matches_short" xml:space="preserve"> <value>contiguous matches</value> </data> <data name="Regex_end_of_string_only_long" xml:space="preserve"> <value>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</value> </data> <data name="Regex_end_of_string_only_short" xml:space="preserve"> <value>end of string only</value> </data> <data name="Regex_end_of_string_or_before_ending_newline_long" xml:space="preserve"> <value>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</value> </data> <data name="Regex_end_of_string_or_before_ending_newline_short" xml:space="preserve"> <value>end of string or before ending newline</value> </data> <data name="Regex_non_word_boundary_long" xml:space="preserve"> <value>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</value> </data> <data name="Regex_non_word_boundary_short" xml:space="preserve"> <value>non-word boundary</value> </data> <data name="Regex_start_of_string_only_long" xml:space="preserve"> <value>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</value> </data> <data name="Regex_start_of_string_only_short" xml:space="preserve"> <value>start of string only</value> </data> <data name="Regex_word_boundary_long" xml:space="preserve"> <value>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</value> </data> <data name="Regex_word_boundary_short" xml:space="preserve"> <value>word boundary</value> </data> <data name="Regex_start_of_string_or_line_long" xml:space="preserve"> <value>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</value> </data> <data name="Regex_start_of_string_or_line_short" xml:space="preserve"> <value>start of string or line</value> </data> <data name="Regex_end_of_string_or_line_long" xml:space="preserve"> <value>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</value> </data> <data name="Regex_end_of_string_or_line_short" xml:space="preserve"> <value>end of string or line</value> </data> <data name="Regex_any_character_group_long" xml:space="preserve"> <value>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</value> </data> <data name="Regex_any_character_group_short" xml:space="preserve"> <value>any character</value> </data> <data name="Regex_backspace_character_long" xml:space="preserve"> <value>Matches a backspace character, \u0008</value> </data> <data name="Regex_backspace_character_short" xml:space="preserve"> <value>backspace character</value> </data> <data name="Regex_bell_character_long" xml:space="preserve"> <value>Matches a bell (alarm) character, \u0007</value> </data> <data name="Regex_bell_character_short" xml:space="preserve"> <value>bell character</value> </data> <data name="Regex_carriage_return_character_long" xml:space="preserve"> <value>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</value> </data> <data name="Regex_carriage_return_character_short" xml:space="preserve"> <value>carriage-return character</value> </data> <data name="Regex_control_character_long" xml:space="preserve"> <value>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</value> </data> <data name="Regex_control_character_short" xml:space="preserve"> <value>control character</value> </data> <data name="Regex_decimal_digit_character_long" xml:space="preserve"> <value>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</value> </data> <data name="Regex_decimal_digit_character_short" xml:space="preserve"> <value>decimal-digit character</value> </data> <data name="Regex_escape_character_long" xml:space="preserve"> <value>Matches an escape character, \u001B</value> </data> <data name="Regex_escape_character_short" xml:space="preserve"> <value>escape character</value> </data> <data name="Regex_form_feed_character_long" xml:space="preserve"> <value>Matches a form-feed character, \u000C</value> </data> <data name="Regex_form_feed_character_short" xml:space="preserve"> <value>form-feed character</value> </data> <data name="Regex_hexadecimal_escape_long" xml:space="preserve"> <value>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</value> </data> <data name="Regex_hexadecimal_escape_short" xml:space="preserve"> <value>hexadecimal escape</value> </data> <data name="Regex_letter_uppercase" xml:space="preserve"> <value>letter, uppercase</value> </data> <data name="Regex_matched_subexpression_long" xml:space="preserve"> <value>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</value> </data> <data name="Regex_matched_subexpression_short" xml:space="preserve"> <value>matched subexpression</value> </data> <data name="Regex_negative_character_group_long" xml:space="preserve"> <value>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</value> </data> <data name="Regex_negative_character_group_short" xml:space="preserve"> <value>negative character group</value> </data> <data name="Regex_negative_character_range_long" xml:space="preserve"> <value>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</value> </data> <data name="Regex_negative_character_range_short" xml:space="preserve"> <value>negative character range</value> </data> <data name="Regex_negative_unicode_category_long" xml:space="preserve"> <value>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</value> </data> <data name="Regex_negative_unicode_category_short" xml:space="preserve"> <value>negative unicode category</value> </data> <data name="Regex_new_line_character_long" xml:space="preserve"> <value>Matches a new-line character, \u000A</value> </data> <data name="Regex_new_line_character_short" xml:space="preserve"> <value>new-line character</value> </data> <data name="Regex_non_digit_character_long" xml:space="preserve"> <value>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</value> </data> <data name="Regex_non_digit_character_short" xml:space="preserve"> <value>non-digit character</value> </data> <data name="Regex_non_white_space_character_long" xml:space="preserve"> <value>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</value> </data> <data name="Regex_non_white_space_character_short" xml:space="preserve"> <value>non-white-space character</value> </data> <data name="Regex_non_word_character_long" xml:space="preserve"> <value>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</value> <comment>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </comment> </data> <data name="Regex_non_word_character_short" xml:space="preserve"> <value>non-word character</value> </data> <data name="Regex_positive_character_group_long" xml:space="preserve"> <value>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</value> </data> <data name="Regex_positive_character_group_short" xml:space="preserve"> <value>positive character group</value> </data> <data name="Regex_positive_character_range_long" xml:space="preserve"> <value>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </value> </data> <data name="Regex_positive_character_range_short" xml:space="preserve"> <value>positive character range</value> </data> <data name="Regex_subexpression" xml:space="preserve"> <value>subexpression</value> </data> <data name="Regex_tab_character_long" xml:space="preserve"> <value>Matches a tab character, \u0009</value> </data> <data name="Regex_tab_character_short" xml:space="preserve"> <value>tab character</value> </data> <data name="Regex_unicode_category_long" xml:space="preserve"> <value>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</value> </data> <data name="Regex_unicode_category_short" xml:space="preserve"> <value>unicode category</value> </data> <data name="Regex_unicode_escape_long" xml:space="preserve"> <value>Matches a UTF-16 code unit whose value is #### hexadecimal.</value> </data> <data name="Regex_unicode_escape_short" xml:space="preserve"> <value>unicode escape</value> </data> <data name="Regex_vertical_tab_character_long" xml:space="preserve"> <value>Matches a vertical-tab character, \u000B</value> </data> <data name="Regex_vertical_tab_character_short" xml:space="preserve"> <value>vertical-tab character</value> </data> <data name="Regex_white_space_character_long" xml:space="preserve"> <value>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</value> </data> <data name="Regex_white_space_character_short" xml:space="preserve"> <value>white-space character</value> </data> <data name="Regex_word_character_long" xml:space="preserve"> <value>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</value> <comment>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</comment> </data> <data name="Regex_word_character_short" xml:space="preserve"> <value>word character</value> </data> <data name="Regex_alternation_long" xml:space="preserve"> <value>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</value> </data> <data name="Regex_alternation_short" xml:space="preserve"> <value>alternation</value> </data> <data name="Regex_balancing_group_long" xml:space="preserve"> <value>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</value> </data> <data name="Regex_balancing_group_short" xml:space="preserve"> <value>balancing group</value> </data> <data name="Regex_comment" xml:space="preserve"> <value>comment</value> </data> <data name="Regex_conditional_expression_match_long" xml:space="preserve"> <value>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</value> </data> <data name="Regex_conditional_expression_match_short" xml:space="preserve"> <value>conditional expression match</value> </data> <data name="Regex_conditional_group_match_long" xml:space="preserve"> <value>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</value> </data> <data name="Regex_conditional_group_match_short" xml:space="preserve"> <value>conditional group match</value> </data> <data name="Regex_end_of_line_comment_long" xml:space="preserve"> <value>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</value> </data> <data name="Regex_end_of_line_comment_short" xml:space="preserve"> <value>end-of-line comment</value> </data> <data name="Regex_expression" xml:space="preserve"> <value>expression</value> </data> <data name="Regex_group_options_long" xml:space="preserve"> <value>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</value> </data> <data name="Regex_group_options_short" xml:space="preserve"> <value>group options</value> </data> <data name="Regex_inline_comment_long" xml:space="preserve"> <value>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</value> </data> <data name="Regex_inline_comment_short" xml:space="preserve"> <value>inline comment</value> </data> <data name="Regex_name" xml:space="preserve"> <value>name</value> </data> <data name="Regex_name1" xml:space="preserve"> <value>name1</value> </data> <data name="Regex_name2" xml:space="preserve"> <value>name2</value> </data> <data name="Regex_named_backreference_long" xml:space="preserve"> <value>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</value> </data> <data name="Regex_named_backreference_short" xml:space="preserve"> <value>named backreference</value> </data> <data name="Regex_named_matched_subexpression_long" xml:space="preserve"> <value>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</value> </data> <data name="Regex_named_matched_subexpression_short" xml:space="preserve"> <value>named matched subexpression</value> </data> <data name="Regex_name_or_number" xml:space="preserve"> <value>name-or-number</value> </data> <data name="Regex_no" xml:space="preserve"> <value>no</value> </data> <data name="Regex_atomic_group_long" xml:space="preserve"> <value>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</value> </data> <data name="Regex_atomic_group_short" xml:space="preserve"> <value>atomic group</value> </data> <data name="Regex_noncapturing_group_long" xml:space="preserve"> <value>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</value> </data> <data name="Regex_noncapturing_group_short" xml:space="preserve"> <value>noncapturing group</value> </data> <data name="Regex_numbered_backreference_long" xml:space="preserve"> <value>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</value> </data> <data name="Regex_numbered_backreference_short" xml:space="preserve"> <value>numbered backreference</value> </data> <data name="Regex_yes" xml:space="preserve"> <value>yes</value> </data> <data name="Regex_zero_width_negative_lookahead_assertion_long" xml:space="preserve"> <value>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</value> </data> <data name="Regex_zero_width_negative_lookahead_assertion_short" xml:space="preserve"> <value>zero-width negative lookahead assertion</value> </data> <data name="Regex_zero_width_negative_lookbehind_assertion_long" xml:space="preserve"> <value>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</value> </data> <data name="Regex_zero_width_negative_lookbehind_assertion_short" xml:space="preserve"> <value>zero-width negative lookbehind assertion</value> </data> <data name="Regex_zero_width_positive_lookahead_assertion_long" xml:space="preserve"> <value>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</value> </data> <data name="Regex_zero_width_positive_lookahead_assertion_short" xml:space="preserve"> <value>zero-width positive lookahead assertion</value> </data> <data name="Regex_zero_width_positive_lookbehind_assertion_long" xml:space="preserve"> <value>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</value> </data> <data name="Regex_zero_width_positive_lookbehind_assertion_short" xml:space="preserve"> <value>zero-width positive lookbehind assertion</value> </data> <data name="Regex_all_control_characters_long" xml:space="preserve"> <value>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</value> </data> <data name="Regex_all_control_characters_short" xml:space="preserve"> <value>all control characters</value> </data> <data name="Regex_all_diacritic_marks_long" xml:space="preserve"> <value>All diacritic marks. This includes the Mn, Mc, and Me categories.</value> </data> <data name="Regex_all_diacritic_marks_short" xml:space="preserve"> <value>all diacritic marks</value> </data> <data name="Regex_all_letter_characters_long" xml:space="preserve"> <value>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</value> </data> <data name="Regex_all_letter_characters_short" xml:space="preserve"> <value>all letter characters</value> </data> <data name="Regex_all_numbers_long" xml:space="preserve"> <value>All numbers. This includes the Nd, Nl, and No categories.</value> </data> <data name="Regex_all_numbers_short" xml:space="preserve"> <value>all numbers</value> </data> <data name="Regex_all_punctuation_characters_long" xml:space="preserve"> <value>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</value> </data> <data name="Regex_all_punctuation_characters_short" xml:space="preserve"> <value>all punctuation characters</value> </data> <data name="Regex_all_separator_characters_long" xml:space="preserve"> <value>All separator characters. This includes the Zs, Zl, and Zp categories.</value> </data> <data name="Regex_all_separator_characters_short" xml:space="preserve"> <value>all separator characters</value> </data> <data name="Regex_all_symbols_long" xml:space="preserve"> <value>All symbols. This includes the Sm, Sc, Sk, and So categories.</value> </data> <data name="Regex_all_symbols_short" xml:space="preserve"> <value>all symbols</value> </data> <data name="Regex_base_group" xml:space="preserve"> <value>base-group</value> </data> <data name="Regex_character_class_subtraction_long" xml:space="preserve"> <value>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</value> </data> <data name="Regex_character_class_subtraction_short" xml:space="preserve"> <value>character class subtraction</value> </data> <data name="Regex_character_group" xml:space="preserve"> <value>character-group</value> </data> <data name="Regex_excluded_group" xml:space="preserve"> <value>excluded-group</value> </data> <data name="Regex_match_at_least_n_times_lazy_long" xml:space="preserve"> <value>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</value> </data> <data name="Regex_match_at_least_n_times_lazy_short" xml:space="preserve"> <value>match at least 'n' times (lazy)</value> </data> <data name="Regex_match_at_least_n_times_long" xml:space="preserve"> <value>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</value> </data> <data name="Regex_match_at_least_n_times_short" xml:space="preserve"> <value>match at least 'n' times</value> </data> <data name="Regex_match_between_m_and_n_times_lazy_long" xml:space="preserve"> <value>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</value> </data> <data name="Regex_match_between_m_and_n_times_lazy_short" xml:space="preserve"> <value>match at least 'n' times (lazy)</value> </data> <data name="Regex_match_between_m_and_n_times_long" xml:space="preserve"> <value>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</value> </data> <data name="Regex_match_between_m_and_n_times_short" xml:space="preserve"> <value>match between 'm' and 'n' times</value> </data> <data name="Regex_match_exactly_n_times_lazy_long" xml:space="preserve"> <value>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</value> </data> <data name="Regex_match_exactly_n_times_lazy_short" xml:space="preserve"> <value>match exactly 'n' times (lazy)</value> </data> <data name="Regex_match_exactly_n_times_long" xml:space="preserve"> <value>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</value> </data> <data name="Regex_match_exactly_n_times_short" xml:space="preserve"> <value>match exactly 'n' times</value> </data> <data name="Regex_match_one_or_more_times_lazy_long" xml:space="preserve"> <value>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</value> </data> <data name="Regex_match_one_or_more_times_lazy_short" xml:space="preserve"> <value>match one or more times (lazy)</value> </data> <data name="Regex_match_one_or_more_times_long" xml:space="preserve"> <value>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</value> </data> <data name="Regex_match_one_or_more_times_short" xml:space="preserve"> <value>match one or more times</value> </data> <data name="Regex_match_zero_or_more_times_lazy_long" xml:space="preserve"> <value>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</value> </data> <data name="Regex_match_zero_or_more_times_lazy_short" xml:space="preserve"> <value>match zero or more times (lazy)</value> </data> <data name="Regex_match_zero_or_more_times_long" xml:space="preserve"> <value>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</value> </data> <data name="Regex_match_zero_or_more_times_short" xml:space="preserve"> <value>match zero or more times</value> </data> <data name="Regex_match_zero_or_one_time_lazy_long" xml:space="preserve"> <value>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</value> </data> <data name="Regex_match_zero_or_one_time_lazy_short" xml:space="preserve"> <value>match zero or one time (lazy)</value> </data> <data name="Regex_match_zero_or_one_time_long" xml:space="preserve"> <value>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</value> </data> <data name="Regex_match_zero_or_one_time_short" xml:space="preserve"> <value>match zero or one time</value> </data> <data name="Regex_unicode_general_category_0" xml:space="preserve"> <value>Unicode General Category: {0}</value> </data> <data name="Regex_inline_options_long" xml:space="preserve"> <value>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</value> </data> <data name="Regex_inline_options_short" xml:space="preserve"> <value>inline options</value> </data> <data name="_0_cannot_be_null_or_empty" xml:space="preserve"> <value>'{0}' cannot be null or empty.</value> </data> <data name="_0_cannot_be_null_or_whitespace" xml:space="preserve"> <value>'{0}' cannot be null or whitespace.</value> </data> <data name="_0_is_not_null_here" xml:space="preserve"> <value>'{0}' is not null here.</value> </data> <data name="_0_may_be_null_here" xml:space="preserve"> <value>'{0}' may be null here.</value> </data> <data name="ChangeSignature_NewParameterInferValue" xml:space="preserve"> <value>&lt;infer&gt;</value> </data> <data name="Convert_type_to_0" xml:space="preserve"> <value>Convert type to '{0}'</value> </data> <data name="from_metadata" xml:space="preserve"> <value>from metadata</value> </data> <data name="symbol_cannot_be_a_namespace" xml:space="preserve"> <value>'symbol' cannot be a namespace.</value> </data> <data name="Document_must_be_contained_in_the_workspace_that_created_this_service" xml:space="preserve"> <value>Document must be contained in the workspace that created this service</value> </data> <data name="Generate_constructor_in_0_with_fields" xml:space="preserve"> <value>Generate constructor in '{0}' (with fields)</value> </data> <data name="Generate_constructor_in_0_with_properties" xml:space="preserve"> <value>Generate constructor in '{0}' (with properties)</value> </data> <data name="Property_reference_cannot_be_updated" xml:space="preserve"> <value>Property reference cannot be updated</value> </data> <data name="Make_class_abstract" xml:space="preserve"> <value>Make class 'abstract'</value> </data> <data name="Inline_0" xml:space="preserve"> <value>Inline '{0}'</value> </data> <data name="Remove_async_modifier" xml:space="preserve"> <value>Remove 'async' modifier</value> </data> <data name="Extract_base_class" xml:space="preserve"> <value>Extract base class...</value> </data> <data name="Inline_and_keep_0" xml:space="preserve"> <value>Inline and keep '{0}'</value> </data> <data name="Pull_members_up_to_new_base_class" xml:space="preserve"> <value>Pull member(s) up to new base class...</value> </data> <data name="Operators" xml:space="preserve"> <value>Operators</value> </data> <data name="The_assembly_0_containing_type_1_references_NET_Framework" xml:space="preserve"> <value>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</value> </data> <data name="Apply_file_header_preferences" xml:space="preserve"> <value>Apply file header preferences</value> </data> <data name="Apply_object_collection_initialization_preferences" xml:space="preserve"> <value>Apply object/collection initialization preferences</value> </data> <data name="Remove_unnecessary_casts" xml:space="preserve"> <value>Remove unnecessary casts</value> </data> <data name="Remove_unused_variables" xml:space="preserve"> <value>Remove unused variables</value> </data> <data name="Sort_accessibility_modifiers" xml:space="preserve"> <value>Sort accessibility modifiers</value> </data> <data name="Format_document" xml:space="preserve"> <value>Format document</value> </data> <data name="Error_creating_instance_of_CodeFixProvider" xml:space="preserve"> <value>Error creating instance of CodeFixProvider</value> </data> <data name="Error_creating_instance_of_CodeFixProvider_0" xml:space="preserve"> <value>Error creating instance of CodeFixProvider '{0}'</value> </data> <data name="Removal_of_document_not_supported" xml:space="preserve"> <value>Removal of document not supported</value> </data> <data name="in_0_1_2" xml:space="preserve"> <value>in {0} ({1} - {2})</value> </data> <data name="_0_dash_1" xml:space="preserve"> <value>{0} - {1}</value> </data> <data name="member_kind_and_name" xml:space="preserve"> <value>{0} '{1}'</value> <comment>e.g. "method 'M'"</comment> </data> <data name="code" xml:space="preserve"> <value>code</value> </data> <data name="Convert_to_record" xml:space="preserve"> <value>Convert to record</value> </data> <data name="Introduce_parameter" xml:space="preserve"> <value>Introduce parameter</value> </data> <data name="Introduce_parameter_for_0" xml:space="preserve"> <value>Introduce parameter for '{0}'</value> </data> <data name="Introduce_parameter_for_all_occurrences_of_0" xml:space="preserve"> <value>Introduce parameter for all occurrences of '{0}'</value> </data> <data name="into_new_overload" xml:space="preserve"> <value>into new overload</value> </data> <data name="into_extracted_method_to_invoke_at_call_sites" xml:space="preserve"> <value>into extracted method to invoke at call sites</value> </data> <data name="and_update_call_sites_directly" xml:space="preserve"> <value>and update call sites directly</value> </data> <data name="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application" xml:space="preserve"> <value>Implementing a record positional parameter '{0}' as read only requires restarting the application,</value> </data> <data name="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application" xml:space="preserve"> <value>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</value> </data> <data name="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0" xml:space="preserve"> <value>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</value> </data> <data name="Convert_to_record_struct" xml:space="preserve"> <value>Convert to record struct</value> </data> <data name="Edit_and_continue_is_not_supported_by_the_runtime" xml:space="preserve"> <value>Edit and continue is not supported by the runtime.</value> </data> <data name="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime" xml:space="preserve"> <value>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</value> </data> <data name="Making_a_method_an_iterator_requires_restarting_the_application" xml:space="preserve"> <value>Making a method an iterator requires restarting the application.</value> </data> <data name="Making_a_method_asynchronous_requires_restarting_the_application" xml:space="preserve"> <value>Making a method asynchronous requires restarting the application.</value> </data> <data name="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime" xml:space="preserve"> <value>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</value> </data> <data name="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application" xml:space="preserve"> <value>An update that causes the return type of the implicit Main method to change requires restarting the application.</value> <comment>{Locked="Main"} is C# keywords and should not be localized.</comment> </data> <data name="Changing_parameter_types_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing parameter types of {0} requires restarting the application.</value> </data> <data name="Changing_type_parameters_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing type parameters of {0} requires restarting the application.</value> </data> <data name="Changing_constraints_of_0_requires_restarting_the_application" xml:space="preserve"> <value>Changing constraints of {0} requires restarting the application.</value> </data> <data name="No_common_root_node_for_extraction" xml:space="preserve"> <value>No common root node for extraction.</value> </data> <data name="No_valid_selection_to_perform_extraction" xml:space="preserve"> <value>No valid selection to perform extraction.</value> </data> <data name="Selection_does_not_contain_a_valid_token" xml:space="preserve"> <value>Selection does not contain a valid token.</value> </data> <data name="Selection_not_contained_inside_a_type" xml:space="preserve"> <value>Selection not contained inside a type.</value> </data> <data name="Invalid_selection" xml:space="preserve"> <value>Invalid selection.</value> </data> <data name="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime" xml:space="preserve"> <value>Renaming {0} requires restarting the application because it is not supported by the runtime.</value> </data> <data name="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application" xml:space="preserve"> <value>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</value> </data> <data name="ChangesRequiredSynthesizedType" xml:space="preserve"> <value>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</value> </data> </root>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/xlf/FeaturesResources.cs.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="cs" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (zkráceno)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">Specifikátor vlastního formátu t představuje první znak údaje dop/odp. Správný lokalizovaný údaj se načítá z vlastnosti DateTimeFormatInfo.AMDesignator nebo DateTimeFormatInfo.PMDesignator aktuální nebo konkrétní jazykové verze. Údaj dop se používá pro časy od 0:00:00 (půlnoc) do 11:59:59.999. Údaj odp se používá pro časy od 12:00:00 (poledne) do 23:59:59.999. Pokud se specifikátor formátu t použije bez dalších vlastních specifikátorů formátu, interpretuje se jako standardní specifikátor formátu data a času t.</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (úplné)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">Specifikátor vlastního formátu tt (a jakýkoli počet dalších specifikátorů t) představuje celý údaj dop/odp. Správný lokalizovaný údaj se načítá z vlastnosti DateTimeFormatInfo.AMDesignator nebo DateTimeFormatInfo.PMDesignator aktuální nebo konkrétní jazykové verze. Údaj dop se používá pro časy od 0:00:00 (půlnoc) do 11:59:59.999. Údaj odp se používá pro časy od 12:00:00 (poledne) do 23:59:59.999. Ujistěte se, že specifikátor tt použijete pro jazyky, pro které je nezbytné zachovat rozlišení mezi dop a odp. Příkladem může být japonština, pro kterou se údaje dop a odp liší namísto prvního znaku ve znaku sekundy.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Odčítání musí být posledním prvkem ve třídě znaků.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Přidat atribut DebuggerDisplay</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Přidat explicitní přetypování</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Přidat název členu</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Přidat kontroly hodnot null u všech parametrů</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Přidat volitelný parametr do konstruktoru</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Přidat parametr do {0} (a přepsání/implementace)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Přidat parametr do konstruktoru</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Přidat odkaz na projekt do {0}</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Přidat odkaz do {0}</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Akce nemůžou zůstat prázdné.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Přidat název elementu řazené kolekce členů {0}</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Zarovnat zalomené argumenty</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Zarovnat zalomené parametry</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Podmínky alternativního výrazu nemůžou být komentáře.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Podmínky alternativního výrazu nezachytávají a nejde je pojmenovat.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Použít předvolby hlaviček souborů</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Použít předvolby inicializace objektu/kolekce</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">Očekávaná úloha vrací {0}.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">Očekávaná úloha nevrací žádnou hodnotu.</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Základní třídy obsahují nepřístupné nenaimplementované členy.</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Změny se nedají použít – neočekávaná chyba: {0}</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Do rozsahu znaků nejde zahrnout třídu \{0}.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Čísla skupin digitalizace musí být menší nebo rovny hodnotě Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Počet zachytávání nemůže být nulový</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;vyvodit&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;vynechat&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Změnit na globální obor názvů</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Když se běh zastaví na výjimce, změny se nepovolují.</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Změny provedené v projektu {0} se nepoužijí, dokud je aplikace spuštěná.</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Nakonfigurovat styl kódu {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Nakonfigurovat závažnost {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Nakonfigurujte závažnost pro všechny analyzátory {0}.</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Nakonfigurujte závažnost pro všechny analyzátory.</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Převést na LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Přidat do {0}</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Převést na třídu</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Převést na LINQ (volání formuláře)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Převést na záznam</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Převést na strukturu záznamu</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Převést na strukturu</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Převést typ na {0}</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Vytvořit a přiřadit pole {0}</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Vytvořit a přiřadit vlastnost {0}</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Vytvořit a přiřadit zbývající položky jako pole</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Vytvořit a přiřadit zbývající položky jako vlastnosti</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Neměňte tento kód. Kód pro vyčištění vložte do metody {0}.</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Aktuální obsah zdrojového souboru {0} se neshoduje se sestaveným zdrojem. Případné změny provedené v tomto souboru během ladění se nepoužijí, dokud se jeho obsah nebude shodovat se sestaveným zdrojem.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Dokument musí být obsažený v pracovním prostoru, který vytvořil tuto datovou službu</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Upravit a pokračovat</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Modul zakázal funkci Upravit a pokračovat.</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Změny provedené v projektu {0} znemožní relaci ladění pokračovat dále: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">Modul runtime nepodporuje Upravit a pokračovat.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Při čtení souboru {0} došlo k chybě: {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Při vytváření instance CodeFixProvider došlo k chybě.</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Při vytváření instance CodeFixProvider {0} došlo k chybě.</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Příklad:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Příklady:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Explicitně implementované metody záznamů musí mít názvy parametrů, které odpovídají kompilátorem vygenerovanému ekvivalentu {0}.</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Extrahovat základní třídu...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Extrahovat rozhraní...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Extrahovat lokální funkci</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Extrahovat metodu</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Nepovedlo se analyzovat tok dat pro: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Opravit formátování</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Opravit překlep {0}</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Formátovat dokument</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Formátuje se dokument.</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Vygenerovat operátory porovnání</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Vygenerovat konstruktor v {0} (s poli)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Vygenerovat konstruktor v {0} (s vlastnostmi)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Vygenerovat pro {0}</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Generovat parametr {0}</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Generovat parametr {0} (a přepsání/implementace)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Znak \ na konci vzorku je neplatný.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">Neplatné {x,y} s x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Implementovat rozhraní {0} explicitně</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Implementovat rozhraní {0} implicitně</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Implementovat abstraktní třídu</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Implementovat všechna rozhraní explicitně</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Implementovat všechna rozhraní implicitně</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Implementovat všechny členy explicitně</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Implementovat explicitně</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Implementovat implicitně</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Implementovat zbývající členy explicitně</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Implementovat přes {0}</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Neúplné uvození znaků \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Odsadit všechny argumenty</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Odsadit všechny parametry</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Odsadit zalomené argumenty</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Odsadit zalomené parametry</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">Inline refaktoring metody {0}</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Inline refaktoring metody {0} se zachováním deklarace</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Nedostatek šestnáctkových číslic</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Zavést konstantu</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Zavést pole</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Zavést místní</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Zavést proměnnou dotazu</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Neplatný název skupiny: Názvy skupin musí začínat znakem slova.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Nastavit třídu jako abstract</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Nastavit jako statickou</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Převrátit podmínku</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">chybný formát</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Chybně formátovaná řídicí sekvence znaků \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Chybně naformátovaný pojmenovaný zpětný odkaz \k&lt;...&gt;</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Sloučit s vnořeným příkazem {0}</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Sloučit s dalším příkazem {0}</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Sloučit s vnějším příkazem {0}</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Sloučit s předchozím příkazem {0}</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">Metoda {0} musí vrátit stream, který podporuje operace čtení a hledání.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Chybí řídicí znak</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Přesunout obsah do oboru názvů...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Přesunout soubor do: {0}</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Přesunout soubor do kořenové složky projektu</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Přesunout do oboru názvů...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Vnořený kvantifikátor {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Není k dispozici žádné platné umístění, kam vložit volání metody.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Nedostatek znaků )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operátory</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">Odkaz na vlastnost se nedá aktualizovat.</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Povýšit {0}</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Povýšit {0} na {1}</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Povýšit členy na základní typ...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Načíst členy do nové základní třídy...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Před kvantifikátorem {x,y} není nic uvedeno.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">odkaz na nedefinovanou skupinu</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Odkaz na nedefinovaný název skupiny {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Odkaz na nedefinované číslo skupiny {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Všechny řídicí znaky. Patří k nim kategorie Cc, Cf, Cs, Co a Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">všechny řídicí znaky</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Všechny značky diakritických znamének. Patří k nim kategorie Mn, Mc a Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">všechny značky diakritických znamének</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Všechny znaky písmen. Patří k nim znaky Lu, Ll, Lt, Lm a Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">všechny znaky písmen</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Všechna čísla. Patří k nim kategorie Nd, Nl a No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">všechna čísla</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Všechny znaky interpunkce. Patří k nim kategorie Pc, Pd, Ps, Pe, Pi, Pf a Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">všechny znaky interpunkce</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Všechny oddělovací znaky. Patří k nim kategorie Zs, Zl a Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">všechny oddělovací znaky</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Všechny symboly. Patří k nim kategorie Sm, Sc, Sk a So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">všechny symboly</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Můžete použít znak svislé čáry (|), pokud se má položka shodovat s libovolným vzorem z řady, ve které znak | odděluje jednotlivé vzory.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">alternace</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Znak tečky (.) odpovídá libovolnému znaku s výjimkou \n (znak nového řádku \u000A). Pokud je vzor regulárního výrazu modifikovaný možností RegexOptions.Singleline nebo pokud je část vzoru obsahující třídu znaků tečky modifikovaná parametrem s, pak znak tečky odpovídá libovolnému znaku.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">libovolný znak</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Atomové skupiny (označované v některých jiných modulech regulárních výrazů jako podvýrazy bez zpětného vyhledávání, atomické podvýrazy nebo jednorázové podvýrazy) zakazují zpětné vyhledávání. Modul regulárních výrazů najde shodu s co nejvíce znaky ve vstupním řetězci. Pokud se žádná další shoda nenajde, neprovede se zpětné vyhledávání za účelem pokusu o porovnávání alternativního vzoru. (To znamená, že dílčí výraz najde shodu jenom s řetězci, které by odpovídaly samotnému dílčímu výrazu. Nepokusí se porovnávat řetězec na základě dílčího výrazu a jakýchkoli dílčích výrazů, které následují.) Tato možnost se doporučuje, pokud víte, že zpětné vyhledávání nepovede k úspěchu. Když zabráníte, aby modul regulárních výrazů prováděl zbytečná hledání, zlepší se výkon.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">atomová skupina</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Shoda se znakem Backspace \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">znak Backspace</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Definice vyrovnávací skupiny odstraní definici dříve definované skupiny a uloží interval mezi dříve definovanou skupinou a aktuální skupinou do aktuální skupiny. Skupina name1 je aktuální skupina (volitelná), skupina name2 je dříve definovaná skupina a subexpression je libovolný platný vzor regulárního výrazu. Definice vyrovnávací skupiny odstraní definici skupiny name2 a uloží interval mezi skupinami name2 a name1 do skupiny name1. Pokud není definována žádná skupina name2, porovnávání se vrátí zpět. Vzhledem k tomu, že odstraněním poslední definice skupiny name2 se odkryje předchozí definice skupiny name2, umožňuje tento konstruktor použít zásobník zachycení pro skupinu name2 jako čítač pro uchování přehledu o vnořených konstruktorech, jako jsou kulaté nebo hranaté otevírací a uzavírací závorky. Definice vyrovnávací skupiny používá jako zásobník skupinu name2. Počáteční znak každého vnořeného konstruktoru se umístí do této skupiny a do její kolekce Group.Captures. Po nalezení uzavíracího znaku se odpovídající otevírací znak odebere ze skupiny a kolekce Captures se zmenší o jednu položku. Po nalezení otevíracích a uzavíracích znaků všech vnořených konstruktorů bude skupina name1 prázdná.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">vyrovnávací skupina</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">základní skupina</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Shoda se znakem zvonku \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">znak zvonku</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Shoda se znakem návratu na začátek řádku \u000D. Upozorňujeme, že \r není ekvivalentem znaku nového řádku \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">znak návratu na začátek řádku</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">Odčítání třídy znaků poskytuje sadu znaků, která je výsledkem vyloučení znaků v jedné třídě znaků z jiné třídy znaků. Base_group je pozitivní nebo negativní skupina znaků nebo rozsah. Komponenta excluded_group je jiná pozitivní nebo negativní skupina znaků nebo jiný výraz odčítání třídy znaků (to znamená, že výrazy odčítání třídy znaků lze vnořovat).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">odčítání třídy znaků</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">skupina znaků</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">komentář</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Tento element jazyka se pokusí najít shodu s jedním ze dvou vzorů na základě toho, jestli se najde shoda s počátečním vzorem. Expression je počáteční vzor, pro který se hledá shoda, yes je vzor, pro který se hledá shoda, pokud se pro expression najde shoda, a no je volitelný vzor, pro který se hledá shoda, pokud se pro expression nenajde shoda.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">podmíněná shoda výrazu</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Tento element jazyka se pokusí najít shodu s jedním ze dvou vzorů na základě toho, jestli se najde shoda se zadanou zachycující skupinou. Name je název (nebo číslo) zachycující skupiny, yes je výraz, pro který se hledá shoda, pokud se daný název (nebo číslo) najde, a no je volitelný výraz, pro který se hledá shoda, pokud se tato položka nenajde.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">podmíněná shoda skupiny</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">Ukotvení \G určuje, že ke shodě musí dojít v místě, kde bylo předchozí porovnávání ukončeno. Pokud použijete toto ukotvení s metodou Regex.Matches nebo Match.NextMatch, zajistí se, že všechna porovnávání budou souvislá.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">souvislá porovnávání</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Shoda s řídicím znakem ASCII, kde X je písmeno řídicího znaku. Například \cC je CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">řídicí znak</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d odpovídá libovolné desítkové číslici. Jde o ekvivalent vzoru regulárního výrazu \p{Nd}, který zahrnuje standardní desítkové číslice 0–9 a také desítkové číslice některých jiných znakových sad. Pokud je zadané chování kompatibilní s ECMAScriptem, je \d ekvivalentem [0-9].</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">znak desítkové číslice</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Symbol čísla (#) označuje komentář v režimu X, který začíná znakem #, který není řídicím znakem, na konci vzoru regulárního výrazu a pokračuje do konce řádku. Pokud chcete použít tento konstruktor, musíte buď povolit možnost x (prostřednictvím vložených možností), nebo při vytváření instance objektu Regex nebo volání statické metody Regex zadat pro parametr možnosti hodnotu RegexOptions.IgnorePatternWhitespace.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">komentář na konci řádku</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">Ukotvení \z určuje, že ke shodě musí dojít na konci vstupního řetězce. Podobně jako element jazyka $ i \z ignoruje možnost RegexOptions.Multiline. Na rozdíl od elementu jazyka \Z nenajde \z shodu se znakem \n na konci řetězce. Proto může hledat shodu jenom v posledním řádku vstupního řetězce.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">jen konec řetězce</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">Ukotvení \Z určuje, že ke shodě musí dojít na konci vstupního řetězce nebo před \n na konci vstupního řetězce. Je identické s ukotvením $, kromě toho, že \Z ignoruje možnost RegexOptions.Multiline. Proto ve víceřádkovém řetězci může najít shodu jenom na konci posledního řádku nebo v posledním řádku před \n. Ukotvení \Z najde shodu s \n, ale nenajde shodu s \r\n (kombinace znaků CR/LF). Pokud chcete hledat znaky CR/LF, zadejte do vzoru regulárního výrazu \r?\Z.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">konec řetězce nebo před koncem nového řádku</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">Ukotvení $ určuje, že se předchozí vzor musí vyskytovat na konci vstupního řetězce nebo před \n na konci vstupního řetězce. Pokud použijete $ s možností RegexOptions.Multiline, může ke shodě dojít i na konci řádku. Ukotvení $ najde shodu s \n, ale nenajde shodu s \r\n (kombinace znaků návratu na začátek řádku a nového řádku, tedy znaků CR/LF). Pokud chcete hledat kombinaci znaků CR/LF, zadejte do vzoru regulárního výrazu \r?$.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">konec řetězce nebo řádku</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Shoda s řídicím znakem \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">řídicí znak</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">vyloučená skupina</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">výraz</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Shoda se znakem pro novou stránku \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">znak pro novou stránku</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Tento seskupovací konstruktor povoluje nebo zakazuje možnosti zadané v rámci výrazu subexpression. Možnosti, které se povolují, se zadávají za otazník a možnosti, které se zakazují, za symbol minus. Povolené možnosti: i Použije se porovnávání bez rozlišování malých a velkých písmen. m Použije se víceřádkový režim, kde ^ a $ odpovídají začátku a konci každého řádku (místo začátku a konce vstupního řetězce). s Použije se jednořádkový režim, kde tečka (.) odpovídá každému znaku (místo každému znaku kromě \n). n Nezachytává nepojmenované skupiny. Jediná platná zachycení představují explicitně pojmenované nebo číslované skupiny formuláře (? &lt;name&gt; subexpression). x Vyloučí ze vzoru prázdné znaky, které nejsou řídicími znaky, a povolí komentáře za symbolem čísla (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">seskupovací možnosti</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Shoda se znakem ASCII, kde ## je dvouciferný šestnáctkový kód znaku</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">šestnáctkový únikový znak</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">Konstruktor (?# komentář) umožňuje zahrnout vložený komentář do regulárního výrazu. Modul regulárních výrazů nepoužije při porovnávání vzorů žádnou část komentáře, i když je komentář obsažený v řetězci, který vrací metoda Regex.ToString. Komentář končí první uzavírací závorkou.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">vložený komentář</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Povoluje nebo zakazuje specifické možnosti pro porovnávání vzorů pro zbytek regulárního výrazu. Možnosti, které se povolují, se zadávají za otazník a možnosti, které se zakazují, za symbol minus. Povolené možnosti: i Použije se porovnávání bez rozlišování malých a velkých písmen. m Použije se víceřádkový režim, kde ^ a $ odpovídají začátku a konci každého řádku (místo začátku a konce vstupního řetězce). s Použije se jednořádkový režim, kde tečka (.) odpovídá každému znaku (místo každému znaku kromě \n). n Nezachytává nepojmenované skupiny. Jediná platná zachycení představují explicitně pojmenované nebo číslované skupiny formuláře (? &lt;name&gt; subexpression). x Vyloučí ze vzoru prázdné znaky, které nejsou řídicími znaky, a povolí komentáře za symbolem čísla (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">vložené možnosti</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Problém s regulárním výrazem: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">písmeno, malá písmena</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">písmeno, modifikátor</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">písmeno, jiné</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">písmeno, velká počáteční písmena</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">písmeno, velká písmena</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">značka, uzavření</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">značka, bez mezer</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">značka, kombinování mezer</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">Kvantifikátor {n,}? najde shodu předchozího elementu nejméně n-krát, kde n je celé číslo, ale co nejméněkrát. Jedná se o líný protějšek hladového kvantifikátoru {n,}.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">shoda nejméně n-krát (líný režim)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">Kvantifikátor {n,} najde shodu předchozího elementu nejméně n-krát, kde n je celé číslo. {n,} je hladový kvantifikátor, jehož líným ekvivalentem je {n,}?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">shoda nejméně n-krát</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">Kvantifikátor {n,m}? najde shodu předchozího elementu v rozmezí n-krát a m-krát, kde n a m jsou celá čísla, ale co nejméněkrát. Jedná se o líný protějšek hladového kvantifikátoru {n,m}.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">shoda nejméně n-krát (líný režim)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">Kvantifikátor {n,m} najde shodu předchozího elementu nejméně n-krát, ale nejvíce m-krát, kde n a m jsou celá čísla. {n,m} je hladový kvantifikátor, jehož líným ekvivalentem je {n,m}?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">shoda v rozmezí m-krát a n-krát</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">Kvantifikátor {n}? najde shodu předchozího elementu přesně n-krát, kde n je celé číslo. Jedná se o líný protějšek hladového kvantifikátoru {n}+.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">shoda přesně n-krát (líný režim)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">Kvantifikátor {n} najde shodu předchozího elementu přesně n-krát, kde n je libovolné celé číslo. {n} je hladový kvantifikátor, jehož líným ekvivalentem je {n}?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">shoda přesně n-krát</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">Kvantifikátor +? najde shodu předchozího elementu 1krát nebo vícekrát, ale co nejméněkrát. Jedná se o líný protějšek hladového kvantifikátoru +.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">shoda 1krát nebo vícekrát (líný režim)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">Kvantifikátor + najde shodu předchozího elementu 1krát nebo vícekrát. Jedná se o ekvivalent kvantifikátoru {1,}. + je hladový kvantifikátor, jehož líným ekvivalentem je +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">shoda 1krát nebo vícekrát</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">Kvantifikátor *? najde shodu předchozího elementu 0krát nebo vícekrát, ale co nejméněkrát. Jedná se o líný protějšek hladového kvantifikátoru *.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">shoda 0krát nebo vícekrát (líný režim)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">Kvantifikátor * najde shodu předchozího elementu 0krát nebo vícekrát. Jedná se o ekvivalent kvantifikátoru {0,}. * je hladový kvantifikátor, jehož líným ekvivalentem je *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">shoda 0krát nebo vícekrát</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">Kvantifikátor ?? najde shodu předchozího elementu 0krát nebo 1krát, ale co nejméněkrát. Jedná se o líný protějšek hladového kvantifikátoru ?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">shoda 0krát nebo 1krát (líný režim)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">Kvantifikátor ? najde shodu předchozího elementu 0krát nebo 1krát. Jedná se o ekvivalent kvantifikátoru {0,1}. ? je hladový kvantifikátor, jehož líným ekvivalentem je ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">shoda 0krát nebo 1krát</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Tento seskupovací konstruktor zachytává porovnávaný dílčí výraz, kde dílčí výraz je libovolný platný vzor regulárního výrazu. Zachycení, která používají závorky, jsou automaticky číslována zleva doprava podle pořadí otevíracích závorek v regulárním výrazu, počínaje od hodnoty jedna. Zachycení s číslem nula je text odpovídající celému vzoru regulárního výrazu.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">porovnávaný dílčí výraz</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">název</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">název nebo číslo</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Pojmenovaná nebo číslovaná zpětná reference. Název představuje název zachycující skupiny definované ve vzoru regulárního výrazu.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">pojmenovaná zpětná reference</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Zachytává porovnávaný dílčí výraz a umožňuje k němu přístup pomocí názvu nebo čísla. Název je platný název skupiny a dílčí výraz je libovolný platný vzor regulárního výrazu. Název nesmí obsahovat znaky interpunkce a nesmí začínat číslicí. Pokud parametr RegexOptions metody odpovídající vzoru regulárního výrazu obsahuje příznak RegexOptions.ExplicitCapture nebo pokud je u daného dílčího výrazu použitá možnost n, je jediným způsobem, jak zachytit dílčí výraz, explicitní pojmenování zachycujících skupin.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">pojmenovaný porovnávaný dílčí výraz</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Negativní skupina znaků určuje seznam znaků, které se nesmí vyskytovat ve vstupním řetězci, aby došlo ke shodě. Seznam znaků se zadává jednotlivě. Je možné zřetězit dva nebo více rozsahů znaků. Pokud chcete například zadat rozsah desítkových číslic od 0 do 9, rozsah malých písmen od a do f a rozsah velkých písmen od A do F, použijte [0-9A-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">negativní skupina znaků</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Negativní rozsah znaků určuje seznam znaků, které se nesmí vyskytovat ve vstupním řetězci, aby došlo ke shodě. firstCharacter je znak, kterým rozsah začíná, a lastCharacter je znak, kterým rozsah končí. Je možné zřetězit dva nebo více rozsahů znaků. Pokud chcete například zadat rozsah desítkových číslic od 0 do 9, rozsah malých písmen od a do f a rozsah velkých písmen od A do F, použijte [0-9A-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">negativní rozsah znaků</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Konstruktor regulárního výrazu \P{ name } odpovídá libovolnému znaku, který nepatří do obecné kategorie Unicode nebo pojmenovaného bloku, kde name je zkratka pro kategorii nebo název pojmenovaného bloku.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">negativní kategorie Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Shoda se znakem pro nový řádek \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">znak pro nový řádek</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">ne</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D odpovídá libovolnému nečíselnému znaku. Je ekvivalentem vzoru regulárního výrazu \P{Nd}. Pokud je zadané chování kompatibilní s ECMAScriptem, je \D ekvivalentem [^0-9].</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">nečíselný znak</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S odpovídá libovolnému neprázdnému znaku. Je ekvivalentem vzoru regulárního výrazu [^\f\n\r\t\v\x85\p{Z}] nebo opakem vzoru regulárního výrazu, který je ekvivalentem \s, který najde prázdné znaky. Pokud je zadané chování kompatibilní s ECMAScriptem, je \S ekvivalentem [^ \f\n\r\t\v].</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">neprázdný znak</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">Ukotvení \B určuje, že shoda se nesmí vyskytovat na hranici slova. Jedná se o opak ukotvení \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">mimo hranici slova</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W odpovídá jakémukoli znaku, který není znakem slova. Odpovídá libovolnému znaku s výjimkou znaků v následujících kategoriích Unicode: Ll písmeno, malá písmena Lu písmeno, velká písmena Lt písmeno, velká počáteční písmena Lo písmeno, jiné Lm písmeno, modifikátor Mn značka, bez mezer Nd číslo, desítkové číslo Pc interpunkce, spojovník Pokud je zadané chování kompatibilní s ECMAScriptem, je \W ekvivalentem [^a-zA-Z_0-9].</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">znak, který není znakem slova</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Tento konstruktor nezachycuje dílčí řetězec, který odpovídá dílčímu výrazu: Konstruktor nezachycující skupiny se obvykle používá, když se kvantifikátor aplikuje pro skupinu, ale dílčí řetězce zachycené skupinou uživatele nezajímají. Pokud regulární výraz obsahuje vnořené seskupovací konstruktory, vnější konstruktor nezachycující skupiny se neaplikuje na vnitřní vnořené konstruktory skupiny.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">nezachycující skupina</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">číslo, desítkové číslo</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">číslo, písmeno</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">číslo, jiné</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Číslovaná zpětná reference, kde číslo je pořadové umístění zachycující skupiny v regulárním výrazu. Například \4 odpovídá obsahu čtvrté zachycující skupiny. Existuje nejednoznačnost mezi osmičkovými řídicími kódy (například \16) a zpětnými referencemi \číslo, které používají stejný zápis. Pokud nejednoznačnost způsobuje potíže, můžete použít zápis \k&lt;name&gt;, který je jednoznačný a nedá se zaměnit s osmičkovými kódy znaků. Stejně tak šestnáctkové kódy, například \xdd, jsou jednoznačné a nedají se zaměnit se zpětnými referencemi.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">číslovaná zpětná reference</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">jiné, řídicí</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">jiné, formát</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">jiné, nepřiřazeno</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">jiné, privátní použití</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">jiné, náhradní</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Pozitivní skupina znaků určuje seznam znaků, z nichž kterýkoli se může objevit ve vstupním řetězci, aby došlo ke shodě.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">pozitivní skupina znaků</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Pozitivní rozsah znaků určuje rozsah znaků, z nichž kterýkoli se může objevit ve vstupním řetězci, aby došlo ke shodě. firstCharacter je znak, kterým rozsah začíná, a lastCharacter je znak, kterým rozsah končí.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">pozitivní rozsah znaků</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">interpunkce, uzavření</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">interpunkce, spojovník</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">interpunkce, pomlčka</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">interpunkce, koncová uvozovka</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">interpunkce, počáteční uvozovka</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">interpunkce, otevření</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">interpunkce, jiné</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">oddělovač, čára</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">oddělovač, odstavec</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">oddělovač, mezera</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">Ukotvení \A určuje, že ke shodě musí dojít na začátku vstupního řetězce. Je identické s ukotvením ^, kromě toho, že \A ignoruje možnost RegexOptions.Multiline. Proto může hledat shodu jenom na začátku prvního řádku ve víceřádkovém vstupním řetězci.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">jen začátek řetězce</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">Ukotvení ^ určuje, že následující vzor musí začínat na pozici prvního znaku řetězce. Pokud použijete ^ s možností RegexOptions.Multiline, musí ke shodě dojít na začátku každého řádku.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">začátek řetězce nebo řádku</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">dílčí výraz</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">symbol, měna</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">symbol, matematický</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">symbol, modifikátor</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">symbol, jiné</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Shoda se znakem tabulátoru \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">znak tabulátoru</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Konstruktor regulárního výrazu \p{ name } odpovídá libovolnému znaku, který patří do obecné kategorie Unicode nebo pojmenovaného bloku, kde name je zkratka pro kategorii nebo název pojmenovaného bloku.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">kategorie Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Shoda s jednotkou kódu UTF-16, jejíž šestnáctková hodnota je ####</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">řídicí znak Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Obecná kategorie Unicode: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Shoda se znakem svislého tabulátoru \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">znak svislého tabulátoru</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s odpovídá jakémukoli prázdnému znaku. Je ekvivalentem následujících řídicích sekvencí a kategorií Unicode: \f znak pro novou stránku \u000C \n znak nového řádku \u000A \r znak návratu na začátek řádku \u000D \t znak tabulátoru \u0009 \v znak svislého tabulátoru \u000B \x85 znak tří teček nebo dalšího řádku (...) \u0085 \p{Z} shoda s libovolným znakem oddělovače Pokud je zadané chování kompatibilní s ECMAScriptem, je \s ekvivalentem [ \f\n\r\t\v].</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">prázdný znak</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">Ukotvení \b určuje, že ke shodě musí dojít na hranici mezi znakem slova (element jazyka \w) a znakem, který není znakem slova (element jazyka \W). Mezi znaky slova patří alfanumerické znaky a podtržítka. Znak, který není znakem slova, je jakýkoli znak, který není alfanumerický ani podtržítko. Ke shodě může dojít i na hranici slova na začátku nebo na konci řetězce. Ukotvení \b se často používá k ověření, že dílčí výraz odpovídá celému slovu, nikoli jenom začátku nebo konci slova.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">hranice slova</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w odpovídá jakémukoli znaku slova. Znak slova je členem libovolné z následujících kategorií Unicode: Ll písmeno, malá písmena Lu písmeno, velká písmena Lt písmeno, velká počáteční písmena Lo písmeno, jiné Lm písmeno, modifikátor Mn značka, bez mezer Nd číslo, desítkové číslo Pc interpunkce, spojovník Pokud je zadané chování kompatibilní s ECMAScriptem, je \w ekvivalentem [a-zA-Z_0-9].</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">znak slova</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">ano</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Negativní kontrolní výraz dopředného vyhledávání s nulovou délkou, při kterém úspěšná shoda nastane v případě, že vstupní řetězec neodpovídá vzoru regulárního výrazu v dílčím výrazu. Hledaný řetězec se do výsledku porovnávání nezahrnuje. Negativní kontrolní výraz dopředného vyhledávání s nulovou délkou se obvykle používá na začátku nebo na konci regulárního výrazu. Na začátku regulárního výrazu může definovat konkrétní vzor, který by se neměl shodovat, pokud začátek regulárního výrazu definuje podobný, ale obecnější vzor, který se má shodovat. V tomto případě se často používá k omezení zpětného vyhledávání. Na konci regulárního výrazu může definovat dílčí výraz, který se nesmí vyskytovat na konci hledaného řetězce.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">negativní kontrolní výraz dopředného vyhledávání s nulovou délkou</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Negativní kontrolní výraz zpětného vyhledávání s nulovou délkou, při kterém úspěšná shoda nastane v případě, že se dílčí výraz nenachází ve vstupním řetězci nalevo od aktuální pozice. Dílčí řetězce, které neodpovídají dílčímu výrazu, se do výsledku porovnávání nezahrnují. Negativní kontrolní výrazy zpětného vyhledávání s nulovou délkou se obvykle používají na začátku regulárních výrazů. Vzor, který definují, vylučuje shodu v řetězci, který následuje. Používají se také k omezení zpětného vyhledávání, pokud poslední znak nebo znaky v zachycující skupině nesmí představovat jeden nebo více znaků, které odpovídají vzoru regulárního výrazu dané skupiny.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">negativní kontrolní výraz zpětného vyhledávání s nulovou délkou</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Pozitivní kontrolní výraz dopředného vyhledávání s nulovou délkou, při kterém úspěšná shoda nastane v případě, že vstupní řetězec odpovídá vzoru regulárního výrazu v dílčím výrazu. Odpovídající dílčí řetězec se do výsledku porovnávání nezahrnuje. Pozitivní kontrolní výraz dopředného vyhledávání s nulovou délkou neprovádí zpětné vyhledávání. Pozitivní kontrolní výraz dopředného vyhledávání s nulovou délkou se obvykle nachází na konci vzoru regulárního výrazu. Definuje dílčí řetězec, který musí být nalezen na konci řetězce, aby došlo ke shodě, ale který by shoda neměla zahrnovat. Je také užitečný k zabránění nadměrnému zpětnému vyhledávání. Pomocí pozitivního kontrolního výrazu dopředného vyhledávání s nulovou délkou můžete zajistit, aby určitá zachycující skupina začínala textem, který odpovídá podmnožině vzoru definovaného pro danou zachycující skupinu.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">pozitivní kontrolní výraz dopředného vyhledávání s nulovou délkou</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Pozitivní kontrolní výraz zpětného vyhledávání s nulovou délkou, při kterém úspěšná shoda nastane v případě, že se dílčí výraz nachází ve vstupním řetězci nalevo od aktuální pozice. Dílčí výraz se do výsledku porovnávání nezahrnuje. Pozitivní kontrolní výraz zpětného vyhledávání s nulovou délkou neprovádí zpětné navracení. Pozitivní kontrolní výrazy zpětného vyhledávání s nulovou délkou se obvykle používají na začátku regulárních výrazů. Vzor, který definují, je podmínkou pro shodu, i když není součástí výsledku porovnávání.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">pozitivní kontrolní výraz zpětného vyhledávání s nulovou délkou</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Podpisy souvisejících metod nalezené v metadatech se nebudou aktualizovat.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Odebrání dokumentu se nepodporuje.</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Odebrat modifikátor async</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Odebrat nepotřebná přetypování</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Odebrat nepoužívané proměnné</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Místo {0} použijte {1}</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Vyřešit značky konfliktů</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Hrubá úprava</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Seřadit modifikátory dostupnosti</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Rozdělit do následných příkazů {0}</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Rozdělit do vnořených příkazů {0}</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Stream musí podporovat operace read a seek.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Potlačit {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: Uvolněte nespravované prostředky (nespravované objekty) a přepište finalizační metodu.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: Finalizační metodu přepište, jen pokud metoda {0} obsahuje kód pro uvolnění nespravovaných prostředků.</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Shody cílového typu</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">Sestavení {0}, které obsahuje typ {1}, se odkazuje na architekturu .NET Framework, což se nepodporuje.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">Výběr obsahuje volání lokální funkce, aniž by byla deklarovaná.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Příliš mnoho znaků | ve výrazu (?()|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Příliš mnoho znaků )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Není možné přečíst zdrojový soubor {0} nebo soubor PDB sestavený pro projekt, který tyto soubory obsahuje. Případné změny provedené v tomto souboru během ladění se nepoužijí, dokud se jeho obsah nebude shodovat se sestaveným zdrojem.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Neznámá vlastnost</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Neznámá vlastnost {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Nerozpoznaný řídicí znak</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Nerozpoznaná řídicí sekvence \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Nerozpoznaný seskupovací konstrukt</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Nedokončená sada []</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Neukončený komentář (?#...)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Zrušit zalomení všech argumentů</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Zrušit zalomení všech parametrů</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Zrušit zalomení všech argumentů a odsadit je</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Zrušit zalomení všech parametrů a odsadit je</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Zrušit zalomení seznamu argumentů</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Zrušit zalomení posloupnosti volání</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Zrušit zalomení výrazu</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Zrušit zalomení seznamu parametrů</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Pro lambda výrazy používat text bloku</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Používat text výrazu pro lambda výrazy</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Použít interpolovaný doslovný řetězec</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Hodnota:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Upozornění: Při převodu příkazu se může změnit sémantika.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Zalomit a zarovnat posloupnost volání</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Výraz pro zabalení a zarovnání</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Zalomit a zarovnat dlouhou posloupnost volání</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Zalomit posloupnost volání</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Zalomit každý argument</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Zalomit každý parametr</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Zalomit výraz</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Zalomit dlouhý seznam argumentů</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Zalomit dlouhou posloupnost volání</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Zalomit dlouhý seznam parametrů</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Zalamování</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Pro přepínání kontextů můžete použít navigační panel.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">Hodnota {0} nemůže být nulová a toto pole nemůže být prázdné.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">Hodnota {0} nemůže být null ani prázdný znak.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">{0} tady není null.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">{0} tady může být null.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">Desetimiliontiny sekundy</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu fffffff představuje sedm platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje desetimiliontiny sekundy. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">Desetimiliontiny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu FFFFFFF představuje sedm platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje desetimiliontiny sekundy. Nezobrazují se ale nuly na konci ani sedm nulových číslic. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">Miliontiny sekundy</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu ffffff představuje šest platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje miliontiny sekundy. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">Miliontiny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu FFFFFF představuje šest platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje miliontiny sekundy. Nezobrazují se ale nuly na konci ani šest nulových číslic. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">Stotisíciny sekundy</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu fffff představuje pět platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje stotisíciny sekundy. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">Stotisíciny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu FFFFF představuje pět platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje stotisíciny sekundy. Nezobrazují se ale nuly na konci ani pět nulových číslic. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">Desetitisíciny sekundy</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu ffff představuje čtyři platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje desetitisíciny sekundy. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT verze 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">Desetitisíciny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu FFFF představuje čtyři platné číslice zlomku sekundy. To znamená, že v hodnotě data a času představuje desetitisíciny sekundy. Nezobrazují se ale nuly na konci ani čtyři nulové číslice. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">Tisíciny sekundy</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">Specifikátor vlastního formátu fff představuje tři platné číslice zlomku sekundy. To znamená, že v hodnotě data a času představuje milisekundy.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">Tisíciny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">Specifikátor vlastního formátu FFF představuje tři platné číslice zlomku sekundy. To znamená, že v hodnotě data a času představuje milisekundy. Nezobrazují se ale nuly na konci ani tři nulové číslice.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">Setiny sekundy</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">Specifikátor vlastního formátu ff představuje dvě platné číslice zlomku sekundy. To znamená, že v hodnotě data a času představuje setiny sekundy.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">Setiny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">Specifikátor vlastního formátu FF představuje dvě platné číslice zlomku sekundy. To znamená, že v hodnotě data a času představuje setiny sekundy. Nezobrazují se ale nuly na konci ani dvě nulové číslice.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">Desetiny sekundy</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">Desetiny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">Specifikátor vlastního formátu F představuje platné číslici zlomku sekund. To znamená, že v hodnotě data a času představuje desetiny sekundy. Pokud je číslicí nula, nic se nezobrazí. Pokud se specifikátor formátu F použije bez jiných specifikátorů formátu, interpretuje se jako standardní specifikátor formátu data a času F. Počet specifikátorů formátu F použitý v metodě ParseExact, TryParseExact, ParseExact nebo TryParseExact udává maximální počet platných číslic zlomku sekundy, který může být k dispozici pro úspěšné parsování řetězce.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12hodinový formát (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Specifikátor vlastního formátu h reprezentuje hodinu jako číslo od 1 do 12. To znamená, že hodina je reprezentována ve 12hodinovém formátu, který počítá celé hodiny od půlnoci do poledne. Konkrétní hodina po půlnoci se nijak neliší od stejné hodiny po poledni. Hodina se nezaokrouhluje a jednočíselná hodina se formátuje bez nuly na začátku. Když je například ráno nebo odpoledne 5:43, tento specifikátor vlastního formátu zobrazí 5. Pokud se specifikátor formátu h zadá bez jiných specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času a vyvolá FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12hodinový formát (2 číslice)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">Specifikátor vlastního formátu hh (a libovolný počet dalších specifikátorů h) reprezentuje hodinu jako číslo od 01 do 12. To znamená, že hodina je reprezentována ve 12hodinovém formátu, který počítá celé hodiny od půlnoci do poledne. Konkrétní hodina po půlnoci se nijak neliší od stejné hodiny po poledni. Hodina se nezaokrouhluje a jednočíselná hodina se formátuje s nulou na začátku. Když je například ráno nebo odpoledne 5:43, tento specifikátor vlastního formátu zobrazí 05.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24hodinový formát (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Specifikátor vlastního formátu H reprezentuje hodinu jako číslo od 0 do 23. To znamená, že hodina je reprezentována ve 24hodinovém formátu, který začíná na nule a počítá hodiny od půlnoci. Hodina s jednou číslicí se formátuje bez nuly na začátku. Pokud se specifikátor formátu H použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a čas a vyvolá FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24hodinový formát (2 číslice)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">Specifikátor vlastního formátu HH reprezentuje hodinu jako číslo od 00 do 23. To znamená, že hodina je reprezentována ve 24hodinovém formátu, který začíná na nule a počítá hodiny od půlnoci. Hodina s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">code</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">oddělovač data</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Specifikátor vlastního formátu / představuje oddělovač data, pomocí kterého se odlišují roky, měsíce a dny. Správný lokalizovaný oddělovač data se načítá z vlastnosti DateTimeFormatInfo.DateSeparator aktuální nebo zadané jazykové verze. Poznámka: Pokud chcete změnit oddělovač data pro konkrétní řetězec data a času, zadejte znak oddělovače v oddělovači literálního řetězce. Například řetězec s vlastním formátem mm'/'dd'/'yyyy vytvoří výsledný řetězec, ve kterém se / vždy použije jako oddělovač data. Pokud chcete oddělovač data změnit pro všechna data v jazykové verzi, buď změňte hodnotu vlastnosti DateTimeFormatInfo.DateSeparator aktuální jazykové verze, nebo vytvořte instanci objektu DateTimeFormatInfo, přiřaďte znak do jeho vlastnosti DateSeparator a zavolejte přetížení metody formátování, která zahrnuje parametr IFormatProvider. Pokud se specifikátor formátu / použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času a vyvolá FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">den v měsíci (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">Specifikátor vlastního formátu d reprezentuje den v měsíci jako číslo od 1 do 31. Den s jednou číslicí se formátuje bez nuly na začátku. Pokud se specifikátor formátu d použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času d.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">den v měsíci (2 číslice)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">Specifikátor vlastního formátu dd reprezentuje den v měsíci jako číslo od 01 do 31. Den s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">den v týdnu (zkrácený)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">Specifikátor vlastního formátu ddd reprezentuje zkrácený název dne v týdnu. Lokalizovaný zkrácený název dne v týdnu se načítá z vlastnosti DateTimeFormatInfo.AbbreviatedDayNames aktuální nebo zadané jazykové verze.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">den v týdnu (úplný)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">Specifikátor vlastního formátu dddd (a libovolný počet dalších specifikátorů d) reprezentuje celý název dne v týdnu. Lokalizovaný název dne v týdnu se načítá z vlastnosti DateTimeFormatInfo.DayNames aktuální nebo zadané jazykové verze.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">proměnná typu discard</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">z metadat</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">celé dlouhé datum a čas</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">Specifikátor standardního formátu F představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.FullDateTimePattern. Například řetězec vlastního formátu pro invariantní jazykovou verzi je dddd, dd MMMM yyyy HH:mm:ss.</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">celé krátké datum a čas</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Specifikátor formátu úplného data a krátkého času (f) Specifikátor standardního formátu f představuje kombinaci vzorů dlouhého data (D) a krátkého času (t) oddělených mezerou.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">obecné dlouhé datum a čas</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">Specifikátor standardního formátu G představuje kombinaci vzorů krátkého data (d) a dlouhého času (T) oddělených mezerou.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">obecné krátké datum a čas</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">Specifikátor standardního formátu g představuje kombinaci vzorů krátkého data (d) a krátkého času (t) oddělených mezerou.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">obecné přetížení</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">obecná přetížení</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">v {0} ({1}–{2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">in Source (atribut)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">dlouhé datum</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">Specifikátor standardního formátu D představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.LongDatePattern. Například řetězec vlastního formátu pro invariantní jazykovou verzi je dddd, dd MMMM yyyy.</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">dlouhý čas</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">Specifikátor standardního formátu T představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.LongTimePattern konkrétní jazykové verze. Například řetězec vlastního formátu pro invariantní jazykovou verzi je HH:mm:ss.</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} {1}</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">minuta (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">Specifikátor vlastního formátu m reprezentuje minutu jako číslo od 0 do 59. Minuta představuje celé minuty, které uplynuly od poslední hodiny. Minuta s jednou číslicí se formátuje bez nuly na začátku. Pokud se specifikátor formátu m použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času m.</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">minuta (2 číslice)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">Specifikátor vlastního formátu mm (a libovolný počet dalších specifikátorů m) reprezentuje minutu jako číslo od 00 do 59. Minuta představuje celé minuty, které uplynuly od poslední hodiny. Minuta s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">měsíc (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">Specifikátor vlastního formátu M reprezentuje měsíc jako číslo od 1 do 12 (nebo od 1 do 13 pro kalendáře, které mají 13 měsíců). Den s jednou číslicí se formátuje bez nuly na začátku. Pokud se specifikátor formátu M použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času M.</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">měsíc (2 číslice)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">Specifikátor vlastního formátu MM reprezentuje den v měsíci jako číslo od 01 do 12 (nebo od 01 do 13 pro kalendáře, které mají 13 měsíců). Den s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">měsíc (zkrácený)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">Specifikátor vlastního formátu MMM reprezentuje zkrácený název měsíce. Lokalizovaný zkrácený název měsíce se načítá z vlastnosti DateTimeFormatInfo.AbbreviatedMonthNames aktuální nebo zadané jazykové verze.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">den v měsíci</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">Specifikátor standardního formátu M nebo m představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.MonthDayPattern. Například řetězec vlastního formátu pro invariantní jazykovou verzi je MMMM dd.</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">měsíc (úplný)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">Specifikátor vlastního formátu MMMM reprezentuje celý název měsíce. Lokalizovaný název měsíce se načítá z vlastnosti DateTimeFormatInfo.MonthNames aktuální nebo zadané jazykové verze.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">přetížení</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">přetížení</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">Klíčové slovo {0}</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Zapouzdřit pole: {0} (a použít vlastnost)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Zapouzdřit pole: {0} (ale dál používat pole)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Zapouzdřit pole (a použít vlastnost)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Zapouzdřit pole (ale dál používat pole)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Nejde extrahovat rozhraní: Výběr nespadá do třídy/rozhraní/struktury.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Nejde extrahovat rozhraní: Typ neobsahuje žádný člen, který by se dal extrahovat do rozhraní.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">nejde konstruovat finální strom</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Typ nebo návratový typ parametrů nemůže být anonymní: [{0}].</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">Výběr neobsahuje žádný aktivní příkaz.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">Výběr obsahuje chybu nebo neznámý typ.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Parametr typu {0} je skrytý jiným parametrem typu {1}.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">Adresa proměnné se používá ve vybraném kódu.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">Přiřazování k polím jen pro čtení se musí dělat v konstruktoru: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">Vygenerovaný kód se překrývá se skrytou částí kódu.</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Přidat volitelné parametry do {0}</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Přidat parametry do {0}</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Generovat delegující konstruktor {0}({1})</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Generovat konstruktor {0}({1})</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Generovat konstruktor přiřazující pole {0}({1})</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Generovat Equals a GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Generovat Equals(objekt)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Generovat GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Generovat konstruktor v: {0}</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Generovat všechno</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Generovat člena výčtu {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Generovat konstantu {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Generovat vlastnost jen pro čtení {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Generovat vlastnost {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Generovat pole jen pro čtení {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Generovat pole {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Generovat místní: {0}</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Generovat {0} {1} v novém souboru</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Generovat vnořené {0} {1}</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Globální obor názvů</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Implementovat rozhraní abstraktně</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Implementovat rozhraní přes {0}</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Implementujte rozhraní.</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Zavést pole pro {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Zavést lokální proměnnou pro {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Zavést konstantu pro {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Zavést místní konstantu pro {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Zavést pole pro všechny výskyty položky {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Zavést lokální proměnnou pro všechny výskyty položky {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Zavést konstantu pro všechny výskyty položky {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Zavést místní konstantu pro všechny výskyty položky {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Zavést proměnnou dotazu pro všechny výskyty položky {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Zavést proměnnou dotazu pro {0}</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Anonymní typy:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">je</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Představuje objekty, jejichž operace se vyhodnotí za běhu.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">konstanta</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">pole</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">lokální konstanta</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">lokální proměnná</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">popisek</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">období</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Specifikátory vlastního formátu g nebo gg (a libovolný počet dalších specifikátorů g) představují období, třeba př. n. l. Pokud datum, které se má formátovat, nemá přidružený řetězec období, operace formátování tento specifikátor ignoruje. Pokud se specifikátor formátu g použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času g.</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">proměnná rozsahu</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">parametr</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">v</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Souhrn:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Místní hodnoty a parametry</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Vložit parametry:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Vrácení:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Výjimky:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Poznámky:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">Generování zdroje pro symboly tohoto typu se nepodporuje.</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">sestavení</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">neznámé umístění</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Neočekávaný druh člena rozhraní: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Neznámý druh symbolu</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Generovat abstraktní vlastnost {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Generovat abstraktní metodu {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Generovat metodu {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">Požadované sestavení je už načtené z {0}.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Symbol nemá ikonu.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Asynchronní metody nemůžou mít parametry ref/out: [{0}].</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Člen je definovaný v metadatech.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Můžete změnit jenom signaturu konstruktoru, indexeru, metody nebo delegáta.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Tento symbol má přidružené definice nebo odkazy v metadatech. Změna jeho podpisu může vést k chybám sestavení. Chcete pokračovat?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Změnit signaturu...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Generovat nový typ...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Selhání uživatelského diagnostického analyzátoru</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">Analyzátor {0} způsobil výjimku typu {1} se zprávou {2}.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">Analyzátor {0} vrátil následující výjimku: {1}.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Zjednodušit názvy</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Zjednodušit přístup ke členům</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Odebrat kvalifikaci</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Došlo k neznámé chybě.</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">K dispozici</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Není k dispozici ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} – {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">ve zdroji</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">V souboru potlačení</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Odebrat potlačení {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Odebrat potlačení</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;Čeká&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Poznámka: Pro vložení fragmentu {0} stiskněte dvakrát tabulátor.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Implementovat rozhraní explicitně se vzorem Dispose</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Implementovat rozhraní se vzorem Dispose</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Nové určení priorit podle dostupnosti zdrojů {0}(aktuálně {1})</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">Argument nemůže mít element, který je null.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">Argument nemůže být prázdný.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">Ohlášená diagnostika s ID {0} se v analyzátoru nepodporuje.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Vypočítává se oprava kódu pro opravu všech výskytů...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Opravit všechny výskyty</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Dokument</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Projekt</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Řešení</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: Uvolněte spravovaný stav (spravované objekty).</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: Nastavte velká pole na hodnotu null.</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Kompilátor</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">Živě</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">hodnota enum</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">Pole const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">metoda</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">operátor</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">konstruktor</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">automatická vlastnost</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">vlastnost</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">přístupový objekt události</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">datum a čas rfc1123</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Specifikátory standardního formátu R nebo r představují řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.RFC1123Pattern. Vzor dodržuje definovaný standard a vlastnost je určená jen pro čtení. Proto je vždy stejná, bez ohledu na používanou jazykovou verzi nebo zadaného poskytovatele formátu. Řetězec vlastního formátu je ddd, dd MMM yyyy HH':'mm':'ss 'GMT'. Když se tento specifikátor standardního formátu použije, operace formátování nebo parsování vždy použije invariantní jazykovou verzi.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">datum a čas typu round-trip</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">Specifikátory standardního formátu O nebo o představují řetězec vlastního formátu data a času, který používá vzor, který zachovává informaci o časovém pásmu a generuje výsledný řetězec podle standardu ISO 8601. Pro hodnoty DateTime je tento specifikátor formátu navržený tak, aby v textu zachoval hodnoty data a času spolu s vlastností DateTime.Kind. Pokud se parametr styles nastaví na DateTimeStyles.RoundtripKind, formátovaný řetězec se dá parsovat zpět pomocí metod DateTime.Parse(String, IFormatProvider, DateTimeStyles) nebo DateTime.ParseExact. Specifikátory standardního formátu O nebo o odpovídají řetězci vlastního formátu yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK pro hodnoty DateTime a řetězci vlastního formátu yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz pro hodnoty DateTimeOffset. V tomto řetězci dvojice jednoduchých uvozovek, které oddělují jednotlivé znaky (třeba spojovníky, dvojtečky a písmeno T), označují, že jednotlivé znaky jsou literály a nedají se změnit. Apostrofy se ve výstupním řetězci nezobrazují. Specifikátory vlastního formátu O nebo o (a řetězec vlastního formátu yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK) využívá tři způsoby, kterými standard ISO 8601 reprezentuje informace o časovém pásmu, aby se zachovala vlastnost Kind hodnot DateTime: Složka časového pásma hodnot data a času DateTimeKind.Local je posun oproti UTC (například +01:00, -07:00). V tomto formátu se reprezentují všechny hodnoty DateTimeOffset. Složka časového pásma hodnot data a času DateTimeKind.Utc používá Z (což znamená nulový (zero) posun), pomocí kterého představuje čas UTC. Hodnoty data a času DateTimeKind.Unspecified nemají žádnou informaci o časovém pásmu. Vzhledem k tomu, že specifikátory standardního formátu O nebo o dodržují mezinárodní standard, operace formátování nebo parsování, která daný specifikátor používá, vždy používá invariantní jazykovou verzi a Gregoriánský kalendář. Řetězce, které se předávají metodám Parse, TryParse, ParseExact a TryParseExact typů DateTime a DateTimeOffset, se dají pomocí specifikátoru formátu O nebo o parsovat v případě, že mají jeden z těchto formátů. V případě objektů DateTime by přetížení parsování, které zavoláte, mělo navíc zahrnovat parametr styles s hodnotou DateTimeStyles.RoundtripKind. Poznámka: Pokud metodu parsování zavoláte s řetězcem vlastního formátu, který odpovídá specifikátoru formátu O nebo o, nedostanete výsledky shodné s O nebo o. Důvodem je to, že metody parsování, které používají řetězec vlastního formátu, nemůžou parsovat řetězcové reprezentace hodnot data a času, kterým chybí složka časového pásma nebo které označují UTC pomocí Z.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">sekunda (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">Specifikátor vlastního formátu s reprezentuje sekundy jako číslo od 0 do 59. Výsledek představuje celé sekundy, které uplynuly od poslední minuty. Sekunda s jednou číslicí se formátuje bez nuly na začátku. Pokud se specifikátor formátu s použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času s.</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">sekunda (2 číslice)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">Specifikátor vlastního formátu ss (a libovolný počet dalších specifikátorů s) reprezentuje sekundu jako číslo od 00 do 59. Výsledek představuje celé sekundy, které uplynuly od poslední minuty. Sekunda s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">krátké datum</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">Specifikátor standardního formátu d představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.ShortDatePattern konkrétní jazykové verze. Například řetězec vlastního formátu, který se vrátí pomocí vlastnosti ShortDatePattern pro invariantní jazykovou verzi, je MM/dd/yyyy.</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">krátký čas</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">Specifikátor standardního formátu t představuje řetězec vlastního formátu data a času, který se definuje pomocí aktuální vlastnosti DateTimeFormatInfo.ShortTimePattern. Například řetězec vlastního formátu pro invariantní jazykovou verzi je HH:mm.</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">seřaditelné datum a čas</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Specifikátor standardního formátu s představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.SortableDateTimePattern. Vzor dodržuje definovaný standard (ISO 8601) a vlastnost je určená jen pro čtení. Proto je vždy stejná, bez ohledu na používanou jazykovou verzi nebo zadaného poskytovatele formátu. Řetězec vlastního formátu je yyyy'-'MM'-'dd'T'HH':'mm':'ss. Účelem specifikátoru formátu s je vytvořit výsledné řetězce, které budou konzistentně seřazené vzestupně nebo sestupně podle hodnot data a času. Z toho důvodu operace formátování neupraví hodnotu formátovaného objektu data a času tak, aby odrážela vlastnost DateTime.Kind nebo její vlastnost DateTimeOffset.Offset, i když specifikátor standardního formátu s představuje hodnotu data a času v konzistentním formátu. Například výsledné řetězce vytvořené formátováním hodnot data a času 2014-11-15T18:32:17+00:00 a 2014-11-15T18:32:17+08:00 jsou totožné. Když se tento specifikátor standardního formátu použije, operace formátování nebo parsování vždy použije invariantní jazykovou verzi.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">statický konstruktor</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'Symbol nemůže být obor názvů.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">oddělovač času</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Specifikátor vlastního formátu : představuje oddělovač času, pomocí kterého se odlišují hodiny, minuty a sekundy. Správný lokalizovaný oddělovač data se načítá z vlastnosti DateTimeFormatInfo.TimeSeparator aktuální nebo zadané jazykové verze. Poznámka: Pokud chcete změnit oddělovač času pro konkrétní řetězec data a času, zadejte znak oddělovače v oddělovači literálního řetězce. Například řetězec s vlastním formátem hh'_'dd'_'ss vytvoří výsledný řetězec, ve kterém se _ (podtržítko) vždy použije jako oddělovač času. Pokud chcete oddělovač času změnit pro všechna data v jazykové verzi, buď změňte hodnotu vlastnosti DateTimeFormatInfo.TimeSeparator aktuální jazykové verze, nebo vytvořte instanci objektu DateTimeFormatInfo, přiřaďte znak do jeho vlastnosti TimeSeparator a zavolejte přetížení metody formátování, která zahrnuje parametr IFormatProvider. Pokud se specifikátor formátu : použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času a vyvolá FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">časové pásmo</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Specifikátor vlastního formátu K představuje informaci o časovém pásmu hodnoty data a času. Když se tento specifikátor formátu použije spolu s hodnotami DateTime, výsledný řetězec je definovaný hodnotou vlastnosti DateTime.Kind: Pro místní časové pásmo (hodnota vlastnosti DateTime.Kind DateTimeKind.Local) je tento specifikátor ekvivalentní specifikátoru zzz a vytvoří výsledný řetězec, který bude obsahovat místní posun od koordinovaného univerzálního času (UTC), třeba -07:00. Pro čas UTC (hodnota vlastnosti DateTime.Kind DateTimeKind.Utc) výsledný řetězec zahrnuje znak Z, který představuje datum UTC. Pro čas z neurčeného časového pásma (čas, jehož vlastnost DateTime.Kind se rovná DateTimeKind.Unspecified) je výsledek ekvivalentní k String.Empty. Pro hodnoty DateTimeOffset je specifikátor formátu K ekvivalentní specifikátoru formátu zzz a vytváří výsledný řetězec, který obsahuje posun hodnoty DateTimeOffset proti UTC. Pokud se specifikátor formátu K použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času a vyvolá FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">omezení typu</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">parametr typu</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">atribut</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Nahradit {0} a {1} vlastností</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Nahradit {0} vlastností</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Implicitně odkazovaná metoda</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Generovat typ {0}</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Generovat {0} {1}</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Změnit {0} na {1}</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Nevyvolávaná metoda nejde nahradit vlastností.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Vlastností jdou nahradit jenom metody s jedním argumentem, který nepředstavuje deklaraci externí proměnné.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Instance analyzátoru {0} nejde vytvořit z {1}: {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">Sestavení {0} neobsahuje žádné analyzátory.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Nejde načíst sestavení analyzátoru {0}: {1}.</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Nastavit metodu jako synchronní</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">z: {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Najít a nainstalovat nejnovější verzi</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Použít místní verzi {0}</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Použít místně nainstalovanou {0} verzi {1}. Tato verze se používá zde: {2}.</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Najít a nainstalovat nejnovější verzi aplikace {0}</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Nainstalovat s použitím Správce balíčků...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Nainstalovat {0} {1}</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Nainstalovat verzi {0}</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Generovat proměnnou {0}</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Třídy</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Konstanty</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Delegáti</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Výčty</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Události</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Metody rozšíření</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Pole</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Rozhraní</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Místní hodnoty</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Metody</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Moduly</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Obory názvů</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Vlastnosti</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Struktury</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parametry:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Variadické SignatureHelpItem musí mít nejmíň jeden parametr.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Nahradit {0} metodou</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Nahradit {0} metodami</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Na vlastnost se odkazuje implicitně.</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Vlastnost se nedá bezpečně nahradit voláním metody.</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Převést na interpolovaný řetězec</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Přesunout typ do {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Přejmenovat soubor na {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Přejmenovat typ na {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Odebrat značku</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Přidat chybějící uzly parametrů</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Převést obsažený obor na asynchronní</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Převést obsažený obor na asynchronní (návratová hodnota Task)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(neznámé)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Použít typ architektury</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Nainstalovat balíček {0}</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">projekt {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">Plně kvalifikovat: {0}</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Odebrat odkaz na {0}</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Klíčová slova</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Fragmenty</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Všechna písmena malá</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Všechna písmena velká</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Velké první písmeno prvního slova</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">PascalCase</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Odebrat dokument {0}</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Přidat dokument {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Přidat název argumentu {0}</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Vzít {0}</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Vzít obojí</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Vzít dolní</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Vzít horní</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Odebrat nepoužívanou proměnnou</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Převést do binární soustavy</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Převést do desítkové soustavy</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Převést do šestnáctkové soustavy</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Oddělit tisíce</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Oddělit slova</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Oddělit nibbly</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Odebrat oddělovače</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Přidat parametr do {0}</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Generovat konstruktor...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Vyberte členy, kteří se mají použít jako parametry konstruktoru.</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Vyberte členy, kteří se mají použít v Equals/GetHashCode.</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Generovat přepsání...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Vyberte členy, které chcete přepsat.</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Přidat kontrolu hodnot null</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Přidat kontrolu metody string.IsNullOrEmpty</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Přidat kontrolu metody string.IsNullOrWhiteSpace</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Inicializovat pole {0}</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Inicializovat vlastnost {0}</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Přidat kontroly hodnot null</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Generovat operátory</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Implementovat {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">Zdroj vykazované diagnostiky {0} je umístěný v souboru {1}, který není součástí analyzované kompilace.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">Zdroj vykazované diagnostiky {0} má umístění {1} v souboru {2}, což je mimo daný soubor.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">v {0} (projekt {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Přidat Modifikátory dostupnosti</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Přesunout deklaraci do blízkosti odkazu</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Převést na celou vlastnost</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Upozornění: Metoda potlačí symbol z metadat.</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Použít {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Přidat název argumentu {0} (včetně koncových argumentů)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">lokální funkce</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">indexer</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Alias nejednoznačného typu {0}</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Upozornění: Během iterace se kolekce změnila.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Upozornění: Proměnná iterace překročila hranici funkce.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Upozornění: Během iterace se kolekce může změnit.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">univerzální datum a čas</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">Specifikátor standardního formátu U představuje řetězec vlastního formátu data a času definovaný vlastností DateTimeFormatInfo.FullDateTimePattern konkrétní jazykové verze. Vzor je stejný jako vzor F. Hodnota DateTime se ale před formátováním automaticky převede na UTC.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">univerzální seřaditelné datum a čas</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">Specifikátor standardního formátu u představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.UniversalSortableDateTimePattern. Vzor dodržuje definovaný standard a vlastnost je určená jen pro čtení. Proto je vždy stejná, bez ohledu na používanou jazykovou verzi nebo zadaného poskytovatele formátu. Řetězec vlastního formátu je yyyy'-'MM'-'dd HH':'mm':'ss'Z'. Když se tento specifikátor standardního formátu použije, operace formátování nebo parsování vždy použije invariantní jazykovou verzi. I když by výsledný řetězec měl vyjadřovat čas ve formátu UTC (Coordinated Universal Time), během operace formátování se původní hodnota DateTime nijak nepřevádí. Proto je nutné ji před formátováním převést na UTC pomocí metody DateTime.ToUniversalTime.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">aktualizace použití v obsahujícím členu</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">aktualizace použití v obsahujícím projektu</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">aktualizace použití v obsahujícím typu</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">aktualizace použití v závislých projektech</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">posun hodiny a minuty proti UTC</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">U hodnot DateTime specifikátor vlastního formátu zzz představuje posun časového pásma místního operačního systému od UTC se znaménkem, který se měří v hodinách a minutách. Neodráží hodnotu vlastnosti DateTime.Kind instance. Z toho důvodu se specifikátor formátu zzz nedoporučuje používat s hodnotami DateTime. U hodnot DateTimeOffset tento specifikátor formátu představuje posun hodnoty DateTimeOffset od času UTC v hodinách a minutách. Posun se vždy zobrazuje se znaménkem na začátku. Znaménko plus (+) označuje hodiny před UTC a znaménko minus (-) pak hodiny za UTC. Posun s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">posun hodin proti UTC (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">U hodnot DateTime specifikátor vlastního formátu z představuje posun časového pásma místního operačního systému od koordinovaného univerzálního času (UTC) se znaménkem, který se měří v hodinách. Neodráží hodnotu vlastnosti DateTime.Kind instance. Z toho důvodu se specifikátor formátu z nedoporučuje používat s hodnotami DateTime. U hodnot DateTimeOffset tento specifikátor formátu představuje posun hodnoty DateTimeOffset od času UTC v hodinách. Posun se vždy zobrazuje se znaménkem na začátku. Znaménko plus (+) označuje hodiny před UTC a znaménko minus (-) pak hodiny za UTC. Posun s jednou číslicí se formátuje bez nuly na začátku. Pokud se specifikátor formátu z použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času a vyvolá FormatException.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">posun hodin proti UTC (2 číslice)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">U hodnot DateTime specifikátor vlastního formátu zz představuje posun časového pásma místního operačního systému od UTC se znaménkem, který se měří v hodinách. Neodráží hodnotu vlastnosti DateTime.Kind instance. Z toho důvodu se specifikátor formátu zz nedoporučuje používat s hodnotami DateTime. U hodnot DateTimeOffset tento specifikátor formátu představuje posun hodnoty DateTimeOffset od času UTC v hodinách. Posun se vždy zobrazuje se znaménkem na začátku. Znaménko plus (+) označuje hodiny před UTC a znaménko minus (-) pak hodiny za UTC. Posun s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">Rozsah [x-y] je v obráceném pořadí.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">rok (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">Specifikátor vlastního formátu y reprezentuje rok jako jedno- nebo dvoumístné číslo. Pokud má rok více než dvě číslice, ve výsledku se budou nacházet jen dvě číslice nižšího řádu. Pokud první číslice dvoumístného roku začíná nulou (třeba 2008), číslo se formátuje bez nuly na začátku. Pokud se specifikátor formátu y použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času y.</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">rok (2 číslice)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">Specifikátor vlastního formátu yy reprezentuje rok jako dvoumístné číslo. Pokud má rok více než dvě číslice, ve výsledku se budou nacházet jen dvě číslice nižšího řádu. Pokud má dvoumístný rok méně než dvě platné číslice, číslo se doplní nulami na začátku, aby mělo dvě číslice. Při operaci parsování se dvoumístný rok parsovaný pomocí specifikátoru vlastního formátu interpretuje podle vlastnosti Calendar.TwoDigitYearMax aktuálního kalendáře poskytovatele formátu. Následující příklad parsuje řetězcovou reprezentaci data, která má dvoumístný rok, pomocí výchozího Gregoriánského kalendáře jazykové verze en-US, která je v tomto případě zároveň aktuální jazykovou verzí. Pak změní objekt CultureInfo aktuální jazykové verze tak, aby používala objekt GregorianCalendar, jehož vlastnost TwoDigitYearMax bude upravená.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">rok (3–4 číslice)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">Specifikátor vlastního formátu yyy představuje rok s nejméně třemi číslicemi. Pokud má rok více než tři platné číslice, zahrnou se do výsledného řetězce. Pokud má rok méně než tři číslice, číslo se doplní nulami na začátku, aby mělo tři číslice.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">rok (4 číslice)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">Specifikátor vlastního formátu yyyy představuje rok s nejméně čtyřmi číslicemi. Pokud má rok více než čtyři platné číslice, zahrnou se do výsledného řetězce. Pokud má rok méně než čtyři číslice, číslo se doplní nulami na začátku, aby mělo čtyři číslice.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">rok (5 číslic)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">Specifikátor vlastního formátu yyyyy (a libovolný počet dalších specifikátorů y) představuje rok s nejméně pěti číslicemi. Pokud má rok více než pět platných číslic, zahrnou se do výsledného řetězce. Pokud má rok méně než pět číslic, číslo se doplní nulami na začátku, aby mělo pět číslice. Pokud se použijí další specifikátory y, číslo se doplní tolika nulami na začátku, kolik jich je potřeba, aby vzniklo číslo odpovídající specifikátorům y.</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">měsíc v roce</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">Specifikátory standardního formátu Y nebo y představují řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.ShortTimePattern zadané jazykové verze. Například řetězec vlastního formátu pro invariantní jazykovou verzi je yyyy MMMM.</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="cs" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (zkráceno)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">Specifikátor vlastního formátu t představuje první znak údaje dop/odp. Správný lokalizovaný údaj se načítá z vlastnosti DateTimeFormatInfo.AMDesignator nebo DateTimeFormatInfo.PMDesignator aktuální nebo konkrétní jazykové verze. Údaj dop se používá pro časy od 0:00:00 (půlnoc) do 11:59:59.999. Údaj odp se používá pro časy od 12:00:00 (poledne) do 23:59:59.999. Pokud se specifikátor formátu t použije bez dalších vlastních specifikátorů formátu, interpretuje se jako standardní specifikátor formátu data a času t.</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (úplné)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">Specifikátor vlastního formátu tt (a jakýkoli počet dalších specifikátorů t) představuje celý údaj dop/odp. Správný lokalizovaný údaj se načítá z vlastnosti DateTimeFormatInfo.AMDesignator nebo DateTimeFormatInfo.PMDesignator aktuální nebo konkrétní jazykové verze. Údaj dop se používá pro časy od 0:00:00 (půlnoc) do 11:59:59.999. Údaj odp se používá pro časy od 12:00:00 (poledne) do 23:59:59.999. Ujistěte se, že specifikátor tt použijete pro jazyky, pro které je nezbytné zachovat rozlišení mezi dop a odp. Příkladem může být japonština, pro kterou se údaje dop a odp liší namísto prvního znaku ve znaku sekundy.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Odčítání musí být posledním prvkem ve třídě znaků.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Přidat atribut DebuggerDisplay</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Přidat explicitní přetypování</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Přidat název členu</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Přidat kontroly hodnot null u všech parametrů</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Přidat volitelný parametr do konstruktoru</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Přidat parametr do {0} (a přepsání/implementace)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Přidat parametr do konstruktoru</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Přidat odkaz na projekt do {0}</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Přidat odkaz do {0}</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Akce nemůžou zůstat prázdné.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Přidat název elementu řazené kolekce členů {0}</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Zarovnat zalomené argumenty</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Zarovnat zalomené parametry</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Podmínky alternativního výrazu nemůžou být komentáře.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Podmínky alternativního výrazu nezachytávají a nejde je pojmenovat.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Použít předvolby hlaviček souborů</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Použít předvolby inicializace objektu/kolekce</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">Očekávaná úloha vrací {0}.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">Očekávaná úloha nevrací žádnou hodnotu.</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Základní třídy obsahují nepřístupné nenaimplementované členy.</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Změny se nedají použít – neočekávaná chyba: {0}</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Do rozsahu znaků nejde zahrnout třídu \{0}.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Čísla skupin digitalizace musí být menší nebo rovny hodnotě Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Počet zachytávání nemůže být nulový</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;vyvodit&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;vynechat&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Změnit na globální obor názvů</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Když se běh zastaví na výjimce, změny se nepovolují.</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Změny provedené v projektu {0} se nepoužijí, dokud je aplikace spuštěná.</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application"> <source>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</source> <target state="new">Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Nakonfigurovat styl kódu {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Nakonfigurovat závažnost {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Nakonfigurujte závažnost pro všechny analyzátory {0}.</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Nakonfigurujte závažnost pro všechny analyzátory.</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Převést na LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Přidat do {0}</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Převést na třídu</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Převést na LINQ (volání formuláře)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Převést na záznam</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Převést na strukturu záznamu</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Převést na strukturu</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Převést typ na {0}</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Vytvořit a přiřadit pole {0}</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Vytvořit a přiřadit vlastnost {0}</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Vytvořit a přiřadit zbývající položky jako pole</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Vytvořit a přiřadit zbývající položky jako vlastnosti</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Neměňte tento kód. Kód pro vyčištění vložte do metody {0}.</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Aktuální obsah zdrojového souboru {0} se neshoduje se sestaveným zdrojem. Případné změny provedené v tomto souboru během ladění se nepoužijí, dokud se jeho obsah nebude shodovat se sestaveným zdrojem.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Dokument musí být obsažený v pracovním prostoru, který vytvořil tuto datovou službu</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Upravit a pokračovat</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Modul zakázal funkci Upravit a pokračovat.</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Změny provedené v projektu {0} znemožní relaci ladění pokračovat dále: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">Modul runtime nepodporuje Upravit a pokračovat.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Při čtení souboru {0} došlo k chybě: {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Při vytváření instance CodeFixProvider došlo k chybě.</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Při vytváření instance CodeFixProvider {0} došlo k chybě.</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Příklad:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Příklady:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Explicitně implementované metody záznamů musí mít názvy parametrů, které odpovídají kompilátorem vygenerovanému ekvivalentu {0}.</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Extrahovat základní třídu...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Extrahovat rozhraní...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Extrahovat lokální funkci</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Extrahovat metodu</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Nepovedlo se analyzovat tok dat pro: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Opravit formátování</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Opravit překlep {0}</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Formátovat dokument</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Formátuje se dokument.</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Vygenerovat operátory porovnání</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Vygenerovat konstruktor v {0} (s poli)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Vygenerovat konstruktor v {0} (s vlastnostmi)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Vygenerovat pro {0}</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Generovat parametr {0}</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Generovat parametr {0} (a přepsání/implementace)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Znak \ na konci vzorku je neplatný.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">Neplatné {x,y} s x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Implementovat rozhraní {0} explicitně</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Implementovat rozhraní {0} implicitně</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Implementovat abstraktní třídu</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Implementovat všechna rozhraní explicitně</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Implementovat všechna rozhraní implicitně</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Implementovat všechny členy explicitně</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Implementovat explicitně</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Implementovat implicitně</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Implementovat zbývající členy explicitně</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Implementovat přes {0}</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Neúplné uvození znaků \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Odsadit všechny argumenty</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Odsadit všechny parametry</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Odsadit zalomené argumenty</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Odsadit zalomené parametry</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">Inline refaktoring metody {0}</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Inline refaktoring metody {0} se zachováním deklarace</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Nedostatek šestnáctkových číslic</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Zavést konstantu</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Zavést pole</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Zavést místní</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Zavést proměnnou dotazu</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Neplatný název skupiny: Názvy skupin musí začínat znakem slova.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Nastavit třídu jako abstract</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Nastavit jako statickou</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Převrátit podmínku</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">chybný formát</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Chybně formátovaná řídicí sekvence znaků \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Chybně naformátovaný pojmenovaný zpětný odkaz \k&lt;...&gt;</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Sloučit s vnořeným příkazem {0}</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Sloučit s dalším příkazem {0}</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Sloučit s vnějším příkazem {0}</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Sloučit s předchozím příkazem {0}</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">Metoda {0} musí vrátit stream, který podporuje operace čtení a hledání.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Chybí řídicí znak</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Přesunout obsah do oboru názvů...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Přesunout soubor do: {0}</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Přesunout soubor do kořenové složky projektu</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Přesunout do oboru názvů...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Vnořený kvantifikátor {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Není k dispozici žádné platné umístění, kam vložit volání metody.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Nedostatek znaků )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operátory</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">Odkaz na vlastnost se nedá aktualizovat.</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Povýšit {0}</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Povýšit {0} na {1}</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Povýšit členy na základní typ...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Načíst členy do nové základní třídy...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Před kvantifikátorem {x,y} není nic uvedeno.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">odkaz na nedefinovanou skupinu</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Odkaz na nedefinovaný název skupiny {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Odkaz na nedefinované číslo skupiny {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Všechny řídicí znaky. Patří k nim kategorie Cc, Cf, Cs, Co a Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">všechny řídicí znaky</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Všechny značky diakritických znamének. Patří k nim kategorie Mn, Mc a Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">všechny značky diakritických znamének</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Všechny znaky písmen. Patří k nim znaky Lu, Ll, Lt, Lm a Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">všechny znaky písmen</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Všechna čísla. Patří k nim kategorie Nd, Nl a No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">všechna čísla</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Všechny znaky interpunkce. Patří k nim kategorie Pc, Pd, Ps, Pe, Pi, Pf a Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">všechny znaky interpunkce</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Všechny oddělovací znaky. Patří k nim kategorie Zs, Zl a Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">všechny oddělovací znaky</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Všechny symboly. Patří k nim kategorie Sm, Sc, Sk a So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">všechny symboly</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Můžete použít znak svislé čáry (|), pokud se má položka shodovat s libovolným vzorem z řady, ve které znak | odděluje jednotlivé vzory.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">alternace</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Znak tečky (.) odpovídá libovolnému znaku s výjimkou \n (znak nového řádku \u000A). Pokud je vzor regulárního výrazu modifikovaný možností RegexOptions.Singleline nebo pokud je část vzoru obsahující třídu znaků tečky modifikovaná parametrem s, pak znak tečky odpovídá libovolnému znaku.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">libovolný znak</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Atomové skupiny (označované v některých jiných modulech regulárních výrazů jako podvýrazy bez zpětného vyhledávání, atomické podvýrazy nebo jednorázové podvýrazy) zakazují zpětné vyhledávání. Modul regulárních výrazů najde shodu s co nejvíce znaky ve vstupním řetězci. Pokud se žádná další shoda nenajde, neprovede se zpětné vyhledávání za účelem pokusu o porovnávání alternativního vzoru. (To znamená, že dílčí výraz najde shodu jenom s řetězci, které by odpovídaly samotnému dílčímu výrazu. Nepokusí se porovnávat řetězec na základě dílčího výrazu a jakýchkoli dílčích výrazů, které následují.) Tato možnost se doporučuje, pokud víte, že zpětné vyhledávání nepovede k úspěchu. Když zabráníte, aby modul regulárních výrazů prováděl zbytečná hledání, zlepší se výkon.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">atomová skupina</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Shoda se znakem Backspace \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">znak Backspace</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Definice vyrovnávací skupiny odstraní definici dříve definované skupiny a uloží interval mezi dříve definovanou skupinou a aktuální skupinou do aktuální skupiny. Skupina name1 je aktuální skupina (volitelná), skupina name2 je dříve definovaná skupina a subexpression je libovolný platný vzor regulárního výrazu. Definice vyrovnávací skupiny odstraní definici skupiny name2 a uloží interval mezi skupinami name2 a name1 do skupiny name1. Pokud není definována žádná skupina name2, porovnávání se vrátí zpět. Vzhledem k tomu, že odstraněním poslední definice skupiny name2 se odkryje předchozí definice skupiny name2, umožňuje tento konstruktor použít zásobník zachycení pro skupinu name2 jako čítač pro uchování přehledu o vnořených konstruktorech, jako jsou kulaté nebo hranaté otevírací a uzavírací závorky. Definice vyrovnávací skupiny používá jako zásobník skupinu name2. Počáteční znak každého vnořeného konstruktoru se umístí do této skupiny a do její kolekce Group.Captures. Po nalezení uzavíracího znaku se odpovídající otevírací znak odebere ze skupiny a kolekce Captures se zmenší o jednu položku. Po nalezení otevíracích a uzavíracích znaků všech vnořených konstruktorů bude skupina name1 prázdná.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">vyrovnávací skupina</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">základní skupina</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Shoda se znakem zvonku \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">znak zvonku</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Shoda se znakem návratu na začátek řádku \u000D. Upozorňujeme, že \r není ekvivalentem znaku nového řádku \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">znak návratu na začátek řádku</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">Odčítání třídy znaků poskytuje sadu znaků, která je výsledkem vyloučení znaků v jedné třídě znaků z jiné třídy znaků. Base_group je pozitivní nebo negativní skupina znaků nebo rozsah. Komponenta excluded_group je jiná pozitivní nebo negativní skupina znaků nebo jiný výraz odčítání třídy znaků (to znamená, že výrazy odčítání třídy znaků lze vnořovat).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">odčítání třídy znaků</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">skupina znaků</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">komentář</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Tento element jazyka se pokusí najít shodu s jedním ze dvou vzorů na základě toho, jestli se najde shoda s počátečním vzorem. Expression je počáteční vzor, pro který se hledá shoda, yes je vzor, pro který se hledá shoda, pokud se pro expression najde shoda, a no je volitelný vzor, pro který se hledá shoda, pokud se pro expression nenajde shoda.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">podmíněná shoda výrazu</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Tento element jazyka se pokusí najít shodu s jedním ze dvou vzorů na základě toho, jestli se najde shoda se zadanou zachycující skupinou. Name je název (nebo číslo) zachycující skupiny, yes je výraz, pro který se hledá shoda, pokud se daný název (nebo číslo) najde, a no je volitelný výraz, pro který se hledá shoda, pokud se tato položka nenajde.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">podmíněná shoda skupiny</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">Ukotvení \G určuje, že ke shodě musí dojít v místě, kde bylo předchozí porovnávání ukončeno. Pokud použijete toto ukotvení s metodou Regex.Matches nebo Match.NextMatch, zajistí se, že všechna porovnávání budou souvislá.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">souvislá porovnávání</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Shoda s řídicím znakem ASCII, kde X je písmeno řídicího znaku. Například \cC je CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">řídicí znak</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d odpovídá libovolné desítkové číslici. Jde o ekvivalent vzoru regulárního výrazu \p{Nd}, který zahrnuje standardní desítkové číslice 0–9 a také desítkové číslice některých jiných znakových sad. Pokud je zadané chování kompatibilní s ECMAScriptem, je \d ekvivalentem [0-9].</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">znak desítkové číslice</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Symbol čísla (#) označuje komentář v režimu X, který začíná znakem #, který není řídicím znakem, na konci vzoru regulárního výrazu a pokračuje do konce řádku. Pokud chcete použít tento konstruktor, musíte buď povolit možnost x (prostřednictvím vložených možností), nebo při vytváření instance objektu Regex nebo volání statické metody Regex zadat pro parametr možnosti hodnotu RegexOptions.IgnorePatternWhitespace.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">komentář na konci řádku</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">Ukotvení \z určuje, že ke shodě musí dojít na konci vstupního řetězce. Podobně jako element jazyka $ i \z ignoruje možnost RegexOptions.Multiline. Na rozdíl od elementu jazyka \Z nenajde \z shodu se znakem \n na konci řetězce. Proto může hledat shodu jenom v posledním řádku vstupního řetězce.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">jen konec řetězce</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">Ukotvení \Z určuje, že ke shodě musí dojít na konci vstupního řetězce nebo před \n na konci vstupního řetězce. Je identické s ukotvením $, kromě toho, že \Z ignoruje možnost RegexOptions.Multiline. Proto ve víceřádkovém řetězci může najít shodu jenom na konci posledního řádku nebo v posledním řádku před \n. Ukotvení \Z najde shodu s \n, ale nenajde shodu s \r\n (kombinace znaků CR/LF). Pokud chcete hledat znaky CR/LF, zadejte do vzoru regulárního výrazu \r?\Z.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">konec řetězce nebo před koncem nového řádku</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">Ukotvení $ určuje, že se předchozí vzor musí vyskytovat na konci vstupního řetězce nebo před \n na konci vstupního řetězce. Pokud použijete $ s možností RegexOptions.Multiline, může ke shodě dojít i na konci řádku. Ukotvení $ najde shodu s \n, ale nenajde shodu s \r\n (kombinace znaků návratu na začátek řádku a nového řádku, tedy znaků CR/LF). Pokud chcete hledat kombinaci znaků CR/LF, zadejte do vzoru regulárního výrazu \r?$.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">konec řetězce nebo řádku</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Shoda s řídicím znakem \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">řídicí znak</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">vyloučená skupina</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">výraz</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Shoda se znakem pro novou stránku \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">znak pro novou stránku</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Tento seskupovací konstruktor povoluje nebo zakazuje možnosti zadané v rámci výrazu subexpression. Možnosti, které se povolují, se zadávají za otazník a možnosti, které se zakazují, za symbol minus. Povolené možnosti: i Použije se porovnávání bez rozlišování malých a velkých písmen. m Použije se víceřádkový režim, kde ^ a $ odpovídají začátku a konci každého řádku (místo začátku a konce vstupního řetězce). s Použije se jednořádkový režim, kde tečka (.) odpovídá každému znaku (místo každému znaku kromě \n). n Nezachytává nepojmenované skupiny. Jediná platná zachycení představují explicitně pojmenované nebo číslované skupiny formuláře (? &lt;name&gt; subexpression). x Vyloučí ze vzoru prázdné znaky, které nejsou řídicími znaky, a povolí komentáře za symbolem čísla (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">seskupovací možnosti</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Shoda se znakem ASCII, kde ## je dvouciferný šestnáctkový kód znaku</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">šestnáctkový únikový znak</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">Konstruktor (?# komentář) umožňuje zahrnout vložený komentář do regulárního výrazu. Modul regulárních výrazů nepoužije při porovnávání vzorů žádnou část komentáře, i když je komentář obsažený v řetězci, který vrací metoda Regex.ToString. Komentář končí první uzavírací závorkou.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">vložený komentář</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Povoluje nebo zakazuje specifické možnosti pro porovnávání vzorů pro zbytek regulárního výrazu. Možnosti, které se povolují, se zadávají za otazník a možnosti, které se zakazují, za symbol minus. Povolené možnosti: i Použije se porovnávání bez rozlišování malých a velkých písmen. m Použije se víceřádkový režim, kde ^ a $ odpovídají začátku a konci každého řádku (místo začátku a konce vstupního řetězce). s Použije se jednořádkový režim, kde tečka (.) odpovídá každému znaku (místo každému znaku kromě \n). n Nezachytává nepojmenované skupiny. Jediná platná zachycení představují explicitně pojmenované nebo číslované skupiny formuláře (? &lt;name&gt; subexpression). x Vyloučí ze vzoru prázdné znaky, které nejsou řídicími znaky, a povolí komentáře za symbolem čísla (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">vložené možnosti</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Problém s regulárním výrazem: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">písmeno, malá písmena</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">písmeno, modifikátor</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">písmeno, jiné</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">písmeno, velká počáteční písmena</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">písmeno, velká písmena</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">značka, uzavření</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">značka, bez mezer</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">značka, kombinování mezer</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">Kvantifikátor {n,}? najde shodu předchozího elementu nejméně n-krát, kde n je celé číslo, ale co nejméněkrát. Jedná se o líný protějšek hladového kvantifikátoru {n,}.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">shoda nejméně n-krát (líný režim)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">Kvantifikátor {n,} najde shodu předchozího elementu nejméně n-krát, kde n je celé číslo. {n,} je hladový kvantifikátor, jehož líným ekvivalentem je {n,}?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">shoda nejméně n-krát</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">Kvantifikátor {n,m}? najde shodu předchozího elementu v rozmezí n-krát a m-krát, kde n a m jsou celá čísla, ale co nejméněkrát. Jedná se o líný protějšek hladového kvantifikátoru {n,m}.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">shoda nejméně n-krát (líný režim)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">Kvantifikátor {n,m} najde shodu předchozího elementu nejméně n-krát, ale nejvíce m-krát, kde n a m jsou celá čísla. {n,m} je hladový kvantifikátor, jehož líným ekvivalentem je {n,m}?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">shoda v rozmezí m-krát a n-krát</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">Kvantifikátor {n}? najde shodu předchozího elementu přesně n-krát, kde n je celé číslo. Jedná se o líný protějšek hladového kvantifikátoru {n}+.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">shoda přesně n-krát (líný režim)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">Kvantifikátor {n} najde shodu předchozího elementu přesně n-krát, kde n je libovolné celé číslo. {n} je hladový kvantifikátor, jehož líným ekvivalentem je {n}?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">shoda přesně n-krát</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">Kvantifikátor +? najde shodu předchozího elementu 1krát nebo vícekrát, ale co nejméněkrát. Jedná se o líný protějšek hladového kvantifikátoru +.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">shoda 1krát nebo vícekrát (líný režim)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">Kvantifikátor + najde shodu předchozího elementu 1krát nebo vícekrát. Jedná se o ekvivalent kvantifikátoru {1,}. + je hladový kvantifikátor, jehož líným ekvivalentem je +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">shoda 1krát nebo vícekrát</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">Kvantifikátor *? najde shodu předchozího elementu 0krát nebo vícekrát, ale co nejméněkrát. Jedná se o líný protějšek hladového kvantifikátoru *.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">shoda 0krát nebo vícekrát (líný režim)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">Kvantifikátor * najde shodu předchozího elementu 0krát nebo vícekrát. Jedná se o ekvivalent kvantifikátoru {0,}. * je hladový kvantifikátor, jehož líným ekvivalentem je *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">shoda 0krát nebo vícekrát</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">Kvantifikátor ?? najde shodu předchozího elementu 0krát nebo 1krát, ale co nejméněkrát. Jedná se o líný protějšek hladového kvantifikátoru ?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">shoda 0krát nebo 1krát (líný režim)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">Kvantifikátor ? najde shodu předchozího elementu 0krát nebo 1krát. Jedná se o ekvivalent kvantifikátoru {0,1}. ? je hladový kvantifikátor, jehož líným ekvivalentem je ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">shoda 0krát nebo 1krát</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Tento seskupovací konstruktor zachytává porovnávaný dílčí výraz, kde dílčí výraz je libovolný platný vzor regulárního výrazu. Zachycení, která používají závorky, jsou automaticky číslována zleva doprava podle pořadí otevíracích závorek v regulárním výrazu, počínaje od hodnoty jedna. Zachycení s číslem nula je text odpovídající celému vzoru regulárního výrazu.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">porovnávaný dílčí výraz</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">název</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">název nebo číslo</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Pojmenovaná nebo číslovaná zpětná reference. Název představuje název zachycující skupiny definované ve vzoru regulárního výrazu.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">pojmenovaná zpětná reference</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Zachytává porovnávaný dílčí výraz a umožňuje k němu přístup pomocí názvu nebo čísla. Název je platný název skupiny a dílčí výraz je libovolný platný vzor regulárního výrazu. Název nesmí obsahovat znaky interpunkce a nesmí začínat číslicí. Pokud parametr RegexOptions metody odpovídající vzoru regulárního výrazu obsahuje příznak RegexOptions.ExplicitCapture nebo pokud je u daného dílčího výrazu použitá možnost n, je jediným způsobem, jak zachytit dílčí výraz, explicitní pojmenování zachycujících skupin.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">pojmenovaný porovnávaný dílčí výraz</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Negativní skupina znaků určuje seznam znaků, které se nesmí vyskytovat ve vstupním řetězci, aby došlo ke shodě. Seznam znaků se zadává jednotlivě. Je možné zřetězit dva nebo více rozsahů znaků. Pokud chcete například zadat rozsah desítkových číslic od 0 do 9, rozsah malých písmen od a do f a rozsah velkých písmen od A do F, použijte [0-9A-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">negativní skupina znaků</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Negativní rozsah znaků určuje seznam znaků, které se nesmí vyskytovat ve vstupním řetězci, aby došlo ke shodě. firstCharacter je znak, kterým rozsah začíná, a lastCharacter je znak, kterým rozsah končí. Je možné zřetězit dva nebo více rozsahů znaků. Pokud chcete například zadat rozsah desítkových číslic od 0 do 9, rozsah malých písmen od a do f a rozsah velkých písmen od A do F, použijte [0-9A-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">negativní rozsah znaků</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Konstruktor regulárního výrazu \P{ name } odpovídá libovolnému znaku, který nepatří do obecné kategorie Unicode nebo pojmenovaného bloku, kde name je zkratka pro kategorii nebo název pojmenovaného bloku.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">negativní kategorie Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Shoda se znakem pro nový řádek \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">znak pro nový řádek</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">ne</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D odpovídá libovolnému nečíselnému znaku. Je ekvivalentem vzoru regulárního výrazu \P{Nd}. Pokud je zadané chování kompatibilní s ECMAScriptem, je \D ekvivalentem [^0-9].</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">nečíselný znak</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S odpovídá libovolnému neprázdnému znaku. Je ekvivalentem vzoru regulárního výrazu [^\f\n\r\t\v\x85\p{Z}] nebo opakem vzoru regulárního výrazu, který je ekvivalentem \s, který najde prázdné znaky. Pokud je zadané chování kompatibilní s ECMAScriptem, je \S ekvivalentem [^ \f\n\r\t\v].</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">neprázdný znak</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">Ukotvení \B určuje, že shoda se nesmí vyskytovat na hranici slova. Jedná se o opak ukotvení \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">mimo hranici slova</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W odpovídá jakémukoli znaku, který není znakem slova. Odpovídá libovolnému znaku s výjimkou znaků v následujících kategoriích Unicode: Ll písmeno, malá písmena Lu písmeno, velká písmena Lt písmeno, velká počáteční písmena Lo písmeno, jiné Lm písmeno, modifikátor Mn značka, bez mezer Nd číslo, desítkové číslo Pc interpunkce, spojovník Pokud je zadané chování kompatibilní s ECMAScriptem, je \W ekvivalentem [^a-zA-Z_0-9].</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">znak, který není znakem slova</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Tento konstruktor nezachycuje dílčí řetězec, který odpovídá dílčímu výrazu: Konstruktor nezachycující skupiny se obvykle používá, když se kvantifikátor aplikuje pro skupinu, ale dílčí řetězce zachycené skupinou uživatele nezajímají. Pokud regulární výraz obsahuje vnořené seskupovací konstruktory, vnější konstruktor nezachycující skupiny se neaplikuje na vnitřní vnořené konstruktory skupiny.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">nezachycující skupina</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">číslo, desítkové číslo</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">číslo, písmeno</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">číslo, jiné</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Číslovaná zpětná reference, kde číslo je pořadové umístění zachycující skupiny v regulárním výrazu. Například \4 odpovídá obsahu čtvrté zachycující skupiny. Existuje nejednoznačnost mezi osmičkovými řídicími kódy (například \16) a zpětnými referencemi \číslo, které používají stejný zápis. Pokud nejednoznačnost způsobuje potíže, můžete použít zápis \k&lt;name&gt;, který je jednoznačný a nedá se zaměnit s osmičkovými kódy znaků. Stejně tak šestnáctkové kódy, například \xdd, jsou jednoznačné a nedají se zaměnit se zpětnými referencemi.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">číslovaná zpětná reference</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">jiné, řídicí</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">jiné, formát</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">jiné, nepřiřazeno</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">jiné, privátní použití</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">jiné, náhradní</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Pozitivní skupina znaků určuje seznam znaků, z nichž kterýkoli se může objevit ve vstupním řetězci, aby došlo ke shodě.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">pozitivní skupina znaků</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Pozitivní rozsah znaků určuje rozsah znaků, z nichž kterýkoli se může objevit ve vstupním řetězci, aby došlo ke shodě. firstCharacter je znak, kterým rozsah začíná, a lastCharacter je znak, kterým rozsah končí.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">pozitivní rozsah znaků</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">interpunkce, uzavření</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">interpunkce, spojovník</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">interpunkce, pomlčka</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">interpunkce, koncová uvozovka</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">interpunkce, počáteční uvozovka</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">interpunkce, otevření</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">interpunkce, jiné</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">oddělovač, čára</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">oddělovač, odstavec</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">oddělovač, mezera</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">Ukotvení \A určuje, že ke shodě musí dojít na začátku vstupního řetězce. Je identické s ukotvením ^, kromě toho, že \A ignoruje možnost RegexOptions.Multiline. Proto může hledat shodu jenom na začátku prvního řádku ve víceřádkovém vstupním řetězci.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">jen začátek řetězce</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">Ukotvení ^ určuje, že následující vzor musí začínat na pozici prvního znaku řetězce. Pokud použijete ^ s možností RegexOptions.Multiline, musí ke shodě dojít na začátku každého řádku.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">začátek řetězce nebo řádku</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">dílčí výraz</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">symbol, měna</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">symbol, matematický</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">symbol, modifikátor</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">symbol, jiné</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Shoda se znakem tabulátoru \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">znak tabulátoru</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Konstruktor regulárního výrazu \p{ name } odpovídá libovolnému znaku, který patří do obecné kategorie Unicode nebo pojmenovaného bloku, kde name je zkratka pro kategorii nebo název pojmenovaného bloku.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">kategorie Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Shoda s jednotkou kódu UTF-16, jejíž šestnáctková hodnota je ####</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">řídicí znak Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Obecná kategorie Unicode: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Shoda se znakem svislého tabulátoru \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">znak svislého tabulátoru</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s odpovídá jakémukoli prázdnému znaku. Je ekvivalentem následujících řídicích sekvencí a kategorií Unicode: \f znak pro novou stránku \u000C \n znak nového řádku \u000A \r znak návratu na začátek řádku \u000D \t znak tabulátoru \u0009 \v znak svislého tabulátoru \u000B \x85 znak tří teček nebo dalšího řádku (...) \u0085 \p{Z} shoda s libovolným znakem oddělovače Pokud je zadané chování kompatibilní s ECMAScriptem, je \s ekvivalentem [ \f\n\r\t\v].</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">prázdný znak</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">Ukotvení \b určuje, že ke shodě musí dojít na hranici mezi znakem slova (element jazyka \w) a znakem, který není znakem slova (element jazyka \W). Mezi znaky slova patří alfanumerické znaky a podtržítka. Znak, který není znakem slova, je jakýkoli znak, který není alfanumerický ani podtržítko. Ke shodě může dojít i na hranici slova na začátku nebo na konci řetězce. Ukotvení \b se často používá k ověření, že dílčí výraz odpovídá celému slovu, nikoli jenom začátku nebo konci slova.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">hranice slova</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w odpovídá jakémukoli znaku slova. Znak slova je členem libovolné z následujících kategorií Unicode: Ll písmeno, malá písmena Lu písmeno, velká písmena Lt písmeno, velká počáteční písmena Lo písmeno, jiné Lm písmeno, modifikátor Mn značka, bez mezer Nd číslo, desítkové číslo Pc interpunkce, spojovník Pokud je zadané chování kompatibilní s ECMAScriptem, je \w ekvivalentem [a-zA-Z_0-9].</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">znak slova</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">ano</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Negativní kontrolní výraz dopředného vyhledávání s nulovou délkou, při kterém úspěšná shoda nastane v případě, že vstupní řetězec neodpovídá vzoru regulárního výrazu v dílčím výrazu. Hledaný řetězec se do výsledku porovnávání nezahrnuje. Negativní kontrolní výraz dopředného vyhledávání s nulovou délkou se obvykle používá na začátku nebo na konci regulárního výrazu. Na začátku regulárního výrazu může definovat konkrétní vzor, který by se neměl shodovat, pokud začátek regulárního výrazu definuje podobný, ale obecnější vzor, který se má shodovat. V tomto případě se často používá k omezení zpětného vyhledávání. Na konci regulárního výrazu může definovat dílčí výraz, který se nesmí vyskytovat na konci hledaného řetězce.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">negativní kontrolní výraz dopředného vyhledávání s nulovou délkou</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Negativní kontrolní výraz zpětného vyhledávání s nulovou délkou, při kterém úspěšná shoda nastane v případě, že se dílčí výraz nenachází ve vstupním řetězci nalevo od aktuální pozice. Dílčí řetězce, které neodpovídají dílčímu výrazu, se do výsledku porovnávání nezahrnují. Negativní kontrolní výrazy zpětného vyhledávání s nulovou délkou se obvykle používají na začátku regulárních výrazů. Vzor, který definují, vylučuje shodu v řetězci, který následuje. Používají se také k omezení zpětného vyhledávání, pokud poslední znak nebo znaky v zachycující skupině nesmí představovat jeden nebo více znaků, které odpovídají vzoru regulárního výrazu dané skupiny.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">negativní kontrolní výraz zpětného vyhledávání s nulovou délkou</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Pozitivní kontrolní výraz dopředného vyhledávání s nulovou délkou, při kterém úspěšná shoda nastane v případě, že vstupní řetězec odpovídá vzoru regulárního výrazu v dílčím výrazu. Odpovídající dílčí řetězec se do výsledku porovnávání nezahrnuje. Pozitivní kontrolní výraz dopředného vyhledávání s nulovou délkou neprovádí zpětné vyhledávání. Pozitivní kontrolní výraz dopředného vyhledávání s nulovou délkou se obvykle nachází na konci vzoru regulárního výrazu. Definuje dílčí řetězec, který musí být nalezen na konci řetězce, aby došlo ke shodě, ale který by shoda neměla zahrnovat. Je také užitečný k zabránění nadměrnému zpětnému vyhledávání. Pomocí pozitivního kontrolního výrazu dopředného vyhledávání s nulovou délkou můžete zajistit, aby určitá zachycující skupina začínala textem, který odpovídá podmnožině vzoru definovaného pro danou zachycující skupinu.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">pozitivní kontrolní výraz dopředného vyhledávání s nulovou délkou</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Pozitivní kontrolní výraz zpětného vyhledávání s nulovou délkou, při kterém úspěšná shoda nastane v případě, že se dílčí výraz nachází ve vstupním řetězci nalevo od aktuální pozice. Dílčí výraz se do výsledku porovnávání nezahrnuje. Pozitivní kontrolní výraz zpětného vyhledávání s nulovou délkou neprovádí zpětné navracení. Pozitivní kontrolní výrazy zpětného vyhledávání s nulovou délkou se obvykle používají na začátku regulárních výrazů. Vzor, který definují, je podmínkou pro shodu, i když není součástí výsledku porovnávání.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">pozitivní kontrolní výraz zpětného vyhledávání s nulovou délkou</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Podpisy souvisejících metod nalezené v metadatech se nebudou aktualizovat.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Odebrání dokumentu se nepodporuje.</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Odebrat modifikátor async</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Odebrat nepotřebná přetypování</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Odebrat nepoužívané proměnné</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Místo {0} použijte {1}</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Vyřešit značky konfliktů</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Hrubá úprava</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Seřadit modifikátory dostupnosti</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Rozdělit do následných příkazů {0}</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Rozdělit do vnořených příkazů {0}</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Stream musí podporovat operace read a seek.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Potlačit {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: Uvolněte nespravované prostředky (nespravované objekty) a přepište finalizační metodu.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: Finalizační metodu přepište, jen pokud metoda {0} obsahuje kód pro uvolnění nespravovaných prostředků.</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Shody cílového typu</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">Sestavení {0}, které obsahuje typ {1}, se odkazuje na architekturu .NET Framework, což se nepodporuje.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">Výběr obsahuje volání lokální funkce, aniž by byla deklarovaná.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Příliš mnoho znaků | ve výrazu (?()|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Příliš mnoho znaků )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Není možné přečíst zdrojový soubor {0} nebo soubor PDB sestavený pro projekt, který tyto soubory obsahuje. Případné změny provedené v tomto souboru během ladění se nepoužijí, dokud se jeho obsah nebude shodovat se sestaveným zdrojem.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Neznámá vlastnost</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Neznámá vlastnost {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Nerozpoznaný řídicí znak</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Nerozpoznaná řídicí sekvence \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Nerozpoznaný seskupovací konstrukt</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Nedokončená sada []</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Neukončený komentář (?#...)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Zrušit zalomení všech argumentů</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Zrušit zalomení všech parametrů</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Zrušit zalomení všech argumentů a odsadit je</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Zrušit zalomení všech parametrů a odsadit je</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Zrušit zalomení seznamu argumentů</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Zrušit zalomení posloupnosti volání</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Zrušit zalomení výrazu</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Zrušit zalomení seznamu parametrů</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Pro lambda výrazy používat text bloku</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Používat text výrazu pro lambda výrazy</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Použít interpolovaný doslovný řetězec</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Hodnota:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Upozornění: Při převodu příkazu se může změnit sémantika.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Zalomit a zarovnat posloupnost volání</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Výraz pro zabalení a zarovnání</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Zalomit a zarovnat dlouhou posloupnost volání</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Zalomit posloupnost volání</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Zalomit každý argument</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Zalomit každý parametr</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Zalomit výraz</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Zalomit dlouhý seznam argumentů</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Zalomit dlouhou posloupnost volání</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Zalomit dlouhý seznam parametrů</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Zalamování</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Pro přepínání kontextů můžete použít navigační panel.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">Hodnota {0} nemůže být nulová a toto pole nemůže být prázdné.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">Hodnota {0} nemůže být null ani prázdný znak.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">{0} tady není null.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">{0} tady může být null.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">Desetimiliontiny sekundy</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu fffffff představuje sedm platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje desetimiliontiny sekundy. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">Desetimiliontiny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu FFFFFFF představuje sedm platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje desetimiliontiny sekundy. Nezobrazují se ale nuly na konci ani sedm nulových číslic. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">Miliontiny sekundy</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu ffffff představuje šest platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje miliontiny sekundy. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">Miliontiny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu FFFFFF představuje šest platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje miliontiny sekundy. Nezobrazují se ale nuly na konci ani šest nulových číslic. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">Stotisíciny sekundy</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu fffff představuje pět platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje stotisíciny sekundy. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">Stotisíciny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu FFFFF představuje pět platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje stotisíciny sekundy. Nezobrazují se ale nuly na konci ani pět nulových číslic. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">Desetitisíciny sekundy</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu ffff představuje čtyři platných číslic zlomku sekundy. To znamená, že v hodnotě data a času představuje desetitisíciny sekundy. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT verze 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">Desetitisíciny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Specifikátor vlastního formátu FFFF představuje čtyři platné číslice zlomku sekundy. To znamená, že v hodnotě data a času představuje desetitisíciny sekundy. Nezobrazují se ale nuly na konci ani čtyři nulové číslice. Ačkoli je možné tuto část sekundy hodnoty času zobrazit, nemusí tato hodnota být významná. Přesnost hodnot data a času závisí na rozlišení systémových hodin. V operačních systémech Windows NT 3.5 (a novějších) a Windows Vista je rozlišení hodin přibližně 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">Tisíciny sekundy</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">Specifikátor vlastního formátu fff představuje tři platné číslice zlomku sekundy. To znamená, že v hodnotě data a času představuje milisekundy.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">Tisíciny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">Specifikátor vlastního formátu FFF představuje tři platné číslice zlomku sekundy. To znamená, že v hodnotě data a času představuje milisekundy. Nezobrazují se ale nuly na konci ani tři nulové číslice.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">Setiny sekundy</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">Specifikátor vlastního formátu ff představuje dvě platné číslice zlomku sekundy. To znamená, že v hodnotě data a času představuje setiny sekundy.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">Setiny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">Specifikátor vlastního formátu FF představuje dvě platné číslice zlomku sekundy. To znamená, že v hodnotě data a času představuje setiny sekundy. Nezobrazují se ale nuly na konci ani dvě nulové číslice.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">Desetiny sekundy</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">Desetiny sekundy (nenulové)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">Specifikátor vlastního formátu F představuje platné číslici zlomku sekund. To znamená, že v hodnotě data a času představuje desetiny sekundy. Pokud je číslicí nula, nic se nezobrazí. Pokud se specifikátor formátu F použije bez jiných specifikátorů formátu, interpretuje se jako standardní specifikátor formátu data a času F. Počet specifikátorů formátu F použitý v metodě ParseExact, TryParseExact, ParseExact nebo TryParseExact udává maximální počet platných číslic zlomku sekundy, který může být k dispozici pro úspěšné parsování řetězce.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12hodinový formát (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Specifikátor vlastního formátu h reprezentuje hodinu jako číslo od 1 do 12. To znamená, že hodina je reprezentována ve 12hodinovém formátu, který počítá celé hodiny od půlnoci do poledne. Konkrétní hodina po půlnoci se nijak neliší od stejné hodiny po poledni. Hodina se nezaokrouhluje a jednočíselná hodina se formátuje bez nuly na začátku. Když je například ráno nebo odpoledne 5:43, tento specifikátor vlastního formátu zobrazí 5. Pokud se specifikátor formátu h zadá bez jiných specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času a vyvolá FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12hodinový formát (2 číslice)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">Specifikátor vlastního formátu hh (a libovolný počet dalších specifikátorů h) reprezentuje hodinu jako číslo od 01 do 12. To znamená, že hodina je reprezentována ve 12hodinovém formátu, který počítá celé hodiny od půlnoci do poledne. Konkrétní hodina po půlnoci se nijak neliší od stejné hodiny po poledni. Hodina se nezaokrouhluje a jednočíselná hodina se formátuje s nulou na začátku. Když je například ráno nebo odpoledne 5:43, tento specifikátor vlastního formátu zobrazí 05.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24hodinový formát (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Specifikátor vlastního formátu H reprezentuje hodinu jako číslo od 0 do 23. To znamená, že hodina je reprezentována ve 24hodinovém formátu, který začíná na nule a počítá hodiny od půlnoci. Hodina s jednou číslicí se formátuje bez nuly na začátku. Pokud se specifikátor formátu H použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a čas a vyvolá FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24hodinový formát (2 číslice)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">Specifikátor vlastního formátu HH reprezentuje hodinu jako číslo od 00 do 23. To znamená, že hodina je reprezentována ve 24hodinovém formátu, který začíná na nule a počítá hodiny od půlnoci. Hodina s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">code</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">oddělovač data</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Specifikátor vlastního formátu / představuje oddělovač data, pomocí kterého se odlišují roky, měsíce a dny. Správný lokalizovaný oddělovač data se načítá z vlastnosti DateTimeFormatInfo.DateSeparator aktuální nebo zadané jazykové verze. Poznámka: Pokud chcete změnit oddělovač data pro konkrétní řetězec data a času, zadejte znak oddělovače v oddělovači literálního řetězce. Například řetězec s vlastním formátem mm'/'dd'/'yyyy vytvoří výsledný řetězec, ve kterém se / vždy použije jako oddělovač data. Pokud chcete oddělovač data změnit pro všechna data v jazykové verzi, buď změňte hodnotu vlastnosti DateTimeFormatInfo.DateSeparator aktuální jazykové verze, nebo vytvořte instanci objektu DateTimeFormatInfo, přiřaďte znak do jeho vlastnosti DateSeparator a zavolejte přetížení metody formátování, která zahrnuje parametr IFormatProvider. Pokud se specifikátor formátu / použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času a vyvolá FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">den v měsíci (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">Specifikátor vlastního formátu d reprezentuje den v měsíci jako číslo od 1 do 31. Den s jednou číslicí se formátuje bez nuly na začátku. Pokud se specifikátor formátu d použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času d.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">den v měsíci (2 číslice)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">Specifikátor vlastního formátu dd reprezentuje den v měsíci jako číslo od 01 do 31. Den s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">den v týdnu (zkrácený)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">Specifikátor vlastního formátu ddd reprezentuje zkrácený název dne v týdnu. Lokalizovaný zkrácený název dne v týdnu se načítá z vlastnosti DateTimeFormatInfo.AbbreviatedDayNames aktuální nebo zadané jazykové verze.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">den v týdnu (úplný)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">Specifikátor vlastního formátu dddd (a libovolný počet dalších specifikátorů d) reprezentuje celý název dne v týdnu. Lokalizovaný název dne v týdnu se načítá z vlastnosti DateTimeFormatInfo.DayNames aktuální nebo zadané jazykové verze.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">proměnná typu discard</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">z metadat</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">celé dlouhé datum a čas</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">Specifikátor standardního formátu F představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.FullDateTimePattern. Například řetězec vlastního formátu pro invariantní jazykovou verzi je dddd, dd MMMM yyyy HH:mm:ss.</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">celé krátké datum a čas</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Specifikátor formátu úplného data a krátkého času (f) Specifikátor standardního formátu f představuje kombinaci vzorů dlouhého data (D) a krátkého času (t) oddělených mezerou.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">obecné dlouhé datum a čas</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">Specifikátor standardního formátu G představuje kombinaci vzorů krátkého data (d) a dlouhého času (T) oddělených mezerou.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">obecné krátké datum a čas</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">Specifikátor standardního formátu g představuje kombinaci vzorů krátkého data (d) a krátkého času (t) oddělených mezerou.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">obecné přetížení</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">obecná přetížení</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">v {0} ({1}–{2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">in Source (atribut)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">dlouhé datum</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">Specifikátor standardního formátu D představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.LongDatePattern. Například řetězec vlastního formátu pro invariantní jazykovou verzi je dddd, dd MMMM yyyy.</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">dlouhý čas</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">Specifikátor standardního formátu T představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.LongTimePattern konkrétní jazykové verze. Například řetězec vlastního formátu pro invariantní jazykovou verzi je HH:mm:ss.</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} {1}</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">minuta (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">Specifikátor vlastního formátu m reprezentuje minutu jako číslo od 0 do 59. Minuta představuje celé minuty, které uplynuly od poslední hodiny. Minuta s jednou číslicí se formátuje bez nuly na začátku. Pokud se specifikátor formátu m použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času m.</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">minuta (2 číslice)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">Specifikátor vlastního formátu mm (a libovolný počet dalších specifikátorů m) reprezentuje minutu jako číslo od 00 do 59. Minuta představuje celé minuty, které uplynuly od poslední hodiny. Minuta s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">měsíc (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">Specifikátor vlastního formátu M reprezentuje měsíc jako číslo od 1 do 12 (nebo od 1 do 13 pro kalendáře, které mají 13 měsíců). Den s jednou číslicí se formátuje bez nuly na začátku. Pokud se specifikátor formátu M použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času M.</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">měsíc (2 číslice)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">Specifikátor vlastního formátu MM reprezentuje den v měsíci jako číslo od 01 do 12 (nebo od 01 do 13 pro kalendáře, které mají 13 měsíců). Den s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">měsíc (zkrácený)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">Specifikátor vlastního formátu MMM reprezentuje zkrácený název měsíce. Lokalizovaný zkrácený název měsíce se načítá z vlastnosti DateTimeFormatInfo.AbbreviatedMonthNames aktuální nebo zadané jazykové verze.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">den v měsíci</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">Specifikátor standardního formátu M nebo m představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.MonthDayPattern. Například řetězec vlastního formátu pro invariantní jazykovou verzi je MMMM dd.</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">měsíc (úplný)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">Specifikátor vlastního formátu MMMM reprezentuje celý název měsíce. Lokalizovaný název měsíce se načítá z vlastnosti DateTimeFormatInfo.MonthNames aktuální nebo zadané jazykové verze.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">přetížení</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">přetížení</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">Klíčové slovo {0}</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Zapouzdřit pole: {0} (a použít vlastnost)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Zapouzdřit pole: {0} (ale dál používat pole)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Zapouzdřit pole (a použít vlastnost)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Zapouzdřit pole (ale dál používat pole)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Nejde extrahovat rozhraní: Výběr nespadá do třídy/rozhraní/struktury.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Nejde extrahovat rozhraní: Typ neobsahuje žádný člen, který by se dal extrahovat do rozhraní.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">nejde konstruovat finální strom</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Typ nebo návratový typ parametrů nemůže být anonymní: [{0}].</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">Výběr neobsahuje žádný aktivní příkaz.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">Výběr obsahuje chybu nebo neznámý typ.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Parametr typu {0} je skrytý jiným parametrem typu {1}.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">Adresa proměnné se používá ve vybraném kódu.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">Přiřazování k polím jen pro čtení se musí dělat v konstruktoru: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">Vygenerovaný kód se překrývá se skrytou částí kódu.</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Přidat volitelné parametry do {0}</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Přidat parametry do {0}</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Generovat delegující konstruktor {0}({1})</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Generovat konstruktor {0}({1})</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Generovat konstruktor přiřazující pole {0}({1})</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Generovat Equals a GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Generovat Equals(objekt)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Generovat GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Generovat konstruktor v: {0}</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Generovat všechno</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Generovat člena výčtu {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Generovat konstantu {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Generovat vlastnost jen pro čtení {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Generovat vlastnost {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Generovat pole jen pro čtení {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Generovat pole {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Generovat místní: {0}</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Generovat {0} {1} v novém souboru</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Generovat vnořené {0} {1}</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Globální obor názvů</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Implementovat rozhraní abstraktně</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Implementovat rozhraní přes {0}</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Implementujte rozhraní.</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Zavést pole pro {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Zavést lokální proměnnou pro {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Zavést konstantu pro {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Zavést místní konstantu pro {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Zavést pole pro všechny výskyty položky {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Zavést lokální proměnnou pro všechny výskyty položky {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Zavést konstantu pro všechny výskyty položky {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Zavést místní konstantu pro všechny výskyty položky {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Zavést proměnnou dotazu pro všechny výskyty položky {0}</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Zavést proměnnou dotazu pro {0}</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Anonymní typy:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">je</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Představuje objekty, jejichž operace se vyhodnotí za běhu.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">konstanta</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">pole</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">lokální konstanta</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">lokální proměnná</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">popisek</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">období</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Specifikátory vlastního formátu g nebo gg (a libovolný počet dalších specifikátorů g) představují období, třeba př. n. l. Pokud datum, které se má formátovat, nemá přidružený řetězec období, operace formátování tento specifikátor ignoruje. Pokud se specifikátor formátu g použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času g.</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">proměnná rozsahu</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">parametr</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">v</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Souhrn:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Místní hodnoty a parametry</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Vložit parametry:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Vrácení:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Výjimky:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Poznámky:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">Generování zdroje pro symboly tohoto typu se nepodporuje.</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">sestavení</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">neznámé umístění</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Neočekávaný druh člena rozhraní: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Neznámý druh symbolu</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Generovat abstraktní vlastnost {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Generovat abstraktní metodu {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Generovat metodu {1}.{0}</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">Požadované sestavení je už načtené z {0}.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Symbol nemá ikonu.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Asynchronní metody nemůžou mít parametry ref/out: [{0}].</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Člen je definovaný v metadatech.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Můžete změnit jenom signaturu konstruktoru, indexeru, metody nebo delegáta.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Tento symbol má přidružené definice nebo odkazy v metadatech. Změna jeho podpisu může vést k chybám sestavení. Chcete pokračovat?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Změnit signaturu...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Generovat nový typ...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Selhání uživatelského diagnostického analyzátoru</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">Analyzátor {0} způsobil výjimku typu {1} se zprávou {2}.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">Analyzátor {0} vrátil následující výjimku: {1}.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Zjednodušit názvy</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Zjednodušit přístup ke členům</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Odebrat kvalifikaci</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Došlo k neznámé chybě.</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">K dispozici</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Není k dispozici ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} – {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">ve zdroji</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">V souboru potlačení</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Odebrat potlačení {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Odebrat potlačení</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;Čeká&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Poznámka: Pro vložení fragmentu {0} stiskněte dvakrát tabulátor.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Implementovat rozhraní explicitně se vzorem Dispose</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Implementovat rozhraní se vzorem Dispose</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Nové určení priorit podle dostupnosti zdrojů {0}(aktuálně {1})</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">Argument nemůže mít element, který je null.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">Argument nemůže být prázdný.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">Ohlášená diagnostika s ID {0} se v analyzátoru nepodporuje.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Vypočítává se oprava kódu pro opravu všech výskytů...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Opravit všechny výskyty</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Dokument</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Projekt</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Řešení</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: Uvolněte spravovaný stav (spravované objekty).</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: Nastavte velká pole na hodnotu null.</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Kompilátor</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">Živě</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">hodnota enum</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">Pole const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">metoda</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">operátor</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">konstruktor</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">automatická vlastnost</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">vlastnost</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">přístupový objekt události</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">datum a čas rfc1123</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Specifikátory standardního formátu R nebo r představují řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.RFC1123Pattern. Vzor dodržuje definovaný standard a vlastnost je určená jen pro čtení. Proto je vždy stejná, bez ohledu na používanou jazykovou verzi nebo zadaného poskytovatele formátu. Řetězec vlastního formátu je ddd, dd MMM yyyy HH':'mm':'ss 'GMT'. Když se tento specifikátor standardního formátu použije, operace formátování nebo parsování vždy použije invariantní jazykovou verzi.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">datum a čas typu round-trip</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">Specifikátory standardního formátu O nebo o představují řetězec vlastního formátu data a času, který používá vzor, který zachovává informaci o časovém pásmu a generuje výsledný řetězec podle standardu ISO 8601. Pro hodnoty DateTime je tento specifikátor formátu navržený tak, aby v textu zachoval hodnoty data a času spolu s vlastností DateTime.Kind. Pokud se parametr styles nastaví na DateTimeStyles.RoundtripKind, formátovaný řetězec se dá parsovat zpět pomocí metod DateTime.Parse(String, IFormatProvider, DateTimeStyles) nebo DateTime.ParseExact. Specifikátory standardního formátu O nebo o odpovídají řetězci vlastního formátu yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK pro hodnoty DateTime a řetězci vlastního formátu yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz pro hodnoty DateTimeOffset. V tomto řetězci dvojice jednoduchých uvozovek, které oddělují jednotlivé znaky (třeba spojovníky, dvojtečky a písmeno T), označují, že jednotlivé znaky jsou literály a nedají se změnit. Apostrofy se ve výstupním řetězci nezobrazují. Specifikátory vlastního formátu O nebo o (a řetězec vlastního formátu yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK) využívá tři způsoby, kterými standard ISO 8601 reprezentuje informace o časovém pásmu, aby se zachovala vlastnost Kind hodnot DateTime: Složka časového pásma hodnot data a času DateTimeKind.Local je posun oproti UTC (například +01:00, -07:00). V tomto formátu se reprezentují všechny hodnoty DateTimeOffset. Složka časového pásma hodnot data a času DateTimeKind.Utc používá Z (což znamená nulový (zero) posun), pomocí kterého představuje čas UTC. Hodnoty data a času DateTimeKind.Unspecified nemají žádnou informaci o časovém pásmu. Vzhledem k tomu, že specifikátory standardního formátu O nebo o dodržují mezinárodní standard, operace formátování nebo parsování, která daný specifikátor používá, vždy používá invariantní jazykovou verzi a Gregoriánský kalendář. Řetězce, které se předávají metodám Parse, TryParse, ParseExact a TryParseExact typů DateTime a DateTimeOffset, se dají pomocí specifikátoru formátu O nebo o parsovat v případě, že mají jeden z těchto formátů. V případě objektů DateTime by přetížení parsování, které zavoláte, mělo navíc zahrnovat parametr styles s hodnotou DateTimeStyles.RoundtripKind. Poznámka: Pokud metodu parsování zavoláte s řetězcem vlastního formátu, který odpovídá specifikátoru formátu O nebo o, nedostanete výsledky shodné s O nebo o. Důvodem je to, že metody parsování, které používají řetězec vlastního formátu, nemůžou parsovat řetězcové reprezentace hodnot data a času, kterým chybí složka časového pásma nebo které označují UTC pomocí Z.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">sekunda (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">Specifikátor vlastního formátu s reprezentuje sekundy jako číslo od 0 do 59. Výsledek představuje celé sekundy, které uplynuly od poslední minuty. Sekunda s jednou číslicí se formátuje bez nuly na začátku. Pokud se specifikátor formátu s použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času s.</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">sekunda (2 číslice)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">Specifikátor vlastního formátu ss (a libovolný počet dalších specifikátorů s) reprezentuje sekundu jako číslo od 00 do 59. Výsledek představuje celé sekundy, které uplynuly od poslední minuty. Sekunda s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">krátké datum</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">Specifikátor standardního formátu d představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.ShortDatePattern konkrétní jazykové verze. Například řetězec vlastního formátu, který se vrátí pomocí vlastnosti ShortDatePattern pro invariantní jazykovou verzi, je MM/dd/yyyy.</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">krátký čas</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">Specifikátor standardního formátu t představuje řetězec vlastního formátu data a času, který se definuje pomocí aktuální vlastnosti DateTimeFormatInfo.ShortTimePattern. Například řetězec vlastního formátu pro invariantní jazykovou verzi je HH:mm.</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">seřaditelné datum a čas</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Specifikátor standardního formátu s představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.SortableDateTimePattern. Vzor dodržuje definovaný standard (ISO 8601) a vlastnost je určená jen pro čtení. Proto je vždy stejná, bez ohledu na používanou jazykovou verzi nebo zadaného poskytovatele formátu. Řetězec vlastního formátu je yyyy'-'MM'-'dd'T'HH':'mm':'ss. Účelem specifikátoru formátu s je vytvořit výsledné řetězce, které budou konzistentně seřazené vzestupně nebo sestupně podle hodnot data a času. Z toho důvodu operace formátování neupraví hodnotu formátovaného objektu data a času tak, aby odrážela vlastnost DateTime.Kind nebo její vlastnost DateTimeOffset.Offset, i když specifikátor standardního formátu s představuje hodnotu data a času v konzistentním formátu. Například výsledné řetězce vytvořené formátováním hodnot data a času 2014-11-15T18:32:17+00:00 a 2014-11-15T18:32:17+08:00 jsou totožné. Když se tento specifikátor standardního formátu použije, operace formátování nebo parsování vždy použije invariantní jazykovou verzi.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">statický konstruktor</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'Symbol nemůže být obor názvů.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">oddělovač času</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Specifikátor vlastního formátu : představuje oddělovač času, pomocí kterého se odlišují hodiny, minuty a sekundy. Správný lokalizovaný oddělovač data se načítá z vlastnosti DateTimeFormatInfo.TimeSeparator aktuální nebo zadané jazykové verze. Poznámka: Pokud chcete změnit oddělovač času pro konkrétní řetězec data a času, zadejte znak oddělovače v oddělovači literálního řetězce. Například řetězec s vlastním formátem hh'_'dd'_'ss vytvoří výsledný řetězec, ve kterém se _ (podtržítko) vždy použije jako oddělovač času. Pokud chcete oddělovač času změnit pro všechna data v jazykové verzi, buď změňte hodnotu vlastnosti DateTimeFormatInfo.TimeSeparator aktuální jazykové verze, nebo vytvořte instanci objektu DateTimeFormatInfo, přiřaďte znak do jeho vlastnosti TimeSeparator a zavolejte přetížení metody formátování, která zahrnuje parametr IFormatProvider. Pokud se specifikátor formátu : použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času a vyvolá FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">časové pásmo</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Specifikátor vlastního formátu K představuje informaci o časovém pásmu hodnoty data a času. Když se tento specifikátor formátu použije spolu s hodnotami DateTime, výsledný řetězec je definovaný hodnotou vlastnosti DateTime.Kind: Pro místní časové pásmo (hodnota vlastnosti DateTime.Kind DateTimeKind.Local) je tento specifikátor ekvivalentní specifikátoru zzz a vytvoří výsledný řetězec, který bude obsahovat místní posun od koordinovaného univerzálního času (UTC), třeba -07:00. Pro čas UTC (hodnota vlastnosti DateTime.Kind DateTimeKind.Utc) výsledný řetězec zahrnuje znak Z, který představuje datum UTC. Pro čas z neurčeného časového pásma (čas, jehož vlastnost DateTime.Kind se rovná DateTimeKind.Unspecified) je výsledek ekvivalentní k String.Empty. Pro hodnoty DateTimeOffset je specifikátor formátu K ekvivalentní specifikátoru formátu zzz a vytváří výsledný řetězec, který obsahuje posun hodnoty DateTimeOffset proti UTC. Pokud se specifikátor formátu K použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času a vyvolá FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">omezení typu</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">parametr typu</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">atribut</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Nahradit {0} a {1} vlastností</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Nahradit {0} vlastností</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Implicitně odkazovaná metoda</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Generovat typ {0}</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Generovat {0} {1}</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Změnit {0} na {1}</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Nevyvolávaná metoda nejde nahradit vlastností.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Vlastností jdou nahradit jenom metody s jedním argumentem, který nepředstavuje deklaraci externí proměnné.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Instance analyzátoru {0} nejde vytvořit z {1}: {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">Sestavení {0} neobsahuje žádné analyzátory.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Nejde načíst sestavení analyzátoru {0}: {1}.</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Nastavit metodu jako synchronní</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">z: {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Najít a nainstalovat nejnovější verzi</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Použít místní verzi {0}</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Použít místně nainstalovanou {0} verzi {1}. Tato verze se používá zde: {2}.</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Najít a nainstalovat nejnovější verzi aplikace {0}</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Nainstalovat s použitím Správce balíčků...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Nainstalovat {0} {1}</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Nainstalovat verzi {0}</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Generovat proměnnou {0}</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Třídy</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Konstanty</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Delegáti</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Výčty</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Události</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Metody rozšíření</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Pole</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Rozhraní</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Místní hodnoty</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Metody</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Moduly</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Obory názvů</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Vlastnosti</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Struktury</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parametry:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Variadické SignatureHelpItem musí mít nejmíň jeden parametr.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Nahradit {0} metodou</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Nahradit {0} metodami</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Na vlastnost se odkazuje implicitně.</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Vlastnost se nedá bezpečně nahradit voláním metody.</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Převést na interpolovaný řetězec</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Přesunout typ do {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Přejmenovat soubor na {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Přejmenovat typ na {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Odebrat značku</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Přidat chybějící uzly parametrů</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Převést obsažený obor na asynchronní</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Převést obsažený obor na asynchronní (návratová hodnota Task)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(neznámé)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Použít typ architektury</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Nainstalovat balíček {0}</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">projekt {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">Plně kvalifikovat: {0}</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Odebrat odkaz na {0}</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Klíčová slova</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Fragmenty</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Všechna písmena malá</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Všechna písmena velká</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Velké první písmeno prvního slova</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">PascalCase</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Odebrat dokument {0}</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Přidat dokument {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Přidat název argumentu {0}</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Vzít {0}</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Vzít obojí</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Vzít dolní</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Vzít horní</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Odebrat nepoužívanou proměnnou</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Převést do binární soustavy</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Převést do desítkové soustavy</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Převést do šestnáctkové soustavy</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Oddělit tisíce</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Oddělit slova</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Oddělit nibbly</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Odebrat oddělovače</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Přidat parametr do {0}</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Generovat konstruktor...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Vyberte členy, kteří se mají použít jako parametry konstruktoru.</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Vyberte členy, kteří se mají použít v Equals/GetHashCode.</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Generovat přepsání...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Vyberte členy, které chcete přepsat.</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Přidat kontrolu hodnot null</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Přidat kontrolu metody string.IsNullOrEmpty</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Přidat kontrolu metody string.IsNullOrWhiteSpace</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Inicializovat pole {0}</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Inicializovat vlastnost {0}</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Přidat kontroly hodnot null</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Generovat operátory</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Implementovat {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">Zdroj vykazované diagnostiky {0} je umístěný v souboru {1}, který není součástí analyzované kompilace.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">Zdroj vykazované diagnostiky {0} má umístění {1} v souboru {2}, což je mimo daný soubor.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">v {0} (projekt {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Přidat Modifikátory dostupnosti</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Přesunout deklaraci do blízkosti odkazu</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Převést na celou vlastnost</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Upozornění: Metoda potlačí symbol z metadat.</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Použít {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Přidat název argumentu {0} (včetně koncových argumentů)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">lokální funkce</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">indexer</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Alias nejednoznačného typu {0}</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Upozornění: Během iterace se kolekce změnila.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Upozornění: Proměnná iterace překročila hranici funkce.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Upozornění: Během iterace se kolekce může změnit.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">univerzální datum a čas</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">Specifikátor standardního formátu U představuje řetězec vlastního formátu data a času definovaný vlastností DateTimeFormatInfo.FullDateTimePattern konkrétní jazykové verze. Vzor je stejný jako vzor F. Hodnota DateTime se ale před formátováním automaticky převede na UTC.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">univerzální seřaditelné datum a čas</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">Specifikátor standardního formátu u představuje řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.UniversalSortableDateTimePattern. Vzor dodržuje definovaný standard a vlastnost je určená jen pro čtení. Proto je vždy stejná, bez ohledu na používanou jazykovou verzi nebo zadaného poskytovatele formátu. Řetězec vlastního formátu je yyyy'-'MM'-'dd HH':'mm':'ss'Z'. Když se tento specifikátor standardního formátu použije, operace formátování nebo parsování vždy použije invariantní jazykovou verzi. I když by výsledný řetězec měl vyjadřovat čas ve formátu UTC (Coordinated Universal Time), během operace formátování se původní hodnota DateTime nijak nepřevádí. Proto je nutné ji před formátováním převést na UTC pomocí metody DateTime.ToUniversalTime.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">aktualizace použití v obsahujícím členu</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">aktualizace použití v obsahujícím projektu</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">aktualizace použití v obsahujícím typu</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">aktualizace použití v závislých projektech</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">posun hodiny a minuty proti UTC</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">U hodnot DateTime specifikátor vlastního formátu zzz představuje posun časového pásma místního operačního systému od UTC se znaménkem, který se měří v hodinách a minutách. Neodráží hodnotu vlastnosti DateTime.Kind instance. Z toho důvodu se specifikátor formátu zzz nedoporučuje používat s hodnotami DateTime. U hodnot DateTimeOffset tento specifikátor formátu představuje posun hodnoty DateTimeOffset od času UTC v hodinách a minutách. Posun se vždy zobrazuje se znaménkem na začátku. Znaménko plus (+) označuje hodiny před UTC a znaménko minus (-) pak hodiny za UTC. Posun s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">posun hodin proti UTC (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">U hodnot DateTime specifikátor vlastního formátu z představuje posun časového pásma místního operačního systému od koordinovaného univerzálního času (UTC) se znaménkem, který se měří v hodinách. Neodráží hodnotu vlastnosti DateTime.Kind instance. Z toho důvodu se specifikátor formátu z nedoporučuje používat s hodnotami DateTime. U hodnot DateTimeOffset tento specifikátor formátu představuje posun hodnoty DateTimeOffset od času UTC v hodinách. Posun se vždy zobrazuje se znaménkem na začátku. Znaménko plus (+) označuje hodiny před UTC a znaménko minus (-) pak hodiny za UTC. Posun s jednou číslicí se formátuje bez nuly na začátku. Pokud se specifikátor formátu z použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času a vyvolá FormatException.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">posun hodin proti UTC (2 číslice)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">U hodnot DateTime specifikátor vlastního formátu zz představuje posun časového pásma místního operačního systému od UTC se znaménkem, který se měří v hodinách. Neodráží hodnotu vlastnosti DateTime.Kind instance. Z toho důvodu se specifikátor formátu zz nedoporučuje používat s hodnotami DateTime. U hodnot DateTimeOffset tento specifikátor formátu představuje posun hodnoty DateTimeOffset od času UTC v hodinách. Posun se vždy zobrazuje se znaménkem na začátku. Znaménko plus (+) označuje hodiny před UTC a znaménko minus (-) pak hodiny za UTC. Posun s jednou číslicí se formátuje s nulou na začátku.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">Rozsah [x-y] je v obráceném pořadí.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">rok (1–2 číslice)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">Specifikátor vlastního formátu y reprezentuje rok jako jedno- nebo dvoumístné číslo. Pokud má rok více než dvě číslice, ve výsledku se budou nacházet jen dvě číslice nižšího řádu. Pokud první číslice dvoumístného roku začíná nulou (třeba 2008), číslo se formátuje bez nuly na začátku. Pokud se specifikátor formátu y použije bez dalších specifikátorů vlastního formátu, interpretuje se jako standardní specifikátor formátu data a času y.</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">rok (2 číslice)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">Specifikátor vlastního formátu yy reprezentuje rok jako dvoumístné číslo. Pokud má rok více než dvě číslice, ve výsledku se budou nacházet jen dvě číslice nižšího řádu. Pokud má dvoumístný rok méně než dvě platné číslice, číslo se doplní nulami na začátku, aby mělo dvě číslice. Při operaci parsování se dvoumístný rok parsovaný pomocí specifikátoru vlastního formátu interpretuje podle vlastnosti Calendar.TwoDigitYearMax aktuálního kalendáře poskytovatele formátu. Následující příklad parsuje řetězcovou reprezentaci data, která má dvoumístný rok, pomocí výchozího Gregoriánského kalendáře jazykové verze en-US, která je v tomto případě zároveň aktuální jazykovou verzí. Pak změní objekt CultureInfo aktuální jazykové verze tak, aby používala objekt GregorianCalendar, jehož vlastnost TwoDigitYearMax bude upravená.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">rok (3–4 číslice)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">Specifikátor vlastního formátu yyy představuje rok s nejméně třemi číslicemi. Pokud má rok více než tři platné číslice, zahrnou se do výsledného řetězce. Pokud má rok méně než tři číslice, číslo se doplní nulami na začátku, aby mělo tři číslice.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">rok (4 číslice)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">Specifikátor vlastního formátu yyyy představuje rok s nejméně čtyřmi číslicemi. Pokud má rok více než čtyři platné číslice, zahrnou se do výsledného řetězce. Pokud má rok méně než čtyři číslice, číslo se doplní nulami na začátku, aby mělo čtyři číslice.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">rok (5 číslic)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">Specifikátor vlastního formátu yyyyy (a libovolný počet dalších specifikátorů y) představuje rok s nejméně pěti číslicemi. Pokud má rok více než pět platných číslic, zahrnou se do výsledného řetězce. Pokud má rok méně než pět číslic, číslo se doplní nulami na začátku, aby mělo pět číslice. Pokud se použijí další specifikátory y, číslo se doplní tolika nulami na začátku, kolik jich je potřeba, aby vzniklo číslo odpovídající specifikátorům y.</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">měsíc v roce</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">Specifikátory standardního formátu Y nebo y představují řetězec vlastního formátu data a času, který se definuje pomocí vlastnosti DateTimeFormatInfo.ShortTimePattern zadané jazykové verze. Například řetězec vlastního formátu pro invariantní jazykovou verzi je yyyy MMMM.</target> <note /> </trans-unit> </body> </file> </xliff>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/xlf/FeaturesResources.de.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="de" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (abgekürzt)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "t" repräsentiert das erste Zeichen des AM/PM-Kennzeichners. Der geeignete lokalisierte Kennzeichner wird aus der DateTimeFormatInfo.AMDesignator- oder DateTimeFormatInfo.PMDesignator-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen. Der AM-Kennzeichner wird für alle Uhrzeiten von 0:00:00 (Mitternacht) bis 11:59:59.999 verwendet. Der PM-Kennzeichner wird für alle Uhrzeiten von 12:00:00 (Mittag) bis 23:59:59.999 verwendet. Bei Verwendung des Formatbezeichners "t" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "t" für Datum und Uhrzeit interpretiert.</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (vollständig)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "tt" (plus beliebig viele zusätzliche t-Bezeichner) repräsentiert den vollständigen AM/PM-Kennzeichner. Der geeignete lokalisierte Kennzeichner wird aus der DateTimeFormatInfo.AMDesignator- oder DateTimeFormatInfo.PMDesignator-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen. Der AM-Kennzeichner wird für alle Uhrzeiten von 0:00:00 (Mitternacht) bis 11:59:59.999 verwendet. Der PM-Kennzeichner wird für alle Uhrzeiten von 12:00:00 (Mittag) bis 23:59:59.999 verwendet. Stellen Sie sicher, dass Sie den Bezeichner "tt" für Sprachen verwenden, für die eine Unterscheidung zwischen AM und PM erforderlich ist. Ein Beispiel ist Japanisch, bei dem sich die AM- und PM-Kennzeichner durch das zweite Zeichen anstelle des ersten Zeichens unterscheiden.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Eine Subtraktion muss das letzte Element in einer Zeichenklasse sein.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">DebuggerDisplay-Attribut hinzufügen</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Explizite Umwandlung hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Membername hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">NULL-Überprüfungen für alle Parameter hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Optionalen Parameter zum Konstruktor hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Parameter zu "{0}" (und Außerkraftsetzungen/Implementierungen) hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Parameter zum Konstruktor hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Fügen Sie zu "{0}" einen Projektverweis hinzu.</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Fügen Sie zu "{0}" einen Verweis hinzu.</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Aktionen dürfen nicht leer sein.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Tupelelementnamen "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Umschlossene Argumente ausrichten</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Umschlossene Parameter ausrichten</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Wechselbedingungen dürfen keine Kommentare sein.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Wechselbedingungen werden nicht erfasst und können nicht benannt werden.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Dateiheadereinstellungen anwenden</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Einstellungen zur Objekt-/Sammlungsinitialisierung anwenden</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">Erwartete Aufgabe gibt "{0}" zurück</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">Erwartete Aufgabe gibt keinen Wert zurück</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Basisklassen enthalten nicht implementierte Member, auf die nicht zugegriffen werden kann.</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Änderungen können nicht angewendet werden -- unerwarteter Fehler: "{0}"</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Die Klasse \{0} kann nicht in den Zeichenbereich aufgenommen werden.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Erfassungsgruppennummern müssen kleiner oder gleich Int32.MaxValue sein.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Aufzeichnungsnummer darf nicht 0 (null) sein.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;ableiten&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;Auslassen&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">In globalen Namespace ändern</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Änderungen sind nicht zulässig, solange der Vorgang bei einer Ausnahme angehalten ist.</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Im Projekt "{0}" vorgenommene Änderungen werden nicht angewendet, während die Anwendung ausgeführt wird.</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Codeformat "{0}" konfigurieren</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Schweregrad "{0}" konfigurieren</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Schweregrad für alle Analysetools für "{0}" konfigurieren</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Schweregrad für alle Analysetools konfigurieren</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">In LINQ konvertieren</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Zu "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">In Klasse konvertieren</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">In LINQ konvertieren (Aufrufformular)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">In Datensatz konvertieren</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">In Datensatzstruktur konvertieren</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">In Struktur konvertieren</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Typ in "{0}" konvertieren</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Feld "{0}" erstellen und zuweisen</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Eigenschaft "{0}" erstellen und zuweisen</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Verbleibende Elemente als Felder erstellen und zuweisen</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Verbleibende Elemente als Eigenschaften erstellen und zuweisen</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Ändern Sie diesen Code nicht. Fügen Sie Bereinigungscode in der Methode "{0}" ein.</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Der aktuelle Inhalt der Quelldatei "{0}" stimmt nicht mit dem kompilierten Quellcode überein. Alle Änderungen, die während des Debuggens an dieser Datei vorgenommen wurden, werden erst angewendet, wenn der Inhalt dem kompilierten Quellcode entspricht.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Dokument muss in dem Arbeitsbereich enthalten sein, der diesen Dienst erstellt hat</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Bearbeiten und Fortfahren</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Bearbeiten und Fortfahren durch Modul untersagt</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Die im Projekt "{0}" vorgenommenen Änderungen verhindern, dass die Debugsitzung fortgesetzt wird: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">"Bearbeiten und fortfahren" wird von der Runtime nicht unterstützt.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Fehler beim Lesen der Datei "{0}": {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Fehler beim Erstellen der CodeFixProvider-Instanz</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Fehler beim Erstellen der CodeFixProvider-Instanz "{0}".</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Beispiel:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Beispiele:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Explizit implementierte Methoden von Datensätzen müssen Parameternamen aufweisen, die mit dem vom Compiler generierten Äquivalent "{0}" übereinstimmen.</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Basisklasse extrahieren...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Schnittstelle extrahieren...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Lokale Funktion extrahieren</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Methode extrahieren</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Fehler beim Analysieren des Datenflusses für: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Formatierung beheben</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Tippfehler "{0}" korrigieren</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Dokument formatieren</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Dokument wird formatiert</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Vergleichsoperatoren generieren</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Konstruktor in "{0}" (mit Feldern) generieren</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Konstruktor in "{0}" (mit Eigenschaften) generieren</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Für "{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Parameter "{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Parameter "{0}" (und Außerkraftsetzungen/Implementierungen) generieren</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Nicht zulässiges \-Zeichen am Ende des Musters.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">Illegaler {x,y}-Wert mit x &gt; y.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">"{0}" explizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">"{0}" implizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Abstrakte Klasse implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Alle Schnittstellen explizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Alle Schnittstellen implizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Alle Member explizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Explizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Implizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Verbleibende Member explizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Über "{0}" implementieren</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Unvollständiges \p{X}-Escapezeichen.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Alle Argumente einrücken</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Alle Parameter einrücken</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Umschlossene Argumente einrücken</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Einzug für umschlossene Parameter</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">"{0}" inline einbinden</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">"{0}" inline einbinden und beibehalten</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Nicht genügend Hexadezimalziffern.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Konstante einfügen</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Feld einführen</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Lokale Variable einführen</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Abfragevariable bereitstellen</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Ungültiger Gruppenname: Gruppennamen müssen mit einem Wortzeichen beginnen.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Klasse als "abstract" festlegen</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Als statisch festlegen</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Bedingten Operator umkehren</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">fehlerhaft</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Falsch formatiertes \p{X}-Escapezeichen.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Falsch formatierter mit \k&lt;...&gt; benannter Verweis.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Mit geschachtelter {0}-Anweisung zusammenführen</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Mit nächster {0}-Anweisung zusammenführen</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Mit äußerer {0}-Anweisung zusammenführen</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Mit vorheriger {0}-Anweisung zusammenführen</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">"{0}" muss einen Datenstrom zurückgeben, der Lese- und Suchvorgänge unterstützt.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Fehlendes Steuerzeichen</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Inhalt in Namespace verschieben...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Datei in "{0}" verschieben</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Datei in den Stammordner des Projekts verschieben</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">In Namespace verschieben...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Geschachtelter Quantifizierer {0}.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Keine gültige Position zum Einfügen eines Methodenaufrufs.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Zu wenige )-Zeichen</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operatoren</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">Der Eigenschaftenverweis kann nicht aktualisiert werden.</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">"{0}" nach oben ziehen</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">"{0}" zu "{1}" ziehen</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Member zum Basistyp ziehen...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Member auf neue Basisklasse ziehen...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Quantifizierer {x,y} nach nichts.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">Verweis auf nicht definierte Gruppe</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Verweis auf nicht definierten Gruppennamen {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Verweis auf nicht definierte Gruppennummer {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Alle Steuerzeichen. Hierzu gehören die Kategorien "Cc", "Cf", "Cs", "Co" und "Cn".</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">Alle Steuerzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Alle diakritischen Zeichen. Hierzu gehören die Kategorien "Mn", "Mc" und "Me".</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">Alle diakritischen Zeichen</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Alle Buchstaben. Hierzu gehören die Zeichen "Lu", "Ll", "Lt", "Lm" und "Lo".</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">Alle Buchstaben</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Alle Zahlen. Hierzu gehören die Kategorien "Nd", "Nl" und "No".</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">Alle Zahlen</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Alle Satzzeichen. Hierzu gehören die Kategorien "Pc", "Pd", "Ps", "Pe", "Pi", "Pf" und "Po".</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">Alle Satzzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Alle Trennzeichen. Hierzu gehören die Kategorien "Zs", "Zl" und "Zp".</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">Alle Trennzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Alle Symbole. Hierzu gehören die Kategorien "Sm", "Sc", "Sk" und "So".</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">Alle Symbole</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Mit dem senkrechten Strich (|) können Sie eine beliebige Reihe von Mustern abgleichen, wobei das |-Zeichen die einzelnen Muster voneinander trennt.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">Alternierung</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Der Punkt (.) stimmt mit einem beliebigen Zeichen außer "\n" überein (das Zeilenvorschubzeichen, \u000A). Wenn ein Muster für einen regulären Ausdruck durch die Option "RegexOptions.Singleline" geändert wird oder wenn der Teil des Musters, der die Zeichenklasse "." enthält, durch die Option "s" verändert wird, stimmt "." mit jedem beliebigen Zeichen überein.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">Jedes Zeichen</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Die Rückverfolgung wird durch atomische Gruppen deaktiviert (in anderen Engines für reguläre Ausdrücke als Teilausdruck ohne Rückverfolgung, atomischer Teilausdruck oder Teilausdruck mit einmaligem Abgleich bezeichnet). Die Engine für reguläre Ausdrücke gleicht so viele Zeichen in der Eingabezeichenfolge wie möglich ab. Wenn kein weiterer Abgleich möglich ist, wird keine Rückverfolgung durchgeführt, um alternative Musterabgleiche zu versuchen. (Das heißt, der Teilausdruck stimmt nur mit Zeichenfolgen überein, die dem Teilausdruck allein entsprechen; es wird nicht versucht, eine Zeichenfolge basierend auf dem Teilausdruck und allen nachfolgenden Teilausdrücken abzugleichen.) Diese Option empfiehlt sich, wenn Sie wissen, dass die Rückverfolgung nicht zum Erfolg führt. Indem Sie die Ausführung unnötiger Suchvorgänge durch die Engine für reguläre Ausdrücke verhindern, erzielen Sie eine verbesserte Leistung.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">atomische Gruppe</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Entspricht einem Rückschrittzeichen, \u0008.</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">Rückschrittzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Eine Ausgleichsgruppendefinition löscht die Definition einer zuvor definierten Gruppe und speichert in der aktuellen Gruppe das Intervall zwischen der zuvor definierten Gruppe und der aktuellen Gruppe. "name1" ist die aktuelle Gruppe (optional), "name2" ist eine zuvor definierte Gruppe, und "teilausdruck" ist ein beliebiges gültiges Muster für reguläre Ausdrücke. Die Ausgleichsgruppendefinition löscht die Definition von "name2" und speichert das Intervall zwischen "name2" und "name1" in "name1". Wenn keine Gruppe "name2" definiert ist, wird für die Übereinstimmung eine Rückverfolgung durchgeführt. Weil durch das Löschen der letzten Definition von "name2" die vorherige Definition von "name2" angezeigt wird, können Sie mithilfe dieses Konstrukts den Stapel von Erfassungen für die Gruppe "name2" als Zähler für die Nachverfolgung geschachtelter Konstrukte wie z. B. öffnende und schließende Klammern verwenden. Die Ausgleichsgruppendefinition verwendet "name2" als Stapel. Das Anfangszeichen der einzelnen geschachtelten Konstrukte wird in der Gruppe und in der zugehörigen Group.Captures-Sammlung platziert. Wenn das schließende Zeichen gefunden wurde, wird das entsprechende öffnende Zeichen aus der Gruppe entfernt, und die Captures-Sammlung wird um eins verringert. Nachdem die öffnenden und schließenden Zeichen aller geschachtelten Konstrukte abgeglichen wurden, ist "name1" leer.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">Ausgleichsgruppe</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">Basisgruppe</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Entspricht einem Glockenzeichen (Alarm), \u0007.</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">Glockenzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Entspricht einem Wagenrücklaufzeichen, \u000D. Beachten Sie, dass "\r" nicht dem Zeilenvorschubzeichen "\n" entspricht.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">Wagenrücklaufzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">Die Zeichenklassensubtraktion ergibt einen Satz von Zeichen, der auf dem Ausschließen der Zeichen einer Zeichenklasse von einer anderen Zeichenklasse beruht. "base_group" ist eine positive oder negative Zeichengruppe bzw. ein positiver oder negativer Bereich. Die Komponente "excluded_group" ist eine andere positive oder negative Zeichengruppe oder ein anderer Ausdruck zur Zeichenklassensubtraktion (das heißt, Ausdrücke zur Zeichenklassensubtraktion können geschachtelt werden).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">Zeichenklassensubtraktion</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">Zeichengruppe</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">Kommentar</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Dieses Sprachelement unternimmt den Abgleich mit einem von zwei Mustern abhängig davon, ob der Abgleich mit einem Anfangsmuster möglich ist. "expression" ist das anfängliche Muster für den Abgleich, "yes" ist das Muster, das bei Übereinstimmung des Ausdrucks abgeglichen werden soll, und "No" ist das optionale Muster, das abgeglichen werden soll, wenn der Ausdruck nicht übereinstimmt.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">Abgleich mit bedingtem Ausdruck</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Dieses Sprachelement unternimmt den Abgleich mit einem von zwei Mustern abhängig davon, ob eine Übereinstimmung mit einer angegebenen Erfassungsgruppe vorliegt. "name" ist der Name (oder die Zahl) einer Erfassungsgruppe, "yes" ist der Ausdruck, der bei einer Übereinstimmung für "name" (oder "number") abgeglichen werden soll, und "no" ist der optionale Ausdruck, der andernfalls abgeglichen wird.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">Abgleich mit bedingter Gruppe</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">Der \G-Anker gibt an, dass eine Übereinstimmung an dem Punkt erfolgen muss, an dem die vorherige Übereinstimmung endete. Wenn Sie diesen Anker mit der Regex.Matches- oder der Match.NextMatch-Methode verwenden, wird sichergestellt, dass alle Übereinstimmungen zusammenhängen.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">Zusammenhängende Übereinstimmungen</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Entspricht einem ASCII-Steuerzeichen, wobei "X" der Buchstabe des Steuerzeichens ist. Beispiel: "\cC" steht für STRG-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">Steuerzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">"\d" entspricht einer beliebigen Dezimalzahl. Identisch mit dem Muster für reguläre Ausdrücke "\p{Nd}", welches die Standarddezimalzahlen 0–9 sowie die Dezimalzahlen einer Reihe anderer Zeichensätze enthält. Wenn das ECMAScript-konforme Verhalten angegeben wird, ist "\d" gleichbedeutend mit "[0-9]".</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">Dezimalzahl</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Ein Nummernzeichen (#) markiert einen Kommentar im x-Modus, der am Ende des Musters für reguläre Ausdrücke bei dem #-Zeichen ohne Escapezeichen beginnt und bis zum Zeilenende fortgesetzt wird. Um dieses Konstrukt zu verwenden, müssen Sie entweder die x-Option (über Inlineoptionen) aktivieren oder den RegexOptions.IgnorePatternWhitespace-Wert beim Instanziieren des Regex-Objekts oder beim Aufrufen einer statischen Regex-Methode an den Optionsparameter übergeben.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">Kommentar am Zeilenende</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">Der \z-Anker gibt an, dass eine Übereinstimmung am Ende der Eingabezeichenfolge erfolgen muss. Wie das $-Sprachelement ignoriert \z die Option "RegexOptions.Multiline". Im Gegensatz zum \Z-Sprachelement stimmt \z nicht mit einem \n-Zeichen am Ende einer Zeichenfolge überein. Daher ist nur eine Übereinstimmung mit der letzten Zeile der Eingabezeichenfolge möglich.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">Nur Ende der Zeichenfolge</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">Der \Z-Anker gibt an, dass eine Übereinstimmung am Ende der Eingabezeichenfolge oder vor "\n" am Ende der Eingabezeichenfolge erfolgen muss. \Z ist mit dem $-Anker identisch, außer dass \Z die Option "RegexOptions.Multiline" ignoriert. Daher ist in einer mehrzeiligen Zeichenfolge nur eine Übereinstimmung mit dem Ende der letzten Zeile oder der letzten Zeile vor "\n" möglich. Der \Z-Anker entspricht "\n", stimmt jedoch nicht mit "\r\n" überein (CR/LF-Zeichenkombination). Schließen Sie "\r?\Z" in das Muster für reguläre Ausdrücke ein, um die Übereinstimmung mit CR/LF zu erreichen.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">Ende der Zeichenfolge oder vor dem endenden Zeilenumbruch</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">Der $-Anker gibt an, dass das vorangehende Muster am Ende der Eingabezeichenfolge oder vor "\n" am Ende der Eingabezeichenfolge vorliegen muss. Wenn Sie $ mit der Option "RegexOptions.Multiline" verwenden, kann die Übereinstimmung auch am Ende einer Zeile erfolgen. Der $-Anker stimmt mit "\n", aber nicht mit "\r\n" überein (Kombination aus Wagenrücklauf- und Zeilenvorschubzeichen, auch CR/LF). Um der Kombination aus CR/LF-Zeichen zu entsprechen, schließen Sie "\r?$" in das Muster für reguläre Ausdrücke ein.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">Ende der Zeichenfolge oder Zeile</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Entspricht einem Escapezeichen, \u001B.</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">Escapezeichen</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">Ausschlussgruppe</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">expression</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Entspricht einem Seitenvorschubzeichen, \u000C.</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">Seitenvorschubzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Dieses Gruppierungskonstrukt wendet die angegebenen Optionen innerhalb eines Unterausdrucks an oder deaktiviert sie. Die zu aktivierenden Optionen werden nach dem Fragezeichen und die zu deaktivierenden Optionen nach dem Minuszeichen angegeben. Zulässige Optionen: i Führt den Abgleich ohne Unterscheidung nach Groß-/Kleinschreibung durch. m Verwendet den mehrzeiligen Modus, wobei "^" und "$" mit Anfang und Ende jeder einzelnen Zeile übereinstimmen (anstelle von Anfang und Ende der Eingabezeichenfolge). s Verwendet den einzeiligen Modus, wobei der Punkt (.) mit jedem Zeichen übereinstimmt (anstelle von jedem Zeichen außer "\n"). n Erfasst keine unbenannten Gruppen. Die einzigen gültigen Erfassungen sind explizit benannte oder nummerierte Gruppen im Format (?&lt;name&gt; Teilausdruck). x Schließt Leerraum ohne Escapezeichen aus dem Muster aus und aktiviert Kommentare nach einem Nummernzeichen (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">Gruppenoptionen</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Entspricht einem ASCII-Zeichen, wobei ## ein zweistelliger hexadezimaler Zeichencode ist.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">Hexadezimale Escapezeichen</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">Mit dem Konstrukt (?# Kommentar) können Sie einen Inlinekommentar in einen regulären Ausdruck einbeziehen. Die Engine für reguläre Ausdrücke verwendet keinen Teil des Kommentars beim Musterabgleich, auch wenn der Kommentar in der Zeichenfolge enthalten ist, die von der Regex.ToString-Methode zurückgegeben wird. Der Kommentar endet bei der ersten schließenden Klammer.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">Inlinekommentar</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Aktiviert oder deaktiviert bestimmte Optionen zum Musterabgleich für den Rest eines regulären Ausdrucks. Die zu aktivierenden Optionen werden nach dem Fragezeichen und die zu deaktivierenden Optionen nach dem Minuszeichen angegeben. Zulässige Optionen: i Führt den Abgleich ohne Unterscheidung nach Groß-/Kleinschreibung durch. m Verwendet den mehrzeiligen Modus, wobei "^" und "$" mit Anfang und Ende jeder einzelnen Zeile übereinstimmen (anstelle von Anfang und Ende der Eingabezeichenfolge). s Verwendet den einzeiligen Modus, wobei der Punkt (.) mit jedem Zeichen übereinstimmt (anstelle von jedem Zeichen außer "\n"). n Erfasst keine unbenannten Gruppen. Die einzigen gültigen Erfassungen sind explizit benannte oder nummerierte Gruppen im Format (?&lt;name&gt; Teilausdruck). x Schließt Leerraum ohne Escapezeichen aus dem Muster aus und aktiviert Kommentare nach einem Nummernzeichen (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">Inlineoptionen</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">RegEx-Fehler: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">Buchstabe, Kleinbuchstabe</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">Buchstabe, Modifizierer</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">Buchstabe, sonstiger</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">Buchstabe, erster Buchstabe groß</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">Buchstabe, Großbuchstabe</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">Zeichen, einschließendes Zeichen</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">Zeichen, Zeichen ohne eigene Breite</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">Zeichen, Zeichen mit eigener Breite, Verbindung</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">Der Quantifizierer "{n,}?" stimmt mit dem vorhergehenden Element mindestens n-mal, jedoch möglichst wenige Male überein. "n" steht hierbei für eine beliebige ganze Zahl. Dies ist das träge Äquivalent zum gierigen Quantifizierer "{n,}".</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">Mindestens n-malige Übereinstimmung (träge)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">Der Quantifizierer "{n,}" stimmt mit dem vorhergehenden Element mindestens n-mal überein. "n" steht hierbei für eine beliebige ganze Zahl. "{n,}" ist ein gieriger Quantifizierer, dessen träges Äquivalent "{n,}?" lautet.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">Mindestens n-malige Übereinstimmung</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">Der Quantifizierer "{n,m}?" stimmt mit dem vorhergehenden Element zwischen n- und m-mal, jedoch möglichst wenige Male überein. "n" und "m" stehen hierbei für ganze Zahlen. Dies ist das träge Äquivalent zum gierigen Quantifizierer "{n,m}".</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">Mindestens n-malige Übereinstimmung (träge)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">Der Quantifizierer "{n,m}" stimmt mit dem vorhergehenden Element mindestens n-mal, aber nicht häufiger als m-mal überein. "n" und "m" stehen hierbei für ganze Zahlen. "{n,m}" ist ein gieriger Quantifizierer, dessen träges Äquivalent "{n,m}?" lautet.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">Zwischen m- und n-malige Übereinstimmung</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">Der Quantifizierer {n}? stimmt mit dem vorhergehenden Element genau n-mal überein. "n" steht hierbei für eine beliebige ganze Zahl. Dies ist das träge Äquivalent zum gierigen Quantifizierer "{n}+".</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">Genau n-malige Übereinstimmung (träge)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">Der Quantifizierer "{n}" stimmt mit dem vorhergehenden Element genau n-mal überein. "n" steht hierbei für eine beliebige ganze Zahl. "{n}" ist ein gieriger Quantifizierer, dessen träges Äquivalent "{n}?" lautet.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">Genau n-malige Übereinstimmung</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">Der Quantifizierer "+?" stimmt mit dem vorhergehenden Element mindestens einmal, jedoch möglichst wenige Male überein. Dies ist das träge Äquivalent zum gierigen Quantifizierer "+".</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">Mindestens einmalige Übereinstimmung (träge)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">Der Quantifizierer "+" stimmt mit dem vorhergehenden Element mindestens einmal überein. Dieser Quantifizierer ist identisch mit "{1,}". "+" ist ein gieriger Quantifizierer, dessen träges Äquivalent "+?" lautet.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">Mindestens einmalige Übereinstimmung</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">Der Quantifizierer "*?" stimmt mit dem vorhergehenden Element mindestens nullmal, jedoch möglichst wenige Male überein. Dies ist das träge Äquivalent zum gierigen Quantifizierer "*".</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">Mindestens nullmalige Übereinstimmung (träge)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">Der Quantifizierer "*" stimmt mit dem vorhergehenden Element mindestens nullmal überein. Dieser Quantifizierer ist identisch mit "{0,}". "*" ist ein gieriger Quantifizierer, dessen träges Äquivalent "*?" lautet.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">Mindestens nullmalige Übereinstimmung</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">Der Quantifizierer "??" stimmt mit dem vorhergehenden Element null- oder einmal, jedoch möglichst wenige Male überein. Dies ist das träge Äquivalent zum gierigen Quantifizierer "?".</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">Null- oder einmalige Übereinstimmung (träge)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">Der Quantifizierer "?" stimmt mit dem vorhergehenden Element null- oder einmal überein. Dieser Quantifizierer ist identisch mit "{0,1}". "?" ist ein gieriger Quantifizierer, dessen träges Äquivalent "??" lautet.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">Null- oder einmalige Übereinstimmung</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Dieses Gruppierungskonstrukt erfasst einen übereinstimmenden "Teilausdruck", wobei "Teilausdruck" für ein beliebiges gültiges Muster für reguläre Ausdrücke steht. Erfassungen, die Klammern verwenden, werden basierend auf der Reihenfolge der öffnenden Klammern im regulären Ausdruck beginnend bei 1 automatisch von links nach rechts nummeriert. Bei der Erfassung mit der Nummerierung 0 handelt es sich um den Text, der mit dem gesamten Muster für reguläre Ausdrücke übereinstimmt.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">Übereinstimmender Teilausdruck</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">Name</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">name-or-number</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Ein benannter oder nummerierter Rückverweis. "Name" ist der Name einer Erfassungsgruppe, die im Muster für reguläre Ausdrücke definiert ist.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">Benannter Rückverweis</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Erfasst einen übereinstimmenden Teilausdruck und ermöglicht Ihnen den Zugriff darauf anhand des Namens oder der Nummer. "Name" ist ein gültiger Gruppenname, und "Teilausdruck" ist ein gültiges Muster für reguläre Ausdrücke. "Name" darf keine Satzzeichen enthalten und nicht mit einer Zahl beginnen. Wenn der RegexOptions-Parameter einer Methode zum Abgleich von Mustern für reguläre Ausdrücke das Flag "RegexOptions.ExplicitCapture" enthält oder wenn die Option "n" auf diesen Teilausdruck angewendet wird, besteht die einzige Möglichkeit zum Erfassen eines Unterausdrucks darin, die Erfassungsgruppen explizit zu benennen.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">Benannter übereinstimmender Teilausdruck</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Eine negative Zeichengruppe gibt eine Liste von Zeichen an, die nicht in einer Eingabezeichenfolge vorkommen dürfen, damit eine Übereinstimmung vorliegt. Die Zeichen in der Liste werden einzeln angegeben. Mehrere Zeichenbereiche können verkettet werden. Um beispielsweise den Bereich der Dezimalstellen von "0" bis "9", den Bereich der Kleinbuchstaben von "a" bis "f" und den Bereich der Großbuchstaben von "A" bis "F" anzugeben, verwenden Sie "[0-9a-fA-F]".</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">Negative Zeichengruppe</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Ein negativer Zeichenbereich gibt eine Liste von Zeichen an, die nicht in einer Eingabezeichenfolge vorkommen dürfen, damit eine Übereinstimmung vorliegt. "firstCharacter" entspricht dem ersten Zeichen und "lastCharacter" dem letzten Zeichen im Bereich. Mehrere Zeichenbereiche können verkettet werden. Um beispielsweise den Bereich der Dezimalstellen von "0" bis "9", den Bereich der Kleinbuchstaben von "a" bis "f" und den Bereich der Großbuchstaben von "A" bis "F" anzugeben, verwenden Sie "[0-9a-fA-F]".</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">Negativer Zeichenbereich</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Das Konstrukt des regulären Ausdrucks "\P{ name }" entspricht einem beliebigen Zeichen, das zu keiner allgemeinen Unicode-Kategorie bzw. keinem benannten Block gehört, wobei "name" der Kategorieabkürzung oder dem Namen des benannten Blocks entspricht.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">Negative Unicode-Kategorie</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Entspricht einem Neue-Zeile-Zeichen, \u000A.</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">Neue-Zeile-Zeichen</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">Nein</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">"\D" entspricht einem beliebigen Zeichen, das keine Ziffer darstellt. Entspricht dem Muster für reguläre Ausdrücke "\P{Nd}". Wenn das ECMAScript-konforme Verhalten angegeben wird, ist "\D" gleichbedeutend mit "[^0-9]".</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">Nicht-Ziffernzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">"\S" entspricht einem beliebigen Nicht-Leerraumzeichen. Dies ist identisch mit dem Muster für reguläre Ausdrücke "[^\f\n\r\t\v\x85\p{Z}]" oder mit dem Gegenteil des Musters für reguläre Ausdrücke "\s", welches mit Leerraumzeichen übereinstimmt. Wenn das ECMAScript-konforme Verhalten angegeben wird, ist "\S" gleichbedeutend mit "[^ \f\n\r\t\v]".</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">Nicht-Leerraumzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">Der \B-Anker gibt an, dass die Übereinstimmung nicht an einer Wortgrenze auftreten darf. Dies ist das Gegenteil vom \b-Anker.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">Nicht-Wortgrenze</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">"\W" entspricht einem beliebigen Nicht-Wortzeichen. Stimmt mit einem beliebigen Zeichen überein, das nicht in den folgenden Unicode-Kategorien enthalten ist: Ll Buchstabe, Kleinbuchstabe Lu Buchstabe, Großbuchstabe Lt Buchstabe, erster Buchstabe groß Lo Buchstabe, sonstige Lm Buchstabe, Modifizierer Mn Zeichen, Zeichen ohne eigene Breite Nd Zahl, Dezimalzahl Pc Interpunktion, Verbindung Wenn das ECMAScript-konforme Verhalten angegeben wird, ist "\W" gleichbedeutend mit "[^a-zA-Z_0-9]".</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">Nicht-Wortzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Dieses Konstrukt erfasst nicht die Teilzeichenfolge, die mit einem Teilausdruck übereinstimmt: Das Konstrukt der Nicht-Erfassungsgruppe wird normalerweise verwendet, wenn ein Quantifizierer auf eine Gruppe angewendet wird, die von der Gruppe erfassten Teilzeichenfolgen jedoch nicht relevant sind. Wenn ein regulärer Ausdruck geschachtelte Gruppierungskonstrukte enthält, gilt ein äußeres Konstrukt von Nicht-Erfassungsgruppen nicht für die inneren geschachtelten Gruppenkonstrukte.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">Nicht-Erfassungsgruppe</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">Zahl, Dezimalzahl</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">Zahl, Buchstabe</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">Zahl, sonstige</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Ein nummerierter Rückverweis, wobei "zahl" für die Ordnungsposition der Erfassungsgruppe im regulären Ausdruck steht. Beispiel: \4 entspricht dem Inhalt der vierten Erfassungsgruppe. Es besteht eine Mehrdeutigkeit zwischen den Escapecodes für Oktalzahlen (z. B. \16) und den \zahl-Rückverweisen, die dieselbe Notation verwenden. Wenn die Mehrdeutigkeit ein Problem darstellt, können Sie die \k&lt;name&gt;-Notation verwenden, die eindeutig ist und nicht mit Oktalzeichencodes verwechselt werden kann. Ebenso eindeutig sind hexadezimale Codes wie \xdd, die nicht mit Rückverweisen verwechselt werden können.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">Nummerierter Rückverweis</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">Sonstige, Steuerelement</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">Sonstige, Format</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">Sonstige, nicht zugewiesen</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">Sonstige, private Nutzung</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">Sonstige, Ersatzzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Eine positive Zeichengruppe gibt eine Liste von Zeichen an, von denen jedes in einer Eingabezeichenfolge enthalten sein kann, damit eine Übereinstimmung auftritt.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">Positive Zeichengruppe</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Ein positiver Zeichenbereich gibt einen Bereich von Zeichen an, von denen jedes in einer Eingabezeichenfolge enthalten sein kann, damit eine Übereinstimmung auftritt. "firstCharacter" ist das erste Zeichen und "lastCharacter" das letzte Zeichen des Bereichs. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">Positiver Zeichenbereich</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">Interpunktion, schließen</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">Interpunktion, Verbindung</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">Interpunktion, Bindestrich</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">Interpunktion, schließendes Anführungszeichen</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">Interpunktion, öffnendes Anführungszeichen</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">Interpunktion, öffnen</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">Interpunktion, sonstige</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">Trennzeichen, Zeile</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">Trennzeichen, Absatz</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">Trennzeichen, Leerzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">Der \A-Anker gibt an, dass eine Übereinstimmung am Anfang der Eingabezeichenfolge erfolgen muss. Er ist identisch mit dem ^-Anker, mit der Ausnahme, dass \A die Option "RegexOptions.Multiline" ignoriert. Daher ist nur eine Übereinstimmung mit dem Anfang der ersten Zeile in einer mehrzeiligen Eingabezeichenfolge möglich.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">Nur Anfang der Zeichenfolge</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">Der ^-Anker gibt an, dass das folgende Muster an der ersten Zeichenposition der Zeichenfolge beginnen muss. Wenn Sie "^" mit der Option "RegexOptions.Multiline" verwenden, muss die Übereinstimmung am Anfang jeder Zeile erfolgen.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">Anfang der Zeichenfolge oder Zeile</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">Teilausdruck</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">Symbol, Währung</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">Symbol, Mathematik</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">Symbol, Modifizierer</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">Symbol, sonstige</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Entspricht einem Tabstoppzeichen, \u0009.</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">Tabstoppzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Das Konstrukt des regulären Ausdrucks "\p{ name }" entspricht einem beliebigen Zeichen, das zu einer allgemeinen Unicode-Kategorie oder einem benannten Block gehört, wobei "name" der Kategorieabkürzung oder dem Namen des benannten Blocks entspricht.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">Unicode-Kategorie</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Entspricht einer UTF-16-Codeeinheit, deren Wert hexadezimal (####) ist.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">Unicode-Escapezeichen</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Allgemeine Unicode-Kategorie: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Entspricht einem vertikalen Tabstoppzeichen, \u000B.</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">Vertikales Tabstoppzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">"\s" stimmt mit einem beliebigen Leerraumzeichen überein. Entspricht den folgenden Escapesequenzen und Unicode-Kategorien: \f Das Seitenvorschubzeichen, \u000C \n Das Zeilenvorschubzeichen, \u000A \r Das Wagenrücklaufzeichen, \u000D \t Das Tabstoppzeichen, \u0009 \v Das vertikale Tabstoppzeichen, \u000B \x85 Das Auslassungszeichen oder NEL-Zeichen für die nächste Zeile (...), \u0085 \p{Z} Entspricht einem beliebigen Trennzeichen Wenn das ECMAScript-konforme Verhalten angegeben wird, ist "\s" gleichbedeutend mit "[\f\n\r\t\v]".</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">Leerraumzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">Der \b-Anker gibt an, dass die Übereinstimmung an einer Grenze zwischen einem Wortzeichen (dem \w-Sprachelement) und einem Nicht-Wortzeichen (dem \W-Sprachelement) erfolgen muss. Wortzeichen bestehen aus alphanumerischen Zeichen und Unterstrichen; ein Nicht-Wortzeichen ist ein beliebiges Zeichen, das nicht alphanumerisch oder ein Unterstrich ist. Die Übereinstimmung kann auch an einer Wortgrenze am Anfang oder Ende der Zeichenfolge auftreten. Der \b-Anker wird häufig verwendet, um sicherzustellen, dass ein Teilausdruck mit einem ganzen Wort statt nur mit dem Anfang oder Ende eines Worts übereinstimmt.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">Wortgrenze</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">"\w" entspricht einem beliebigen Wortzeichen. Ein Wortzeichen gehört zu einer der folgenden Unicode-Kategorien: Ll Buchstabe, Kleinbuchstabe Lu Buchstabe, Großbuchstabe Lt Buchstabe, erster Buchstabe groß Lo Buchstabe, sonstige Lm Buchstabe, Modifizierer Mn Zeichen, Zeichen ohne eigene Breite Nd Zahl, Dezimalzahl Pc Interpunktion, Verbindung Wenn das ECMAScript-konforme Verhalten angegeben wird, ist "\w" gleichbedeutend mit "[a-zA-Z_0-9]".</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">Wortzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">Ja</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Eine negative Lookaheadassertion mit Nullbreite, bei der eine Übereinstimmung erfolgreich ist, wenn die Eingabezeichenfolge nicht dem Muster für reguläre Ausdrücke im Teilausdruck entspricht. Die übereinstimmende Zeichenfolge ist im Übereinstimmungsergebnis nicht enthalten. Eine negative Lookaheadassertion mit Nullbreite wird in der Regel entweder am Anfang oder am Ende eines regulären Ausdrucks verwendet. Am Anfang eines regulären Ausdrucks kann ein bestimmtes Muster definiert werden, das nicht übereinstimmen darf, wenn der Anfang des regulären Ausdrucks ein ähnliches, aber allgemeineres Muster für den Abgleich definiert. In diesem Fall wird sie häufig verwendet, um die Rückverfolgung einzuschränken. Am Ende eines regulären Ausdrucks kann ein Teilausdruck definiert werden, der nicht am Ende einer Übereinstimmung vorliegen darf.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">Negative Lookaheadassertion mit Nullbreite</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Eine negative Lookbehindassertion mit Nullbreite, bei der eine Übereinstimmung erfolgreich ist, wenn "Teilausdruck" nicht in der Eingabezeichenfolge links von der aktuellen Position vorliegt. Teilzeichenfolgen, die nicht mit "Teilausdruck" übereinstimmen, sind im Übereinstimmungsergebnis nicht enthalten. Negative Lookbehindassertionen mit Nullbreite werden normalerweise am Anfang regulärer Ausdrücke verwendet. Das von ihnen definierte Muster verhindert eine Übereinstimmung in der nachfolgenden Zeichenfolge. Sie werden zudem zum Begrenzen der Rückverfolgung verwendet, wenn das letzte Zeichen oder die Zeichen in einer erfassten Gruppe nicht mit einem oder mehreren Zeichen übereinstimmen dürfen, die dem Muster für reguläre Ausdrücke der Gruppe entsprechen.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">Negative Lookbehindassertion mit Nullbreite</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Eine positive Lookaheadassertion mit Nullbreite, bei der eine Übereinstimmung erfolgreich ist, wenn die Eingabezeichenfolge dem Muster für reguläre Ausdrücke im Teilausdruck entspricht. Die abgeglichene Zeichenfolge ist im Übereinstimmungsergebnis nicht enthalten. Für eine positive Lookaheadassertion wird keine Rückverfolgung durchgeführt. Eine positive Lookaheadassertion mit Nullbreite wird in der Regel am Ende eines Musters für reguläre Ausdrücke verwendet. Sie definiert eine Teilzeichenfolge, die sich am Ende einer Zeichenfolge befinden muss, damit eine Übereinstimmung vorliegt, die aber nicht in der Übereinstimmung enthalten sein darf. Sie eignet sich auch zum Verhindern einer übermäßigen Rückverfolgung. Mit einer positiven Lookaheadassertion mit Nullbreite können Sie sicherstellen, dass eine bestimmte erfasste Gruppe mit einem Text beginnt, der einer Teilmenge des für die erfasste Gruppe definierten Musters entspricht.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">Positive Lookaheadassertion mit Nullbreite</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Eine positive Lookbehindassertion mit Nullbreite, bei der eine Übereinstimmung erfolgreich ist, wenn "Teilausdruck" in der Eingabezeichenfolge links von der aktuellen Position vorliegt. "Teilausdruck" ist im Übereinstimmungsergebnis nicht enthalten. Bei einer positiven Lookbehindassertion mit Nullbreite wird keine Rückverfolgung durchgeführt. Positive Lookbehindassertionen mit Nullbreite werden normalerweise am Anfang regulärer Ausdrücke verwendet. Das von ihnen definierte Muster ist eine Vorbedingung für eine Übereinstimmung, auch wenn es nicht zum Übereinstimmungsergebnis gehört.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">Positive Lookbehindassertion mit Nullbreite</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">In Metadaten gefundene ähnliche Methodensignaturen werden nicht aktualisiert.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Das Entfernen des Dokuments wird nicht unterstützt.</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">async-Modifizierer entfernen</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Nicht erforderliche Umwandlungen entfernen</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Nicht verwendete Variablen entfernen</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">"{0}" durch "{1}" ersetzen</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Konfliktmarkierungen auflösen</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Grobe Bearbeitung</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Zugriffsmodifizierer sortieren</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">In aufeinanderfolgende {0}-Anweisungen teilen</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">In geschachtelte {0}-Anweisungen teilen</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Stream muss Lese- und Suchvorgänge unterstützen.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">{0} unterdrücken</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: Nicht verwaltete Ressourcen (nicht verwaltete Objekte) freigeben und Finalizer überschreiben</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: Finalizer nur überschreiben, wenn "{0}" Code für die Freigabe nicht verwalteter Ressourcen enthält</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Übereinstimmungen mit Zieltyp</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">Die Assembly "{0}" mit dem Typ "{1}" verweist auf das .NET Framework. Dies wird nicht unterstützt.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">Die Auswahl enthält einen lokalen Funktionsaufruf ohne Deklaration.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Zu viele |-Zeichen in (?()|).</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Zu viele )-Zeichen.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Die Quelldatei "{0}" oder die für das enthaltende Projekt kompilierte PDB-Datei kann nicht gelesen werden. Alle Änderungen, die während des Debuggens an dieser Datei vorgenommen wurden, werden erst angewendet, wenn der Inhalt dem kompilierten Quellcode entspricht.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Unbekannte Eigenschaft</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Unbekannte Eigenschaft "{0}"</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Unbekanntes Steuerzeichen</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Unbekannte Escapesequenz \{0}.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Unbekanntes Gruppierungskonstrukt.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Nicht abgeschlossener []-Satz</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Nicht abgeschlossener (?#...)-Kommentar.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Umbruch für alle Argumente aufheben</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Umbruch für alle Parameter aufheben</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Umbruch für alle Argumente aufheben und einrücken</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Umbruch für alle Parameter aufheben und einrücken</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Umbruch für Argumentliste aufheben</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Umbruch für alle Aufrufkette aufheben</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Umbruch für Ausdruck aufheben</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Umbruch für Parameterliste aufheben</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Blocktextkörper für Lambdaausdrücke verwenden</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Ausdruckskörper für Lambdaausdrücke verwenden</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Interpolierte ausführliche Zeichenfolge verwenden</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Wert:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Warnung: Die Semantik kann sich beim Konvertieren der Anweisung ändern.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Aufrufkette umbrechen und ausrichten</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Ausdruck umbrechen und ausrichten</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Lange Aufrufkette umbrechen und ausrichten</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Aufrufkette umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Jedes Argument umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Alle Parameter umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Ausdruck umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Lange Argumentliste umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Lange Aufrufkette umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Lange Parameterliste umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Umbruch</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Sie können die Navigationsleiste verwenden, um den Kontext zu wechseln.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">"{0}" kann nicht NULL oder leer sein.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">"{0}" darf nicht NULL oder ein Leerraumzeichen sein.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">"{0}" ist hier nicht NULL.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">"{0}" darf hier NULL sein.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">10.000.000stel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "fffffff" repräsentiert die sieben signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Zehnmillionstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Obwohl die Zehnmillionstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">10.000.000stel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "FFFFFFF" repräsentiert die sieben signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Zehnmillionstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Nachgestellte Nullen oder sieben Nullstellen werden jedoch nicht angezeigt. Obwohl die Zehnmillionstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1.000.000stel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "ffffff" repräsentiert die sechs signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Millionstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Obwohl die Millionstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1.000.000stel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "FFFFFF" repräsentiert die sechs signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Millionstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Nachgestellte Nullen oder sechs Nullstellen werden jedoch nicht angezeigt. Obwohl die Millionstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">100.000stel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "fffff" repräsentiert die fünf signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Hunderttausendstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Obwohl die Hunderttausendstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">100.000stel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "FFFFF" repräsentiert die fünf signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Hunderttausendstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Nachgestellte Nullen oder fünf Nullstellen werden jedoch nicht angezeigt. Obwohl die Hunderttausendstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">10.000stel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "ffff" repräsentiert die vier signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Zehntausendstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Obwohl die Zehntausendstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">10.000stel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "FFFF" repräsentiert die vier signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Zehntausendstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Nachgestellte Nullen oder vier Nullstellen werden jedoch nicht angezeigt. Obwohl die Zehntausendstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1.000stel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "fff" repräsentiert die drei signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Millisekunden in einem Datums- und Uhrzeitwert dar. </target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1.000stel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "FFF" repräsentiert die drei signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Millisekunden in einem Datums- und Uhrzeitwert dar. Nachgestellte Nullen oder drei Nullstellen werden jedoch nicht angezeigt.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">100stel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "ff" repräsentiert die zwei signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Hundertstelsekunden in einem Datums- und Uhrzeitwert dar.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">100stel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "FF" repräsentiert die zwei signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Hundertstelsekunden in einem Datums- und Uhrzeitwert dar. Nachgestellte Nullen oder zwei Nullstellen werden jedoch nicht angezeigt.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">Zehntel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">Zehntel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "F" repräsentiert die signifikanteste Stelle des Sekundenbruchteils, d. h., er stellt die Zehntelsekunden in einem Datums- und Uhrzeitwert dar. Wenn die Stelle 0 lautet, wird nichts angezeigt. Bei Verwendung des Formatbezeichners "f" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "f" für Datum und Uhrzeit interpretiert. Bei Verwendung des Formatbezeichners "f" als Teil einer Formatzeichenfolge zur Übergabe an die ParseExact-, TryParseExact-, ParseExact- oder TryParseExact-Methode gibt die f-Formatbezeichneranzahl die Anzahl der signifikantesten Stellen des Sekundenbruchteils an, die vorhanden sein müssen, um die Zeichenfolge erfolgreich zu analysieren.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12-Stunden-Format (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "h" repräsentiert die Stunde als eine Zahl zwischen 1 und 12, d. h., die Stunde wird in einem 12-Stunden-Format dargestellt, bei dem die ganzen Stunden seit Mitternacht oder Mittag gezählt werden. Eine bestimmte Stunde nach Mitternacht ist nicht von der gleichen Stunde nach Mittag unterscheidbar. Der Stundenwert wird nicht gerundet, und ein einstelliger Stundenwert wird ohne führende Null formatiert. Beispielsweise zeigt dieser benutzerdefinierte Formatbezeichner bei der Uhrzeit 5:43 morgens oder nachmittags den Wert "5" an. Bei Verwendung des Formatbezeichners "h" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner für Datum und Uhrzeit interpretiert und löst eine FormatException aus.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12-Stunden-Format (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "hh" (plus beliebig viele zusätzliche h-Bezeichner) repräsentiert die Stunde als eine Zahl zwischen 01 und 12, d. h., die Stunde wird in einem 12-Stunden-Format dargestellt, bei dem die ganzen Stunden seit Mitternacht oder Mittag gezählt werden. Eine bestimmte Stunde nach Mitternacht ist nicht von der gleichen Stunde nach Mittag unterscheidbar. Der Stundenwert wird nicht gerundet, und ein einstelliger Stundenwert wird mit einer führenden Null formatiert. Beispielsweise zeigt dieser benutzerdefinierte Formatbezeichner bei der Uhrzeit 5:43 morgens oder nachmittags den Wert "05" an.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24-Stunden-Format (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "H" repräsentiert die Stunde als eine Zahl zwischen 0 und 23, d. h., die Stunde wird in einem nullbasierten 24-Stunden-Format dargestellt, bei dem die Stunden seit Mitternacht gezählt werden. Ein einstelliger Stundenwert wird ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "H" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner für Datum und Uhrzeit interpretiert und löst eine FormatException aus.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24-Stunden-Format (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "HH" (plus beliebig viele zusätzliche H-Bezeichner) repräsentiert die Stunde als eine Zahl zwischen 00 und 23, d. h., die Stunde wird in einem nullbasierten 24-Stunden-Format dargestellt, bei dem die Stunden seit Mitternacht gezählt werden. Ein einstelliger Stundenwert wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">Code</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">Datumstrennzeichen</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "/" repräsentiert das Datumstrennzeichen, das zur Unterscheidung von Jahren, Monaten und Tagen verwendet wird. Das geeignete lokalisierte Datumstrennzeichen wird aus der DateTimeFormatInfo.DateSeparator-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen. Hinweis: Um das Datumstrennzeichen für eine bestimmte Datums- und Uhrzeitzeichenfolge zu ändern, geben Sie das Trennzeichen innerhalb eines Trennzeichens einer Literalzeichenfolge an. Beispielsweise erzeugt die benutzerdefinierte Formatzeichenfolge "mm'/'dd'/'yyyy" eine Ergebniszeichenfolge, in der stets "/" als Datumstrennzeichen verwendet wird. Um das Datumstrennzeichen für alle Datumswerte für eine Kultur zu ändern, ändern Sie entweder den Wert der DateTimeFormatInfo.DateSeparator-Eigenschaft der aktuellen Kultur, oder instanziieren Sie ein DateTimeFormatInfo-Objekt, weisen Sie das Zeichen der zugehörigen DateSeparator-Eigenschaft zu, und rufen Sie eine Überladung der Formatierungsmethode auf, die einen IFormatProvider-Parameter umfasst. Bei Verwendung des Formatbezeichners "/" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner für Datums- und Uhrzeitwerte interpretiert und löst eine FormatException aus.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">Tag des Monats (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "d" repräsentiert den Tag des Monats als eine Zahl zwischen 1 und 31. Ein einstelliger Tageswert wird ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "d" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "d" für Datum und Uhrzeit interpretiert.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">Tag des Monats (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "dd" repräsentiert den Tag des Monats als eine Zahl zwischen 01 und 31. Ein einstelliger Tageswert wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">Tag der Woche (abgekürzt)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "ddd" repräsentiert den abgekürzten Namen des Wochentags. Der lokalisierte abgekürzte Name des Wochentags wird aus der DateTimeFormatInfo.AbbreviatedDayNames-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">Tag der Woche (vollständig)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "dddd" (plus beliebig viele zusätzliche d-Bezeichner) repräsentiert den vollständigen Namen des Wochentags. Der lokalisierte Name des Wochentags wird aus der DateTimeFormatInfo.DayNames-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">Ausschussvariable</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">aus Metadaten</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">Vollständige(s) Datum/Uhrzeit (lang)</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">Der Standardformatbezeichner "F" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitzeichenfolge, die durch die aktuelle DateTimeFormatInfo.FullDateTimePattern-Eigenschaft definiert ist. Die benutzerdefinierte Formatzeichenfolge für die invariante Kultur lautet beispielsweise "dddd, dd MMMM yyyy HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">Vollständige(s) Datum/Uhrzeit (kurz)</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Formatbezeichner für das Datum in Langform und die Uhrzeit in Kurzform ("f") Der Standardformatbezeichner "f" repräsentiert eine Kombination aus den Mustern für das lange Datumsformat ("D") und das kurze Uhrzeitformat ("t"), getrennt durch ein Leerzeichen.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">Allgemeine(s) Datum/Uhrzeit (lang)</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">Der Standardformatbezeichner "G" repräsentiert eine Kombination aus den Mustern für das kurze Datumsformat ("d") und das lange Uhrzeitformat ("T"), getrennt durch ein Leerzeichen.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">Allgemeine(s) Datum/Uhrzeit (kurz)</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">Der Standardformatbezeichner "g" repräsentiert eine Kombination aus den Mustern für das kurze Datumsformat ("d") und das kurze Uhrzeitformat ("t"), getrennt durch ein Leerzeichen.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">generische Überladung</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">generische Überladungen</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">in {0} ({1}–{2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">in Quelle (Attribut)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">Langes Datumsformat</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">Der Standardformatbezeichner "D" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die aktuelle DateTimeFormatInfo.LongDatePattern-Eigenschaft definiert ist. Die benutzerdefinierte Formatzeichenfolge für die invariante Kultur lautet beispielsweise "dddd, dd MMMM yyyy".</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">Langes Uhrzeitformat</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">Der Standardformatbezeichner "T" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die DateTimeFormatInfo.LongTimePattern-Eigenschaft einer bestimmten Kultur definiert ist. Die benutzerdefinierte Formatzeichenfolge für die invariante Kultur lautet beispielsweise "HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} "{1}"</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">Minute (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "m" repräsentiert die Minute als eine Zahl zwischen 0 und 59. Der Minutenwert steht für ganze Minuten, die seit der letzten Stunde vergangen sind. Ein einstelliger Minutenwert wird ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "m" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "m" für Datum und Uhrzeit interpretiert.</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">Minute (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "mm" (plus beliebig viele zusätzliche m-Bezeichner) repräsentiert die Minute als eine Zahl zwischen 00 und 59. Der Minutenwert steht für ganze Minuten, die seit der letzten Stunde vergangen sind. Ein einstelliger Minutenwert wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">Monate (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "M" repräsentiert den Monat als eine Zahl zwischen 1 und 12 (bzw. zwischen 1 und 13 für Kalender mit 13 Monaten). Ein einstelliger Monatswert wird ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "M" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "M" für Datum und Uhrzeit interpretiert.</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">Monat (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "MM" repräsentiert den Monat als eine Zahl zwischen 01 und 12 (bzw. zwischen 1 und 13 für Kalender mit 13 Monaten). Ein einstelliger Monatswert wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">Monat (abgekürzt)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "MMM" repräsentiert den abgekürzten Namen des Monats. Der lokalisierte abgekürzte Name des Monats wird aus der DateTimeFormatInfo.AbbreviatedMonthNames-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">Tag des Monats</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">Der Standardformatbezeichner "M" oder "m" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die aktuelle DateTimeFormatInfo.MonthDayPattern-Eigenschaft definiert ist. Die benutzerdefinierte Formatzeichenfolge für die invariante Kultur lautet beispielsweise "MMMM dd".</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">Monat (vollständig)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "MMMM" repräsentiert den vollständigen Namen des Monats. Der lokalisierte Name des Monats wird aus der DateTimeFormatInfo.MonthNames-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">Überladung</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">Überladungen</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0}-Schlüsselwort</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Feld kapseln: "{0}" (und Eigenschaft verwenden)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Feld kapseln: "{0}" (Feld jedoch weiterhin verwenden)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Felder kapseln (und Eigenschaft verwenden)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Felder kapseln (Feld jedoch weiterhin verwenden)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Schnittstelle konnte nicht extrahiert werden: Die Auswahl befindet sich nicht in einer Klasse/Schnittstelle/Struktur.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Schnittstelle konnte nicht extrahiert werden: Der Typ enthält kein Element, das in eine Schnittstelle extrahiert werden kann.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">Endgültiger Baum konnte nicht erstellt werden</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Parametertyp oder Rückgabetyp können kein anonymer Typ sein : [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">Die Auswahl enthält keine aktive Anweisung.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">Die Auswahl enthält einen Fehler oder einen unbekannten Typen.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Typparameter "{0}" wird durch einen anderen Typparameter "{1}" verborgen.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">Die Adress einer Variable wird in dem ausgewählten Code verwendet.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">Das Zuweisen zu schreibgeschützten Feldern muss in einem Konstruktor erfolgen: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">generierter Code überschneidet sich mit dem ausgeblendeten Teil des Codes</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Optionale Parameter zu "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Parameter zu "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Delegierenden Konstruktor "{0}({1})" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Konstruktor "{0}({1})" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Feldzuweisungskonstruktor "{0}({1})" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">"Equals" und "GetHashCode" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">"Equals(object)" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">"GetHashCode()" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Konstruktor in "{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Alle generieren</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Aufzählungselement "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Konstante "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Schreibgeschützte Eigenschaft "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Eigenschaft "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Schreibgeschütztes Feld "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Feld "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Lokales "{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">{0}-Objekt "{1}" in neuer Datei generieren</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Geschachteltes {0}-Objekt "{1}" generieren</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Globaler Namespace</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Schnittstelle abstrakt implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Schnittstelle über "{0}" implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Schnittstelle implementieren</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Feld für "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Lokales Element für "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Konstante für "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Lokale Konstante für "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Feld für alle Vorkommen von "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Lokales Element für alle Vorkommen von "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Konstante für alle Vorkommen von "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Lokale Konstante für alle Vorkommen von "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Abfragevariable für alle Vorkommen von "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Abfragevariable für "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Anonyme Typen:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">ist</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Stellt ein Objekt dar, dessen Vorgänge zur Laufzeit aufgelöst werden.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">Konstante</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">Feld</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">lokale Konstante</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">Lokale Variable</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">Bezeichnung</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">Zeitraum/Epoche</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "g" oder "gg" (plus eine beliebige Anzahl zusätzlicher g-Bezeichner) repräsentiert ein Zeitalter oder eine Epoche, wie z. B. A. D. (Anno Domini). Dieser Bezeichner wird bei der Formatierung ignoriert, wenn dem zu formatierenden Datum keine Zeitalter- oder Epochenzeichenfolge zugeordnet ist. Bei Verwendung des Formatbezeichners "g" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "g" für Datum und Uhrzeit interpretiert.</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">Bereichsvariable</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">Parameter</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">Ein</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Zusammenfassung:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Lokale Variablen und Parameter</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Typparameter:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Rückgabewerte:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Ausnahmen:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Hinweise:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">Das Generieren der Symbolquelle dieses Typs wird nicht unterstützt</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">Assembly</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">Standort unbekannt</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Unerwartete Schnittstellenelementart: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Unbekannte Symbolart</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Abstrakte Eigenschaft "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Abstrakte Methode "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Methode "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">Angefordertes Assembly wurde bereits von "{0}" geladen.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Das Symbol hat kein Symbolbild.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Asynchrone Methode darf keine ref/out-Parameter aufweisen : [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Das Element wird in den Metadaten definiert.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Sie können nur die Signatur eines Konstruktors, eines Indexers, einer Methode oder eines Delegaten ändern.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Definitionen oder Verweise im Zusammenhang mit diesem Symbol befinden sich in den Metadaten. Durch Ändern der Signatur können Fehler beim Erstellen auftreten. Möchten Sie fortfahren?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Signatur ändern...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Neuen Typ generieren...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Benutzerfehler bei Diagnoseanalysetool.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">Die Analyse "{0}" hat eine Ausnahme vom Typ "{1}" mit der Meldung "{2}" ausgelöst.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">Das Analysetool "{0}" hat die folgende Ausnahme ausgelöst: "{1}".</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Namen vereinfachen</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Memberzugriff vereinfachen</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Qualifizierung entfernen</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Unbekannter Fehler aufgetreten</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Verfügbar</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Nicht verfügbar ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">In Quelle</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">In Unterdrückungsdatei</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Unterdrückung "{0}" entfernen</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Unterdrückung entfernen</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;Ausstehend&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Hinweis: Drücken Sie zweimal die TAB-TASTE, um den Ausschnitt "{0}" einzufügen.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Schnittstelle explizit mit Dispose-Muster implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Schnittstelle mit Dispose-Muster implementieren</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Erneute Triage {0} (zurzeit "{1}")</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">Argument darf kein Nullelement enthalten.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">Argument darf nicht leer sein.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">Die gemeldete Diagnose mit ID "{0}" wird vom Diagnoseanalysetool nicht unterstützt.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Berechnen der Codefehlerbehebung für alle Vorkommen...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Alle Vorkommen korrigieren</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Dokument</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Projekt </target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Projektmappe</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: Verwalteten Zustand (verwaltete Objekte) bereinigen</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: Große Felder auf NULL setzen</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Compiler</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">Live</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">enum – Wert</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">const – Feld</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">Methode</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">Operator</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">Konstruktor</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">Auto-Eigenschaft</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">Eigenschaft</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">Ereignisaccessor</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">RFC1123-Datum/Uhrzeit</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Der Standardformatbezeichner "R" oder "r" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die DateTimeFormatInfo.RFC1123Pattern-Eigenschaft definiert ist. Das Muster folgt einem definierten Standard, und die Eigenschaft ist schreibgeschützt. Daher ist sie immer gleich, unabhängig von der verwendeten Kultur oder dem angegebenen Formatanbieter. Die benutzerdefinierte Formatzeichenfolge lautet "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". Bei Verwendung dieses Standardformatbezeichners wird für die Formatierung oder Analyse immer die invariante Kultur verwendet.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">Roundtrip-Datum/Uhrzeit</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">Der Standardformatbezeichner "O" oder "o" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge mit Verwendung eines Musters, das die Zeitzoneninformationen beibehält und eine Ergebniszeichenfolge ausgibt, die ISO 8601 entspricht. Für DateTime-Werte ist dieser Formatbezeichner so ausgelegt, dass Datums- und Uhrzeitwerte zusammen mit der DateTime.Kind-Eigenschaft im Text erhalten bleiben. Die formatierte Zeichenfolge kann mit der Methode "DateTime.Parse(String, IFormatProvider, DateTimeStyles)" oder mit der DateTime.ParseExact-Methode rückanalysiert werden, wenn der styles-Parameter auf "DateTimeStyles.RoundtripKind" festgelegt ist. Der Standardformatbezeichner "O" oder "o" entspricht der benutzerdefinierten Formatzeichenfolge "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" für DateTime-Werte und der benutzerdefinierten Formatzeichenfolge "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" für DateTimeOffset-Werte. In dieser Zeichenfolge weisen die Paare einfacher Anführungszeichen zum Abgrenzen einzelner Zeichen – beispielsweise Bindestriche, Doppelpunkte und der Buchstabe "T" – darauf hin, dass es sich bei dem einzelnen Zeichen um ein Literal handelt, das nicht geändert werden kann. Die Apostrophe werden in der Ausgabezeichenfolge nicht angezeigt. Der Standardformatbezeichner "O" oder "o" (und die benutzerdefinierte Formatzeichenfolge "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK") nutzt die drei Möglichkeiten von ISO 8601 zur Darstellung von Zeitzoneninformationen, um die Kind-Eigenschaft der DateTime-Werte beizubehalten: Die Zeitzonenkomponente von Datums- und Uhrzeitwerten von DateTimeKind.Local ist die UTC-Abweichung (z. B. +01:00, -07:00). Alle DateTimeOffset-Werte werden ebenfalls in diesem Format dargestellt. Die Zeitzonenkomponente von Datums- und Uhrzeitwerten von DateTimeKind.Utc verwenden "Z" (entspricht der Abweichung 0), um UTC darzustellen. Datums- und Uhrzeitwerte von DateTimeKind.Unspecified umfassen keine Zeitzoneninformationen. Da der Standardformatbezeichner "O" oder "o" einem internationalen Standard entspricht, werden bei der Formatierung oder Analyse mit diesem Bezeichner immer die invariante Kultur und der gregorianische Kalender verwendet. Zeichenfolgen zur Übergabe an die Parse-, TryParse-, ParseExact- und TryParseExact-Methoden von DateTime und DateTimeOffset können mithilfe der Formatbezeichner "O" oder "o" analysiert werden, wenn sie in einem dieser Formate vorliegen. Im Fall von DateTime-Objekten sollte die aufgerufene Analyseüberladung außerdem einen styles-Parameter mit dem Wert "DateTimeStyles.RoundtripKind" enthalten. Beachten Sie, dass Sie nicht die gleichen Ergebnisse wie für "O" oder "o" erhalten, wenn Sie eine Analysemethode mit der benutzerdefinierten Formatzeichenfolge aufrufen, die dem Formatbezeichner "O" oder "o" entspricht. Dafür gibt es folgenden Grund: Analysemethoden, die eine Zeichenfolge mit benutzerdefiniertem Format verwenden, können die Zeichenfolgendarstellung von Datums- und Uhrzeitwerten nicht analysieren, denen die Zeitzonenkomponente fehlt oder die "Z" zur Angabe von UTC verwenden.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">Sekunde (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "s" repräsentiert die Sekunden als eine Zahl zwischen 0 und 59. Das Ergebnis steht für ganze Sekunden, die seit der letzten Minute vergangen sind. Ein einstelliger Sekundenwert wird ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "s" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "s" für Datum und Uhrzeit interpretiert.</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">Sekunde (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "ss" (plus beliebig viele zusätzliche s-Bezeichner) repräsentiert die Sekunden als eine Zahl zwischen 00 und 59. Das Ergebnis steht für ganze Sekunden, die seit der letzten Minute vergangen sind. Ein einstelliger Sekundenwert wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">Kurzes Datumsformat</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">Der Standardformatbezeichner "d" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die DateTimeFormatInfo.ShortDatePattern-Eigenschaft einer bestimmten Kultur definiert wird. Die von der ShortDatePattern-Eigenschaft der invarianten Kultur zurückgegebene benutzerdefinierte Formatzeichenfolge lautet beispielsweise "MM/dd/yyyy".</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">Kurzes Uhrzeitformat</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">Der Standardformatbezeichner "t" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die aktuelle DateTimeFormatInfo.ShortTimePattern-Eigenschaft definiert ist. Die benutzerdefinierte Formatzeichenfolge für die invariante Kultur lautet beispielsweise "HH:mm".</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">Sortierbare(s) Datum/Uhrzeit</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Der Standardformatbezeichner "s" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die DateTimeFormatInfo.SortableDateTimePattern-Eigenschaft definiert wird. Das Muster folgt einem definierten Standard (ISO 8601), und die Eigenschaft ist schreibgeschützt. Daher ist sie immer gleich, unabhängig von der verwendeten Kultur oder dem angegebenen Formatanbieter. Die benutzerdefinierte Formatzeichenfolge lautet "yyyy'-'MM'-'dd'T'HH':'mm':'ss". Der Zweck des Formatbezeichners "s" besteht darin, Ergebniszeichenfolgen zu erzeugen, die basierend auf Datums- und Uhrzeitwerten konsistent in aufsteigender oder absteigender Reihenfolge sortiert werden. Obwohl der Standardformatbezeichner "s" einen Datums- und Uhrzeitwert in einem konsistenten Format repräsentiert, wird der Wert des zu formatierenden Objekts für Datum und Uhrzeit bei der Formatierung nicht geändert, um die zugehörige DateTime.Kind-Eigenschaft oder den zugehörigen DateTimeOffset.Offset-Wert widerzuspiegeln. Beispielsweise sind die Ergebniszeichenfolgen, die bei Formatierung der Datums- und Uhrzeitwerte 2014-11-15T18:32:17+00:00 und 2014-11-15T18:32:17+08:00 generiert werden, identisch. Bei Verwendung dieses Standardformatbezeichners wird zur Formatierung oder Analyse immer die invariante Kultur verwendet.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">statischer Konstruktor</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'"symbol" kann kein Namespace sein.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">Zeittrennzeichen</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner ":" repräsentiert das Zeittrennzeichen, das zur Unterscheidung von Stunden, Minuten und Sekunden verwendet wird. Das geeignete lokalisierte Zeittrennzeichen wird aus der DateTimeFormatInfo.TimeSeparator-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen. Hinweis: Um das Zeittrennzeichen für eine bestimmte Datums- und Uhrzeitzeichenfolge zu ändern, geben Sie das Trennzeichen innerhalb eines Trennzeichens einer Literalzeichenfolge an. Beispielsweise erzeugt die benutzerdefinierte Formatzeichenfolge "hh'_'dd'_'ss" eine Ergebniszeichenfolge, in der stets "_" (ein Unterstrich) als Zeittrennzeichen verwendet wird. Um das Zeittrennzeichen für alle Datumswerte für eine Kultur zu ändern, ändern Sie entweder den Wert der DateTimeFormatInfo.TimeSeparator-Eigenschaft der aktuellen Kultur, oder instanziieren Sie ein DateTimeFormatInfo-Objekt, weisen Sie das Zeichen der zugehörigen TimeSeparator-Eigenschaft zu, und rufen Sie eine Überladung der Formatierungsmethode auf, die einen IFormatProvider-Parameter umfasst. Bei Verwendung des Formatbezeichners ":" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner für Datums- und Uhrzeitwerte interpretiert und löst eine FormatException aus.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">Zeitzone</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "K" repräsentiert die Zeitzoneninformation eines Datums- und Uhrzeitwerts. Bei Verwendung dieses Formatbezeichners mit DateTime-Werten wird die Ergebniszeichenfolge durch den Wert der DateTime.Kind-Eigenschaft definiert: Für die lokale Zeitzone (ein DateTime.Kind-Eigenschaftswert von DateTimeKind.Local) entspricht dieser Bezeichner dem Bezeichner "zzz" und erzeugt eine Ergebniszeichenfolge, die die lokale Abweichung von der koordinierten Weltzeit (UTC) enthält, z. B. "-07:00". Für eine UTC-Zeit (ein DateTime.Kind-Eigenschaftswert von DateTimeKind.Utc) enthält die Ergebniszeichenfolge ein Zeichen "Z" zur Darstellung eines UTC-Datums. Für einen Zeitwert einer nicht angegebenen Zeitzone (ein Zeitwert, dessen DateTime.Kind-Eigenschaft "DateTimeKind.Unspecified" lautet) ist das Ergebnis äquivalent zu "String.Empty". Für DateTimeOffset-Werte ist der Formatbezeichner "K" äquivalent zum Formatbezeichner "zzz" und erzeugt eine Ergebniszeichenfolge, die das Offset des DateTimeOffset-Werts von UTC enthält. Bei Verwendung des Formatbezeichners "K" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner für Datums- und Uhrzeitwerte interpretiert und löst eine FormatException aus.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">Typeinschränkung</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">Typparameter</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">Attribut</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">"{0}" und "{1}" durch Eigenschaft ersetzen</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">"{0}" durch Eigenschaft ersetzen</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Methode, auf die implizit verwiesen wird</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Typ "{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">{0}-Objekt "{1}" generieren</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Ändern Sie "{0}" in "{1}".</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Eine nicht aufgerufene Methode kann nicht durch eine Eigenschaft ersetzt werden.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Nur Methoden mit einem einzelnen Argument, das keine out-Variablendeklaration ist, können durch eine Eigenschaft ersetzt werden.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Eine Instanz des Analysetools "{0}" kann nicht aus {1} erstellt werden: {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">Die Assembly "{0}" enthält keine Analysetools.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Fehler beim Laden der Assembly "{0}" des Analysetools: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Methode synchron ausführen</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">aus {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Nach aktueller Version suchen und diese installieren</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Lokale Version "{0}" verwenden</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Lokal installierte Version "{1}" von "{0}" verwenden. Diese Version wird verwendet in: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Nach aktueller Version von "{0}" suchen und diese installieren</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Mit Paket-Manager installieren...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">"{0} {1}" installieren</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Version "{0}" installieren</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Variable "{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Klassen</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Konstanten</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Delegaten</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Enumerationen</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Ereignisse</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Erweiterungsmethoden</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Felder</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Schnittstellen</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Lokal</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Methoden</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Module</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Namespaces</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Eigenschaften</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Strukturen</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parameter:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Variadic-SignatureHelpItem muss mindestens ein Parameter aufweisen.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">"{0}" durch Methode ersetzen</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">"{0}" durch Methoden ersetzen</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Auf die Eigenschaft wird implizit verwiesen.</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Die Eigenschaft kann nicht sicher durch einen Methodenaufruf ersetzt werden.</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">In interpolierte Zeichenfolge konvertieren</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Typ in {0} verschieben</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Datei umbenennen in {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Typ umbenennen in {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Tag entfernen</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Fehlende Parameterknoten hinzufügen</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Enthaltenden Bereich als asynchron definieren</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Enthaltenden Bereich als asynchron definieren (Task zurückgeben)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Unbekannt)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Frameworktyp verwenden</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Paket "{0}" installieren</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">Projekt "{0}"</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">"{0}" voll qualifizieren</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Verweis auf "{0}" entfernen.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Schlüsselwörter</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Codeausschnitte</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Alles Kleinbuchstaben</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Alles Großbuchstaben</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Erstes Wort groß geschrieben</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Pascal-Schreibweise</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Dokument "{0}" entfernen</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Dokument "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Argumentnamen "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">"{0}" übernehmen</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Beide übernehmen</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Unten übernehmen</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Oben übernehmen</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Nicht verwendete Variable entfernen</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">In Binärformat konvertieren</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">In Dezimalformat konvertieren</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">In 'hex' konvertieren</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Tausender trennen</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Wörter trennen</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Halbbytes trennen</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Trennzeichen entfernen</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Parameter zu "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Konstruktor generieren…</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Member auswählen, die als Konstruktorparameter verwendet werden sollen</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Member auswählen, die in "Equals"/"GetHashCode" verwendet werden sollen</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Überschreibungen generieren…</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Zu überschreibende Member auswählen</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">NULL-Überprüfung hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">"string.IsNullOrEmpty"-Überprüfung hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">"string.IsNullOrWhiteSpace"-Überprüfung hinzufügen</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Feld "{0}" initialisieren</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Eigenschaft "{0}" initialisieren</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">NULL-Überprüfungen hinzufügen</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Operatoren generieren</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">{0} implementieren</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">Die gemeldete Diagnose "{0}" weist einen Quellspeicherort in der Datei "{1}" auf, die nicht Teil der Kompilierung ist, die analysiert wird.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">Die gemeldete Diagnose "{0}" enthält einen Quellspeicherort "{1}" in der Datei "{2}", der sich außerhalb der angegebenen Datei befindet.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">in "{0}" (Projekt "{1}")</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Zugriffsmodifizierer hinzufügen</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Deklaration nahe Referenz verschieben</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">In vollständige Eigenschaft konvertieren</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Warnung: Die Methode setzt das Symbol aus den Metadaten außer Kraft.</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">{0} verwenden</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Argumentnamen "{0}" (einschließlich nachfolgender Argumente) hinzufügen</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">Lokale Funktion</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">Indexer</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Nicht eindeutiger Aliastyp "{0}"</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Warnung: Die Sammlung wurde bei der Iteration geändert.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Warnung: Die Iterationsvariable hat die Funktionsgrenze überschritten.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Warnung: Die Sammlung wird bei der Iteration möglicherweise geändert.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">Universelle(s) vollständige(s) Datum/Uhrzeit</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">Der Standardformatbezeichner "U" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die DateTimeFormatInfo.FullDateTimePattern-Eigenschaft einer angegebenen Kultur definiert ist. Das Muster ist mit dem F-Muster identisch. Der DateTime-Wert wird jedoch automatisch in UTC konvertiert, bevor er formatiert wird.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">Universelle(s) sortierbare(s) Datum/Uhrzeit</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">Der Standardformatbezeichner "u" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die DateTimeFormatInfo.UniversalSortableDateTimePattern-Eigenschaft definiert ist. Das Muster folgt einem definierten Standard, und die Eigenschaft ist schreibgeschützt. Daher ist sie immer gleich, unabhängig von der verwendeten Kultur oder dem angegebenen Formatanbieter. Die benutzerdefinierte Formatzeichenfolge lautet "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". Bei Verwendung dieses Standardformatbezeichners wird bei Formatierung oder Analyse immer die invariante Kultur verwendet. Obwohl die Ergebniszeichenfolge einen Zeitwert als koordinierte Weltzeit (UTC) ausdrücken sollte, findet während der Formatierung keine Konvertierung des ursprünglichen DateTime-Werts statt. Deshalb müssen Sie einen DateTime-Wert vor der Formatierung durch Aufruf der DateTime.ToUniversalTime-Methode in UTC konvertieren.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">Verwendungen in enthaltenden Members wird aktualisiert.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">Verwendungen im enthaltenden Projekt werden aktualisiert.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">Verwendungen im enthaltenden Typ aktualisieren</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">Verwendungen in abhängigen Projekten werden aktualisiert.</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">UTC-Abweichung in Stunden und Minuten</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Bei DateTime-Werten repräsentiert der benutzerdefinierte Formatbezeichner "zzz" die Abweichung (einschließlich Vorzeichen) der Zeitzone des lokalen Betriebssystems von der koordinierten Weltzeit (UTC), gemessen in Stunden und Minuten. Er spiegelt nicht den Wert einer Instanz der DateTime.Kind-Eigenschaft wider. Aus diesem Grund wird der Formatbezeichner "zzz" nicht zur Verwendung mit DateTime-Werten empfohlen. Bei DateTimeOffset-Werten stellt dieser Formatbezeichner die Abweichung des DateTimeOffset-Wertes von UTC in Stunden und Minuten dar. Die Abweichung wird immer mit einem Vorzeichen angezeigt. Ein Pluszeichen (+) steht für Stunden vor UTC, ein Minuszeichen (-) für Stunden nach UTC. Eine einstellige Abweichung wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">UTC-Abweichung in Stunden (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Bei DateTime-Werten repräsentiert der benutzerdefinierte Formatbezeichner "z" die Abweichung (einschließlich Vorzeichen) der Zeitzone des lokalen Betriebssystems von der koordinierten Weltzeit (UTC), gemessen in Stunden. Er spiegelt nicht den Wert einer Instanz der DateTime.Kind-Eigenschaft wider. Aus diesem Grund wird der Formatbezeichner "z" nicht zur Verwendung mit DateTime-Werten empfohlen. Bei DateTimeOffset-Werten stellt dieser Formatbezeichner die Abweichung des DateTimeOffset-Wertes von UTC in Stunden dar. Die Abweichung wird immer mit einem Vorzeichen angezeigt. Ein Pluszeichen (+) steht für Stunden vor UTC, ein Minuszeichen (-) für Stunden nach UTC. Eine einstellige Abweichung wird ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "z" ohne weitere Formatbezeichner wird er als Standardformatbezeichner für Datums- und Uhrzeitwerte interpretiert und löst eine FormatException aus.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">UTC-Abweichung in Stunden (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Bei DateTime-Werten repräsentiert der benutzerdefinierte Formatbezeichner "zz" die Abweichung (einschließlich Vorzeichen) der Zeitzone des lokalen Betriebssystems von der koordinierten Weltzeit (UTC), gemessen in Stunden. Er spiegelt nicht den Wert einer Instanz der DateTime.Kind-Eigenschaft wider. Aus diesem Grund wird der Formatbezeichner "zz" nicht zur Verwendung mit DateTime-Werten empfohlen. Bei DateTimeOffset-Werten stellt dieser Formatbezeichner die Abweichung des DateTimeOffset-Wertes von UTC in Stunden dar. Die Abweichung wird immer mit einem Vorzeichen angezeigt. Ein Pluszeichen (+) steht für Stunden vor UTC, ein Minuszeichen (-) für Stunden nach UTC. Eine einstellige Abweichung wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">[x-y]-Bereich in umgekehrter Reihenfolge</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">Jahr (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "y" repräsentiert das Jahr als ein- oder zweistellige Zahl. Wenn das Jahr mehr als zwei Stellen aufweist, werden im Ergebnis nur die zwei niederwertigen Stellen angezeigt. Beginnt die erste Stelle eines zweistelligen Jahres mit einer Null (z. B. 2008), wird die Zahl ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "y" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "y" für Datums- und Uhrzeitwerte interpretiert.</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">Jahr (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "yy" repräsentiert das Jahr als zweistellige Zahl. Wenn das Jahr mehr als zwei Stellen aufweist, werden im Ergebnis nur die zwei niederwertigen Stellen angezeigt. Umfasst das zweistellige Jahr weniger als zwei signifikante Stellen, wird die Zahl mit führenden Nullen aufgefüllt, um zwei Stellen zu erzeugen. Bei der Analyse eines zweistelligen Jahreswerts mit dem benutzerdefinierten Formatbezeichner "yy" wird das Jahr auf Grundlage der Calendar.TwoDigitYearMax-Eigenschaft des aktuellen Kalenders des Formatanbieters interpretiert. Das folgende Beispiel analysiert die Zeichenfolgendarstellung eines Datums mit zweistelliger Jahreszahl unter Verwendung des standardmäßigen gregorianischen Kalenders der Kultur "en-US" (in diesem Fall die aktuelle Kultur). Anschließend wird das CultureInfo-Objekt der aktuellen Kultur so geändert, dass ein GregorianCalendar-Objekt verwendet wird, dessen TwoDigitYearMax-Eigenschaft geändert wurde.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">Jahr (3–4 Stellen)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "yyy" repräsentiert das Jahr mit mindestens drei Stellen. Wenn das Jahr mehr als drei signifikante Stellen aufweist, werden diese in die Ergebniszeichenfolge eingeschlossen. Umfasst das Jahr weniger als drei Stellen, wird die Zahl mit führenden Nullen aufgefüllt, um drei Stellen zu erzeugen.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">Jahr (4 Stellen)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "yyyy" repräsentiert das Jahr mit mindestens vier Stellen. Wenn das Jahr mehr als vier signifikante Stellen aufweist, werden sie in die Ergebniszeichenfolge eingeschlossen. Umfasst das Jahr weniger als vier Stellen, wird die Zahl mit führenden Nullen aufgefüllt, um vier Stellen zu erzeugen.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">Jahr (5 Stellen)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "yyyyy" (plus beliebig viele zusätzliche y-Bezeichner) repräsentiert das Jahr mit mindestens fünf Stellen. Wenn das Jahr mehr als fünf signifikante Stellen aufweist, werden diese in die Ergebniszeichenfolge eingeschlossen. Umfasst das Jahr weniger als fünf Stellen, wird die Zahl mit führenden Nullen aufgefüllt, um fünf Stellen zu erzeugen. Falls zusätzliche y-Bezeichner vorhanden sind, wird die Zahl mit so vielen führenden Nullen aufgefüllt, wie erforderlich sind, um die Anzahl der y-Bezeichner zu erhalten.</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">Monat des Jahres</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">Der Standardformatbezeichner "Y" oder "y" repräsentiert eine benutzerdefinierte Datums- und Zeitformatzeichenfolge, die durch die DateTimeFormatInfo.YearMonthPattern-Eigenschaft einer bestimmten Kultur definiert ist. Die benutzerdefinierte Formatzeichenfolge für die invariante Kultur lautet beispielsweise "yyyy MMMM".</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="de" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (abgekürzt)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "t" repräsentiert das erste Zeichen des AM/PM-Kennzeichners. Der geeignete lokalisierte Kennzeichner wird aus der DateTimeFormatInfo.AMDesignator- oder DateTimeFormatInfo.PMDesignator-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen. Der AM-Kennzeichner wird für alle Uhrzeiten von 0:00:00 (Mitternacht) bis 11:59:59.999 verwendet. Der PM-Kennzeichner wird für alle Uhrzeiten von 12:00:00 (Mittag) bis 23:59:59.999 verwendet. Bei Verwendung des Formatbezeichners "t" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "t" für Datum und Uhrzeit interpretiert.</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (vollständig)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "tt" (plus beliebig viele zusätzliche t-Bezeichner) repräsentiert den vollständigen AM/PM-Kennzeichner. Der geeignete lokalisierte Kennzeichner wird aus der DateTimeFormatInfo.AMDesignator- oder DateTimeFormatInfo.PMDesignator-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen. Der AM-Kennzeichner wird für alle Uhrzeiten von 0:00:00 (Mitternacht) bis 11:59:59.999 verwendet. Der PM-Kennzeichner wird für alle Uhrzeiten von 12:00:00 (Mittag) bis 23:59:59.999 verwendet. Stellen Sie sicher, dass Sie den Bezeichner "tt" für Sprachen verwenden, für die eine Unterscheidung zwischen AM und PM erforderlich ist. Ein Beispiel ist Japanisch, bei dem sich die AM- und PM-Kennzeichner durch das zweite Zeichen anstelle des ersten Zeichens unterscheiden.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Eine Subtraktion muss das letzte Element in einer Zeichenklasse sein.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">DebuggerDisplay-Attribut hinzufügen</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Explizite Umwandlung hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Membername hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">NULL-Überprüfungen für alle Parameter hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Optionalen Parameter zum Konstruktor hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Parameter zu "{0}" (und Außerkraftsetzungen/Implementierungen) hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Parameter zum Konstruktor hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Fügen Sie zu "{0}" einen Projektverweis hinzu.</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Fügen Sie zu "{0}" einen Verweis hinzu.</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Aktionen dürfen nicht leer sein.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Tupelelementnamen "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Umschlossene Argumente ausrichten</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Umschlossene Parameter ausrichten</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Wechselbedingungen dürfen keine Kommentare sein.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Wechselbedingungen werden nicht erfasst und können nicht benannt werden.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Dateiheadereinstellungen anwenden</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Einstellungen zur Objekt-/Sammlungsinitialisierung anwenden</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">Erwartete Aufgabe gibt "{0}" zurück</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">Erwartete Aufgabe gibt keinen Wert zurück</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Basisklassen enthalten nicht implementierte Member, auf die nicht zugegriffen werden kann.</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Änderungen können nicht angewendet werden -- unerwarteter Fehler: "{0}"</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Die Klasse \{0} kann nicht in den Zeichenbereich aufgenommen werden.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Erfassungsgruppennummern müssen kleiner oder gleich Int32.MaxValue sein.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Aufzeichnungsnummer darf nicht 0 (null) sein.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;ableiten&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;Auslassen&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">In globalen Namespace ändern</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Änderungen sind nicht zulässig, solange der Vorgang bei einer Ausnahme angehalten ist.</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Im Projekt "{0}" vorgenommene Änderungen werden nicht angewendet, während die Anwendung ausgeführt wird.</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application"> <source>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</source> <target state="new">Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Codeformat "{0}" konfigurieren</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Schweregrad "{0}" konfigurieren</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Schweregrad für alle Analysetools für "{0}" konfigurieren</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Schweregrad für alle Analysetools konfigurieren</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">In LINQ konvertieren</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Zu "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">In Klasse konvertieren</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">In LINQ konvertieren (Aufrufformular)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">In Datensatz konvertieren</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">In Datensatzstruktur konvertieren</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">In Struktur konvertieren</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Typ in "{0}" konvertieren</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Feld "{0}" erstellen und zuweisen</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Eigenschaft "{0}" erstellen und zuweisen</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Verbleibende Elemente als Felder erstellen und zuweisen</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Verbleibende Elemente als Eigenschaften erstellen und zuweisen</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Ändern Sie diesen Code nicht. Fügen Sie Bereinigungscode in der Methode "{0}" ein.</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Der aktuelle Inhalt der Quelldatei "{0}" stimmt nicht mit dem kompilierten Quellcode überein. Alle Änderungen, die während des Debuggens an dieser Datei vorgenommen wurden, werden erst angewendet, wenn der Inhalt dem kompilierten Quellcode entspricht.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Dokument muss in dem Arbeitsbereich enthalten sein, der diesen Dienst erstellt hat</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Bearbeiten und Fortfahren</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Bearbeiten und Fortfahren durch Modul untersagt</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Die im Projekt "{0}" vorgenommenen Änderungen verhindern, dass die Debugsitzung fortgesetzt wird: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">"Bearbeiten und fortfahren" wird von der Runtime nicht unterstützt.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Fehler beim Lesen der Datei "{0}": {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Fehler beim Erstellen der CodeFixProvider-Instanz</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Fehler beim Erstellen der CodeFixProvider-Instanz "{0}".</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Beispiel:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Beispiele:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Explizit implementierte Methoden von Datensätzen müssen Parameternamen aufweisen, die mit dem vom Compiler generierten Äquivalent "{0}" übereinstimmen.</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Basisklasse extrahieren...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Schnittstelle extrahieren...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Lokale Funktion extrahieren</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Methode extrahieren</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Fehler beim Analysieren des Datenflusses für: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Formatierung beheben</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Tippfehler "{0}" korrigieren</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Dokument formatieren</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Dokument wird formatiert</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Vergleichsoperatoren generieren</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Konstruktor in "{0}" (mit Feldern) generieren</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Konstruktor in "{0}" (mit Eigenschaften) generieren</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Für "{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Parameter "{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Parameter "{0}" (und Außerkraftsetzungen/Implementierungen) generieren</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Nicht zulässiges \-Zeichen am Ende des Musters.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">Illegaler {x,y}-Wert mit x &gt; y.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">"{0}" explizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">"{0}" implizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Abstrakte Klasse implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Alle Schnittstellen explizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Alle Schnittstellen implizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Alle Member explizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Explizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Implizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Verbleibende Member explizit implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Über "{0}" implementieren</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Unvollständiges \p{X}-Escapezeichen.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Alle Argumente einrücken</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Alle Parameter einrücken</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Umschlossene Argumente einrücken</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Einzug für umschlossene Parameter</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">"{0}" inline einbinden</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">"{0}" inline einbinden und beibehalten</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Nicht genügend Hexadezimalziffern.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Konstante einfügen</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Feld einführen</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Lokale Variable einführen</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Abfragevariable bereitstellen</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Ungültiger Gruppenname: Gruppennamen müssen mit einem Wortzeichen beginnen.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Klasse als "abstract" festlegen</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Als statisch festlegen</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Bedingten Operator umkehren</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">fehlerhaft</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Falsch formatiertes \p{X}-Escapezeichen.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Falsch formatierter mit \k&lt;...&gt; benannter Verweis.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Mit geschachtelter {0}-Anweisung zusammenführen</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Mit nächster {0}-Anweisung zusammenführen</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Mit äußerer {0}-Anweisung zusammenführen</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Mit vorheriger {0}-Anweisung zusammenführen</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">"{0}" muss einen Datenstrom zurückgeben, der Lese- und Suchvorgänge unterstützt.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Fehlendes Steuerzeichen</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Inhalt in Namespace verschieben...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Datei in "{0}" verschieben</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Datei in den Stammordner des Projekts verschieben</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">In Namespace verschieben...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Geschachtelter Quantifizierer {0}.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Keine gültige Position zum Einfügen eines Methodenaufrufs.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Zu wenige )-Zeichen</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operatoren</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">Der Eigenschaftenverweis kann nicht aktualisiert werden.</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">"{0}" nach oben ziehen</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">"{0}" zu "{1}" ziehen</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Member zum Basistyp ziehen...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Member auf neue Basisklasse ziehen...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Quantifizierer {x,y} nach nichts.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">Verweis auf nicht definierte Gruppe</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Verweis auf nicht definierten Gruppennamen {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Verweis auf nicht definierte Gruppennummer {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Alle Steuerzeichen. Hierzu gehören die Kategorien "Cc", "Cf", "Cs", "Co" und "Cn".</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">Alle Steuerzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Alle diakritischen Zeichen. Hierzu gehören die Kategorien "Mn", "Mc" und "Me".</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">Alle diakritischen Zeichen</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Alle Buchstaben. Hierzu gehören die Zeichen "Lu", "Ll", "Lt", "Lm" und "Lo".</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">Alle Buchstaben</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Alle Zahlen. Hierzu gehören die Kategorien "Nd", "Nl" und "No".</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">Alle Zahlen</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Alle Satzzeichen. Hierzu gehören die Kategorien "Pc", "Pd", "Ps", "Pe", "Pi", "Pf" und "Po".</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">Alle Satzzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Alle Trennzeichen. Hierzu gehören die Kategorien "Zs", "Zl" und "Zp".</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">Alle Trennzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Alle Symbole. Hierzu gehören die Kategorien "Sm", "Sc", "Sk" und "So".</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">Alle Symbole</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Mit dem senkrechten Strich (|) können Sie eine beliebige Reihe von Mustern abgleichen, wobei das |-Zeichen die einzelnen Muster voneinander trennt.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">Alternierung</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Der Punkt (.) stimmt mit einem beliebigen Zeichen außer "\n" überein (das Zeilenvorschubzeichen, \u000A). Wenn ein Muster für einen regulären Ausdruck durch die Option "RegexOptions.Singleline" geändert wird oder wenn der Teil des Musters, der die Zeichenklasse "." enthält, durch die Option "s" verändert wird, stimmt "." mit jedem beliebigen Zeichen überein.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">Jedes Zeichen</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Die Rückverfolgung wird durch atomische Gruppen deaktiviert (in anderen Engines für reguläre Ausdrücke als Teilausdruck ohne Rückverfolgung, atomischer Teilausdruck oder Teilausdruck mit einmaligem Abgleich bezeichnet). Die Engine für reguläre Ausdrücke gleicht so viele Zeichen in der Eingabezeichenfolge wie möglich ab. Wenn kein weiterer Abgleich möglich ist, wird keine Rückverfolgung durchgeführt, um alternative Musterabgleiche zu versuchen. (Das heißt, der Teilausdruck stimmt nur mit Zeichenfolgen überein, die dem Teilausdruck allein entsprechen; es wird nicht versucht, eine Zeichenfolge basierend auf dem Teilausdruck und allen nachfolgenden Teilausdrücken abzugleichen.) Diese Option empfiehlt sich, wenn Sie wissen, dass die Rückverfolgung nicht zum Erfolg führt. Indem Sie die Ausführung unnötiger Suchvorgänge durch die Engine für reguläre Ausdrücke verhindern, erzielen Sie eine verbesserte Leistung.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">atomische Gruppe</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Entspricht einem Rückschrittzeichen, \u0008.</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">Rückschrittzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Eine Ausgleichsgruppendefinition löscht die Definition einer zuvor definierten Gruppe und speichert in der aktuellen Gruppe das Intervall zwischen der zuvor definierten Gruppe und der aktuellen Gruppe. "name1" ist die aktuelle Gruppe (optional), "name2" ist eine zuvor definierte Gruppe, und "teilausdruck" ist ein beliebiges gültiges Muster für reguläre Ausdrücke. Die Ausgleichsgruppendefinition löscht die Definition von "name2" und speichert das Intervall zwischen "name2" und "name1" in "name1". Wenn keine Gruppe "name2" definiert ist, wird für die Übereinstimmung eine Rückverfolgung durchgeführt. Weil durch das Löschen der letzten Definition von "name2" die vorherige Definition von "name2" angezeigt wird, können Sie mithilfe dieses Konstrukts den Stapel von Erfassungen für die Gruppe "name2" als Zähler für die Nachverfolgung geschachtelter Konstrukte wie z. B. öffnende und schließende Klammern verwenden. Die Ausgleichsgruppendefinition verwendet "name2" als Stapel. Das Anfangszeichen der einzelnen geschachtelten Konstrukte wird in der Gruppe und in der zugehörigen Group.Captures-Sammlung platziert. Wenn das schließende Zeichen gefunden wurde, wird das entsprechende öffnende Zeichen aus der Gruppe entfernt, und die Captures-Sammlung wird um eins verringert. Nachdem die öffnenden und schließenden Zeichen aller geschachtelten Konstrukte abgeglichen wurden, ist "name1" leer.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">Ausgleichsgruppe</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">Basisgruppe</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Entspricht einem Glockenzeichen (Alarm), \u0007.</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">Glockenzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Entspricht einem Wagenrücklaufzeichen, \u000D. Beachten Sie, dass "\r" nicht dem Zeilenvorschubzeichen "\n" entspricht.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">Wagenrücklaufzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">Die Zeichenklassensubtraktion ergibt einen Satz von Zeichen, der auf dem Ausschließen der Zeichen einer Zeichenklasse von einer anderen Zeichenklasse beruht. "base_group" ist eine positive oder negative Zeichengruppe bzw. ein positiver oder negativer Bereich. Die Komponente "excluded_group" ist eine andere positive oder negative Zeichengruppe oder ein anderer Ausdruck zur Zeichenklassensubtraktion (das heißt, Ausdrücke zur Zeichenklassensubtraktion können geschachtelt werden).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">Zeichenklassensubtraktion</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">Zeichengruppe</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">Kommentar</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Dieses Sprachelement unternimmt den Abgleich mit einem von zwei Mustern abhängig davon, ob der Abgleich mit einem Anfangsmuster möglich ist. "expression" ist das anfängliche Muster für den Abgleich, "yes" ist das Muster, das bei Übereinstimmung des Ausdrucks abgeglichen werden soll, und "No" ist das optionale Muster, das abgeglichen werden soll, wenn der Ausdruck nicht übereinstimmt.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">Abgleich mit bedingtem Ausdruck</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Dieses Sprachelement unternimmt den Abgleich mit einem von zwei Mustern abhängig davon, ob eine Übereinstimmung mit einer angegebenen Erfassungsgruppe vorliegt. "name" ist der Name (oder die Zahl) einer Erfassungsgruppe, "yes" ist der Ausdruck, der bei einer Übereinstimmung für "name" (oder "number") abgeglichen werden soll, und "no" ist der optionale Ausdruck, der andernfalls abgeglichen wird.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">Abgleich mit bedingter Gruppe</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">Der \G-Anker gibt an, dass eine Übereinstimmung an dem Punkt erfolgen muss, an dem die vorherige Übereinstimmung endete. Wenn Sie diesen Anker mit der Regex.Matches- oder der Match.NextMatch-Methode verwenden, wird sichergestellt, dass alle Übereinstimmungen zusammenhängen.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">Zusammenhängende Übereinstimmungen</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Entspricht einem ASCII-Steuerzeichen, wobei "X" der Buchstabe des Steuerzeichens ist. Beispiel: "\cC" steht für STRG-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">Steuerzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">"\d" entspricht einer beliebigen Dezimalzahl. Identisch mit dem Muster für reguläre Ausdrücke "\p{Nd}", welches die Standarddezimalzahlen 0–9 sowie die Dezimalzahlen einer Reihe anderer Zeichensätze enthält. Wenn das ECMAScript-konforme Verhalten angegeben wird, ist "\d" gleichbedeutend mit "[0-9]".</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">Dezimalzahl</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Ein Nummernzeichen (#) markiert einen Kommentar im x-Modus, der am Ende des Musters für reguläre Ausdrücke bei dem #-Zeichen ohne Escapezeichen beginnt und bis zum Zeilenende fortgesetzt wird. Um dieses Konstrukt zu verwenden, müssen Sie entweder die x-Option (über Inlineoptionen) aktivieren oder den RegexOptions.IgnorePatternWhitespace-Wert beim Instanziieren des Regex-Objekts oder beim Aufrufen einer statischen Regex-Methode an den Optionsparameter übergeben.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">Kommentar am Zeilenende</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">Der \z-Anker gibt an, dass eine Übereinstimmung am Ende der Eingabezeichenfolge erfolgen muss. Wie das $-Sprachelement ignoriert \z die Option "RegexOptions.Multiline". Im Gegensatz zum \Z-Sprachelement stimmt \z nicht mit einem \n-Zeichen am Ende einer Zeichenfolge überein. Daher ist nur eine Übereinstimmung mit der letzten Zeile der Eingabezeichenfolge möglich.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">Nur Ende der Zeichenfolge</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">Der \Z-Anker gibt an, dass eine Übereinstimmung am Ende der Eingabezeichenfolge oder vor "\n" am Ende der Eingabezeichenfolge erfolgen muss. \Z ist mit dem $-Anker identisch, außer dass \Z die Option "RegexOptions.Multiline" ignoriert. Daher ist in einer mehrzeiligen Zeichenfolge nur eine Übereinstimmung mit dem Ende der letzten Zeile oder der letzten Zeile vor "\n" möglich. Der \Z-Anker entspricht "\n", stimmt jedoch nicht mit "\r\n" überein (CR/LF-Zeichenkombination). Schließen Sie "\r?\Z" in das Muster für reguläre Ausdrücke ein, um die Übereinstimmung mit CR/LF zu erreichen.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">Ende der Zeichenfolge oder vor dem endenden Zeilenumbruch</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">Der $-Anker gibt an, dass das vorangehende Muster am Ende der Eingabezeichenfolge oder vor "\n" am Ende der Eingabezeichenfolge vorliegen muss. Wenn Sie $ mit der Option "RegexOptions.Multiline" verwenden, kann die Übereinstimmung auch am Ende einer Zeile erfolgen. Der $-Anker stimmt mit "\n", aber nicht mit "\r\n" überein (Kombination aus Wagenrücklauf- und Zeilenvorschubzeichen, auch CR/LF). Um der Kombination aus CR/LF-Zeichen zu entsprechen, schließen Sie "\r?$" in das Muster für reguläre Ausdrücke ein.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">Ende der Zeichenfolge oder Zeile</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Entspricht einem Escapezeichen, \u001B.</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">Escapezeichen</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">Ausschlussgruppe</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">expression</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Entspricht einem Seitenvorschubzeichen, \u000C.</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">Seitenvorschubzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Dieses Gruppierungskonstrukt wendet die angegebenen Optionen innerhalb eines Unterausdrucks an oder deaktiviert sie. Die zu aktivierenden Optionen werden nach dem Fragezeichen und die zu deaktivierenden Optionen nach dem Minuszeichen angegeben. Zulässige Optionen: i Führt den Abgleich ohne Unterscheidung nach Groß-/Kleinschreibung durch. m Verwendet den mehrzeiligen Modus, wobei "^" und "$" mit Anfang und Ende jeder einzelnen Zeile übereinstimmen (anstelle von Anfang und Ende der Eingabezeichenfolge). s Verwendet den einzeiligen Modus, wobei der Punkt (.) mit jedem Zeichen übereinstimmt (anstelle von jedem Zeichen außer "\n"). n Erfasst keine unbenannten Gruppen. Die einzigen gültigen Erfassungen sind explizit benannte oder nummerierte Gruppen im Format (?&lt;name&gt; Teilausdruck). x Schließt Leerraum ohne Escapezeichen aus dem Muster aus und aktiviert Kommentare nach einem Nummernzeichen (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">Gruppenoptionen</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Entspricht einem ASCII-Zeichen, wobei ## ein zweistelliger hexadezimaler Zeichencode ist.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">Hexadezimale Escapezeichen</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">Mit dem Konstrukt (?# Kommentar) können Sie einen Inlinekommentar in einen regulären Ausdruck einbeziehen. Die Engine für reguläre Ausdrücke verwendet keinen Teil des Kommentars beim Musterabgleich, auch wenn der Kommentar in der Zeichenfolge enthalten ist, die von der Regex.ToString-Methode zurückgegeben wird. Der Kommentar endet bei der ersten schließenden Klammer.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">Inlinekommentar</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Aktiviert oder deaktiviert bestimmte Optionen zum Musterabgleich für den Rest eines regulären Ausdrucks. Die zu aktivierenden Optionen werden nach dem Fragezeichen und die zu deaktivierenden Optionen nach dem Minuszeichen angegeben. Zulässige Optionen: i Führt den Abgleich ohne Unterscheidung nach Groß-/Kleinschreibung durch. m Verwendet den mehrzeiligen Modus, wobei "^" und "$" mit Anfang und Ende jeder einzelnen Zeile übereinstimmen (anstelle von Anfang und Ende der Eingabezeichenfolge). s Verwendet den einzeiligen Modus, wobei der Punkt (.) mit jedem Zeichen übereinstimmt (anstelle von jedem Zeichen außer "\n"). n Erfasst keine unbenannten Gruppen. Die einzigen gültigen Erfassungen sind explizit benannte oder nummerierte Gruppen im Format (?&lt;name&gt; Teilausdruck). x Schließt Leerraum ohne Escapezeichen aus dem Muster aus und aktiviert Kommentare nach einem Nummernzeichen (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">Inlineoptionen</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">RegEx-Fehler: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">Buchstabe, Kleinbuchstabe</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">Buchstabe, Modifizierer</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">Buchstabe, sonstiger</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">Buchstabe, erster Buchstabe groß</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">Buchstabe, Großbuchstabe</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">Zeichen, einschließendes Zeichen</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">Zeichen, Zeichen ohne eigene Breite</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">Zeichen, Zeichen mit eigener Breite, Verbindung</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">Der Quantifizierer "{n,}?" stimmt mit dem vorhergehenden Element mindestens n-mal, jedoch möglichst wenige Male überein. "n" steht hierbei für eine beliebige ganze Zahl. Dies ist das träge Äquivalent zum gierigen Quantifizierer "{n,}".</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">Mindestens n-malige Übereinstimmung (träge)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">Der Quantifizierer "{n,}" stimmt mit dem vorhergehenden Element mindestens n-mal überein. "n" steht hierbei für eine beliebige ganze Zahl. "{n,}" ist ein gieriger Quantifizierer, dessen träges Äquivalent "{n,}?" lautet.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">Mindestens n-malige Übereinstimmung</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">Der Quantifizierer "{n,m}?" stimmt mit dem vorhergehenden Element zwischen n- und m-mal, jedoch möglichst wenige Male überein. "n" und "m" stehen hierbei für ganze Zahlen. Dies ist das träge Äquivalent zum gierigen Quantifizierer "{n,m}".</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">Mindestens n-malige Übereinstimmung (träge)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">Der Quantifizierer "{n,m}" stimmt mit dem vorhergehenden Element mindestens n-mal, aber nicht häufiger als m-mal überein. "n" und "m" stehen hierbei für ganze Zahlen. "{n,m}" ist ein gieriger Quantifizierer, dessen träges Äquivalent "{n,m}?" lautet.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">Zwischen m- und n-malige Übereinstimmung</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">Der Quantifizierer {n}? stimmt mit dem vorhergehenden Element genau n-mal überein. "n" steht hierbei für eine beliebige ganze Zahl. Dies ist das träge Äquivalent zum gierigen Quantifizierer "{n}+".</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">Genau n-malige Übereinstimmung (träge)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">Der Quantifizierer "{n}" stimmt mit dem vorhergehenden Element genau n-mal überein. "n" steht hierbei für eine beliebige ganze Zahl. "{n}" ist ein gieriger Quantifizierer, dessen träges Äquivalent "{n}?" lautet.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">Genau n-malige Übereinstimmung</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">Der Quantifizierer "+?" stimmt mit dem vorhergehenden Element mindestens einmal, jedoch möglichst wenige Male überein. Dies ist das träge Äquivalent zum gierigen Quantifizierer "+".</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">Mindestens einmalige Übereinstimmung (träge)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">Der Quantifizierer "+" stimmt mit dem vorhergehenden Element mindestens einmal überein. Dieser Quantifizierer ist identisch mit "{1,}". "+" ist ein gieriger Quantifizierer, dessen träges Äquivalent "+?" lautet.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">Mindestens einmalige Übereinstimmung</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">Der Quantifizierer "*?" stimmt mit dem vorhergehenden Element mindestens nullmal, jedoch möglichst wenige Male überein. Dies ist das träge Äquivalent zum gierigen Quantifizierer "*".</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">Mindestens nullmalige Übereinstimmung (träge)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">Der Quantifizierer "*" stimmt mit dem vorhergehenden Element mindestens nullmal überein. Dieser Quantifizierer ist identisch mit "{0,}". "*" ist ein gieriger Quantifizierer, dessen träges Äquivalent "*?" lautet.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">Mindestens nullmalige Übereinstimmung</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">Der Quantifizierer "??" stimmt mit dem vorhergehenden Element null- oder einmal, jedoch möglichst wenige Male überein. Dies ist das träge Äquivalent zum gierigen Quantifizierer "?".</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">Null- oder einmalige Übereinstimmung (träge)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">Der Quantifizierer "?" stimmt mit dem vorhergehenden Element null- oder einmal überein. Dieser Quantifizierer ist identisch mit "{0,1}". "?" ist ein gieriger Quantifizierer, dessen träges Äquivalent "??" lautet.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">Null- oder einmalige Übereinstimmung</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Dieses Gruppierungskonstrukt erfasst einen übereinstimmenden "Teilausdruck", wobei "Teilausdruck" für ein beliebiges gültiges Muster für reguläre Ausdrücke steht. Erfassungen, die Klammern verwenden, werden basierend auf der Reihenfolge der öffnenden Klammern im regulären Ausdruck beginnend bei 1 automatisch von links nach rechts nummeriert. Bei der Erfassung mit der Nummerierung 0 handelt es sich um den Text, der mit dem gesamten Muster für reguläre Ausdrücke übereinstimmt.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">Übereinstimmender Teilausdruck</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">Name</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">name-or-number</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Ein benannter oder nummerierter Rückverweis. "Name" ist der Name einer Erfassungsgruppe, die im Muster für reguläre Ausdrücke definiert ist.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">Benannter Rückverweis</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Erfasst einen übereinstimmenden Teilausdruck und ermöglicht Ihnen den Zugriff darauf anhand des Namens oder der Nummer. "Name" ist ein gültiger Gruppenname, und "Teilausdruck" ist ein gültiges Muster für reguläre Ausdrücke. "Name" darf keine Satzzeichen enthalten und nicht mit einer Zahl beginnen. Wenn der RegexOptions-Parameter einer Methode zum Abgleich von Mustern für reguläre Ausdrücke das Flag "RegexOptions.ExplicitCapture" enthält oder wenn die Option "n" auf diesen Teilausdruck angewendet wird, besteht die einzige Möglichkeit zum Erfassen eines Unterausdrucks darin, die Erfassungsgruppen explizit zu benennen.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">Benannter übereinstimmender Teilausdruck</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Eine negative Zeichengruppe gibt eine Liste von Zeichen an, die nicht in einer Eingabezeichenfolge vorkommen dürfen, damit eine Übereinstimmung vorliegt. Die Zeichen in der Liste werden einzeln angegeben. Mehrere Zeichenbereiche können verkettet werden. Um beispielsweise den Bereich der Dezimalstellen von "0" bis "9", den Bereich der Kleinbuchstaben von "a" bis "f" und den Bereich der Großbuchstaben von "A" bis "F" anzugeben, verwenden Sie "[0-9a-fA-F]".</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">Negative Zeichengruppe</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Ein negativer Zeichenbereich gibt eine Liste von Zeichen an, die nicht in einer Eingabezeichenfolge vorkommen dürfen, damit eine Übereinstimmung vorliegt. "firstCharacter" entspricht dem ersten Zeichen und "lastCharacter" dem letzten Zeichen im Bereich. Mehrere Zeichenbereiche können verkettet werden. Um beispielsweise den Bereich der Dezimalstellen von "0" bis "9", den Bereich der Kleinbuchstaben von "a" bis "f" und den Bereich der Großbuchstaben von "A" bis "F" anzugeben, verwenden Sie "[0-9a-fA-F]".</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">Negativer Zeichenbereich</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Das Konstrukt des regulären Ausdrucks "\P{ name }" entspricht einem beliebigen Zeichen, das zu keiner allgemeinen Unicode-Kategorie bzw. keinem benannten Block gehört, wobei "name" der Kategorieabkürzung oder dem Namen des benannten Blocks entspricht.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">Negative Unicode-Kategorie</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Entspricht einem Neue-Zeile-Zeichen, \u000A.</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">Neue-Zeile-Zeichen</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">Nein</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">"\D" entspricht einem beliebigen Zeichen, das keine Ziffer darstellt. Entspricht dem Muster für reguläre Ausdrücke "\P{Nd}". Wenn das ECMAScript-konforme Verhalten angegeben wird, ist "\D" gleichbedeutend mit "[^0-9]".</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">Nicht-Ziffernzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">"\S" entspricht einem beliebigen Nicht-Leerraumzeichen. Dies ist identisch mit dem Muster für reguläre Ausdrücke "[^\f\n\r\t\v\x85\p{Z}]" oder mit dem Gegenteil des Musters für reguläre Ausdrücke "\s", welches mit Leerraumzeichen übereinstimmt. Wenn das ECMAScript-konforme Verhalten angegeben wird, ist "\S" gleichbedeutend mit "[^ \f\n\r\t\v]".</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">Nicht-Leerraumzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">Der \B-Anker gibt an, dass die Übereinstimmung nicht an einer Wortgrenze auftreten darf. Dies ist das Gegenteil vom \b-Anker.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">Nicht-Wortgrenze</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">"\W" entspricht einem beliebigen Nicht-Wortzeichen. Stimmt mit einem beliebigen Zeichen überein, das nicht in den folgenden Unicode-Kategorien enthalten ist: Ll Buchstabe, Kleinbuchstabe Lu Buchstabe, Großbuchstabe Lt Buchstabe, erster Buchstabe groß Lo Buchstabe, sonstige Lm Buchstabe, Modifizierer Mn Zeichen, Zeichen ohne eigene Breite Nd Zahl, Dezimalzahl Pc Interpunktion, Verbindung Wenn das ECMAScript-konforme Verhalten angegeben wird, ist "\W" gleichbedeutend mit "[^a-zA-Z_0-9]".</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">Nicht-Wortzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Dieses Konstrukt erfasst nicht die Teilzeichenfolge, die mit einem Teilausdruck übereinstimmt: Das Konstrukt der Nicht-Erfassungsgruppe wird normalerweise verwendet, wenn ein Quantifizierer auf eine Gruppe angewendet wird, die von der Gruppe erfassten Teilzeichenfolgen jedoch nicht relevant sind. Wenn ein regulärer Ausdruck geschachtelte Gruppierungskonstrukte enthält, gilt ein äußeres Konstrukt von Nicht-Erfassungsgruppen nicht für die inneren geschachtelten Gruppenkonstrukte.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">Nicht-Erfassungsgruppe</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">Zahl, Dezimalzahl</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">Zahl, Buchstabe</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">Zahl, sonstige</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Ein nummerierter Rückverweis, wobei "zahl" für die Ordnungsposition der Erfassungsgruppe im regulären Ausdruck steht. Beispiel: \4 entspricht dem Inhalt der vierten Erfassungsgruppe. Es besteht eine Mehrdeutigkeit zwischen den Escapecodes für Oktalzahlen (z. B. \16) und den \zahl-Rückverweisen, die dieselbe Notation verwenden. Wenn die Mehrdeutigkeit ein Problem darstellt, können Sie die \k&lt;name&gt;-Notation verwenden, die eindeutig ist und nicht mit Oktalzeichencodes verwechselt werden kann. Ebenso eindeutig sind hexadezimale Codes wie \xdd, die nicht mit Rückverweisen verwechselt werden können.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">Nummerierter Rückverweis</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">Sonstige, Steuerelement</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">Sonstige, Format</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">Sonstige, nicht zugewiesen</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">Sonstige, private Nutzung</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">Sonstige, Ersatzzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Eine positive Zeichengruppe gibt eine Liste von Zeichen an, von denen jedes in einer Eingabezeichenfolge enthalten sein kann, damit eine Übereinstimmung auftritt.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">Positive Zeichengruppe</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Ein positiver Zeichenbereich gibt einen Bereich von Zeichen an, von denen jedes in einer Eingabezeichenfolge enthalten sein kann, damit eine Übereinstimmung auftritt. "firstCharacter" ist das erste Zeichen und "lastCharacter" das letzte Zeichen des Bereichs. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">Positiver Zeichenbereich</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">Interpunktion, schließen</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">Interpunktion, Verbindung</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">Interpunktion, Bindestrich</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">Interpunktion, schließendes Anführungszeichen</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">Interpunktion, öffnendes Anführungszeichen</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">Interpunktion, öffnen</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">Interpunktion, sonstige</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">Trennzeichen, Zeile</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">Trennzeichen, Absatz</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">Trennzeichen, Leerzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">Der \A-Anker gibt an, dass eine Übereinstimmung am Anfang der Eingabezeichenfolge erfolgen muss. Er ist identisch mit dem ^-Anker, mit der Ausnahme, dass \A die Option "RegexOptions.Multiline" ignoriert. Daher ist nur eine Übereinstimmung mit dem Anfang der ersten Zeile in einer mehrzeiligen Eingabezeichenfolge möglich.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">Nur Anfang der Zeichenfolge</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">Der ^-Anker gibt an, dass das folgende Muster an der ersten Zeichenposition der Zeichenfolge beginnen muss. Wenn Sie "^" mit der Option "RegexOptions.Multiline" verwenden, muss die Übereinstimmung am Anfang jeder Zeile erfolgen.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">Anfang der Zeichenfolge oder Zeile</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">Teilausdruck</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">Symbol, Währung</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">Symbol, Mathematik</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">Symbol, Modifizierer</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">Symbol, sonstige</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Entspricht einem Tabstoppzeichen, \u0009.</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">Tabstoppzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Das Konstrukt des regulären Ausdrucks "\p{ name }" entspricht einem beliebigen Zeichen, das zu einer allgemeinen Unicode-Kategorie oder einem benannten Block gehört, wobei "name" der Kategorieabkürzung oder dem Namen des benannten Blocks entspricht.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">Unicode-Kategorie</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Entspricht einer UTF-16-Codeeinheit, deren Wert hexadezimal (####) ist.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">Unicode-Escapezeichen</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Allgemeine Unicode-Kategorie: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Entspricht einem vertikalen Tabstoppzeichen, \u000B.</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">Vertikales Tabstoppzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">"\s" stimmt mit einem beliebigen Leerraumzeichen überein. Entspricht den folgenden Escapesequenzen und Unicode-Kategorien: \f Das Seitenvorschubzeichen, \u000C \n Das Zeilenvorschubzeichen, \u000A \r Das Wagenrücklaufzeichen, \u000D \t Das Tabstoppzeichen, \u0009 \v Das vertikale Tabstoppzeichen, \u000B \x85 Das Auslassungszeichen oder NEL-Zeichen für die nächste Zeile (...), \u0085 \p{Z} Entspricht einem beliebigen Trennzeichen Wenn das ECMAScript-konforme Verhalten angegeben wird, ist "\s" gleichbedeutend mit "[\f\n\r\t\v]".</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">Leerraumzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">Der \b-Anker gibt an, dass die Übereinstimmung an einer Grenze zwischen einem Wortzeichen (dem \w-Sprachelement) und einem Nicht-Wortzeichen (dem \W-Sprachelement) erfolgen muss. Wortzeichen bestehen aus alphanumerischen Zeichen und Unterstrichen; ein Nicht-Wortzeichen ist ein beliebiges Zeichen, das nicht alphanumerisch oder ein Unterstrich ist. Die Übereinstimmung kann auch an einer Wortgrenze am Anfang oder Ende der Zeichenfolge auftreten. Der \b-Anker wird häufig verwendet, um sicherzustellen, dass ein Teilausdruck mit einem ganzen Wort statt nur mit dem Anfang oder Ende eines Worts übereinstimmt.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">Wortgrenze</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">"\w" entspricht einem beliebigen Wortzeichen. Ein Wortzeichen gehört zu einer der folgenden Unicode-Kategorien: Ll Buchstabe, Kleinbuchstabe Lu Buchstabe, Großbuchstabe Lt Buchstabe, erster Buchstabe groß Lo Buchstabe, sonstige Lm Buchstabe, Modifizierer Mn Zeichen, Zeichen ohne eigene Breite Nd Zahl, Dezimalzahl Pc Interpunktion, Verbindung Wenn das ECMAScript-konforme Verhalten angegeben wird, ist "\w" gleichbedeutend mit "[a-zA-Z_0-9]".</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">Wortzeichen</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">Ja</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Eine negative Lookaheadassertion mit Nullbreite, bei der eine Übereinstimmung erfolgreich ist, wenn die Eingabezeichenfolge nicht dem Muster für reguläre Ausdrücke im Teilausdruck entspricht. Die übereinstimmende Zeichenfolge ist im Übereinstimmungsergebnis nicht enthalten. Eine negative Lookaheadassertion mit Nullbreite wird in der Regel entweder am Anfang oder am Ende eines regulären Ausdrucks verwendet. Am Anfang eines regulären Ausdrucks kann ein bestimmtes Muster definiert werden, das nicht übereinstimmen darf, wenn der Anfang des regulären Ausdrucks ein ähnliches, aber allgemeineres Muster für den Abgleich definiert. In diesem Fall wird sie häufig verwendet, um die Rückverfolgung einzuschränken. Am Ende eines regulären Ausdrucks kann ein Teilausdruck definiert werden, der nicht am Ende einer Übereinstimmung vorliegen darf.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">Negative Lookaheadassertion mit Nullbreite</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Eine negative Lookbehindassertion mit Nullbreite, bei der eine Übereinstimmung erfolgreich ist, wenn "Teilausdruck" nicht in der Eingabezeichenfolge links von der aktuellen Position vorliegt. Teilzeichenfolgen, die nicht mit "Teilausdruck" übereinstimmen, sind im Übereinstimmungsergebnis nicht enthalten. Negative Lookbehindassertionen mit Nullbreite werden normalerweise am Anfang regulärer Ausdrücke verwendet. Das von ihnen definierte Muster verhindert eine Übereinstimmung in der nachfolgenden Zeichenfolge. Sie werden zudem zum Begrenzen der Rückverfolgung verwendet, wenn das letzte Zeichen oder die Zeichen in einer erfassten Gruppe nicht mit einem oder mehreren Zeichen übereinstimmen dürfen, die dem Muster für reguläre Ausdrücke der Gruppe entsprechen.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">Negative Lookbehindassertion mit Nullbreite</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Eine positive Lookaheadassertion mit Nullbreite, bei der eine Übereinstimmung erfolgreich ist, wenn die Eingabezeichenfolge dem Muster für reguläre Ausdrücke im Teilausdruck entspricht. Die abgeglichene Zeichenfolge ist im Übereinstimmungsergebnis nicht enthalten. Für eine positive Lookaheadassertion wird keine Rückverfolgung durchgeführt. Eine positive Lookaheadassertion mit Nullbreite wird in der Regel am Ende eines Musters für reguläre Ausdrücke verwendet. Sie definiert eine Teilzeichenfolge, die sich am Ende einer Zeichenfolge befinden muss, damit eine Übereinstimmung vorliegt, die aber nicht in der Übereinstimmung enthalten sein darf. Sie eignet sich auch zum Verhindern einer übermäßigen Rückverfolgung. Mit einer positiven Lookaheadassertion mit Nullbreite können Sie sicherstellen, dass eine bestimmte erfasste Gruppe mit einem Text beginnt, der einer Teilmenge des für die erfasste Gruppe definierten Musters entspricht.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">Positive Lookaheadassertion mit Nullbreite</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Eine positive Lookbehindassertion mit Nullbreite, bei der eine Übereinstimmung erfolgreich ist, wenn "Teilausdruck" in der Eingabezeichenfolge links von der aktuellen Position vorliegt. "Teilausdruck" ist im Übereinstimmungsergebnis nicht enthalten. Bei einer positiven Lookbehindassertion mit Nullbreite wird keine Rückverfolgung durchgeführt. Positive Lookbehindassertionen mit Nullbreite werden normalerweise am Anfang regulärer Ausdrücke verwendet. Das von ihnen definierte Muster ist eine Vorbedingung für eine Übereinstimmung, auch wenn es nicht zum Übereinstimmungsergebnis gehört.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">Positive Lookbehindassertion mit Nullbreite</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">In Metadaten gefundene ähnliche Methodensignaturen werden nicht aktualisiert.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Das Entfernen des Dokuments wird nicht unterstützt.</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">async-Modifizierer entfernen</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Nicht erforderliche Umwandlungen entfernen</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Nicht verwendete Variablen entfernen</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">"{0}" durch "{1}" ersetzen</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Konfliktmarkierungen auflösen</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Grobe Bearbeitung</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Zugriffsmodifizierer sortieren</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">In aufeinanderfolgende {0}-Anweisungen teilen</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">In geschachtelte {0}-Anweisungen teilen</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Stream muss Lese- und Suchvorgänge unterstützen.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">{0} unterdrücken</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: Nicht verwaltete Ressourcen (nicht verwaltete Objekte) freigeben und Finalizer überschreiben</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: Finalizer nur überschreiben, wenn "{0}" Code für die Freigabe nicht verwalteter Ressourcen enthält</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Übereinstimmungen mit Zieltyp</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">Die Assembly "{0}" mit dem Typ "{1}" verweist auf das .NET Framework. Dies wird nicht unterstützt.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">Die Auswahl enthält einen lokalen Funktionsaufruf ohne Deklaration.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Zu viele |-Zeichen in (?()|).</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Zu viele )-Zeichen.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Die Quelldatei "{0}" oder die für das enthaltende Projekt kompilierte PDB-Datei kann nicht gelesen werden. Alle Änderungen, die während des Debuggens an dieser Datei vorgenommen wurden, werden erst angewendet, wenn der Inhalt dem kompilierten Quellcode entspricht.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Unbekannte Eigenschaft</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Unbekannte Eigenschaft "{0}"</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Unbekanntes Steuerzeichen</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Unbekannte Escapesequenz \{0}.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Unbekanntes Gruppierungskonstrukt.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Nicht abgeschlossener []-Satz</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Nicht abgeschlossener (?#...)-Kommentar.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Umbruch für alle Argumente aufheben</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Umbruch für alle Parameter aufheben</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Umbruch für alle Argumente aufheben und einrücken</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Umbruch für alle Parameter aufheben und einrücken</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Umbruch für Argumentliste aufheben</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Umbruch für alle Aufrufkette aufheben</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Umbruch für Ausdruck aufheben</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Umbruch für Parameterliste aufheben</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Blocktextkörper für Lambdaausdrücke verwenden</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Ausdruckskörper für Lambdaausdrücke verwenden</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Interpolierte ausführliche Zeichenfolge verwenden</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Wert:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Warnung: Die Semantik kann sich beim Konvertieren der Anweisung ändern.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Aufrufkette umbrechen und ausrichten</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Ausdruck umbrechen und ausrichten</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Lange Aufrufkette umbrechen und ausrichten</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Aufrufkette umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Jedes Argument umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Alle Parameter umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Ausdruck umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Lange Argumentliste umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Lange Aufrufkette umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Lange Parameterliste umbrechen</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Umbruch</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Sie können die Navigationsleiste verwenden, um den Kontext zu wechseln.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">"{0}" kann nicht NULL oder leer sein.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">"{0}" darf nicht NULL oder ein Leerraumzeichen sein.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">"{0}" ist hier nicht NULL.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">"{0}" darf hier NULL sein.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">10.000.000stel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "fffffff" repräsentiert die sieben signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Zehnmillionstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Obwohl die Zehnmillionstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">10.000.000stel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "FFFFFFF" repräsentiert die sieben signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Zehnmillionstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Nachgestellte Nullen oder sieben Nullstellen werden jedoch nicht angezeigt. Obwohl die Zehnmillionstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1.000.000stel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "ffffff" repräsentiert die sechs signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Millionstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Obwohl die Millionstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1.000.000stel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "FFFFFF" repräsentiert die sechs signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Millionstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Nachgestellte Nullen oder sechs Nullstellen werden jedoch nicht angezeigt. Obwohl die Millionstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">100.000stel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "fffff" repräsentiert die fünf signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Hunderttausendstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Obwohl die Hunderttausendstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">100.000stel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "FFFFF" repräsentiert die fünf signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Hunderttausendstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Nachgestellte Nullen oder fünf Nullstellen werden jedoch nicht angezeigt. Obwohl die Hunderttausendstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">10.000stel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "ffff" repräsentiert die vier signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Zehntausendstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Obwohl die Zehntausendstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">10.000stel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "FFFF" repräsentiert die vier signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Zehntausendstel einer Sekunde in einem Datums- und Uhrzeitwert dar. Nachgestellte Nullen oder vier Nullstellen werden jedoch nicht angezeigt. Obwohl die Zehntausendstel der Sekundenkomponente eines Uhrzeitwerts angezeigt werden können, ist dieser Wert möglicherweise nicht aussagekräftig. Die Genauigkeit von Datums- und Uhrzeitwerten hängt von der Auflösung der Systemuhr ab. Bei den Betriebssystemen Windows NT 3.5 (und höher) und Windows Vista beträgt die Auflösung der Systemuhr ca. 10–15 Millisekunden.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1.000stel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "fff" repräsentiert die drei signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Millisekunden in einem Datums- und Uhrzeitwert dar. </target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1.000stel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "FFF" repräsentiert die drei signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Millisekunden in einem Datums- und Uhrzeitwert dar. Nachgestellte Nullen oder drei Nullstellen werden jedoch nicht angezeigt.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">100stel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "ff" repräsentiert die zwei signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Hundertstelsekunden in einem Datums- und Uhrzeitwert dar.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">100stel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "FF" repräsentiert die zwei signifikantesten Stellen des Sekundenbruchteils, d. h., er stellt die Hundertstelsekunden in einem Datums- und Uhrzeitwert dar. Nachgestellte Nullen oder zwei Nullstellen werden jedoch nicht angezeigt.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">Zehntel einer Sekunde</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">Zehntel einer Sekunde (ungleich 0)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "F" repräsentiert die signifikanteste Stelle des Sekundenbruchteils, d. h., er stellt die Zehntelsekunden in einem Datums- und Uhrzeitwert dar. Wenn die Stelle 0 lautet, wird nichts angezeigt. Bei Verwendung des Formatbezeichners "f" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "f" für Datum und Uhrzeit interpretiert. Bei Verwendung des Formatbezeichners "f" als Teil einer Formatzeichenfolge zur Übergabe an die ParseExact-, TryParseExact-, ParseExact- oder TryParseExact-Methode gibt die f-Formatbezeichneranzahl die Anzahl der signifikantesten Stellen des Sekundenbruchteils an, die vorhanden sein müssen, um die Zeichenfolge erfolgreich zu analysieren.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12-Stunden-Format (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "h" repräsentiert die Stunde als eine Zahl zwischen 1 und 12, d. h., die Stunde wird in einem 12-Stunden-Format dargestellt, bei dem die ganzen Stunden seit Mitternacht oder Mittag gezählt werden. Eine bestimmte Stunde nach Mitternacht ist nicht von der gleichen Stunde nach Mittag unterscheidbar. Der Stundenwert wird nicht gerundet, und ein einstelliger Stundenwert wird ohne führende Null formatiert. Beispielsweise zeigt dieser benutzerdefinierte Formatbezeichner bei der Uhrzeit 5:43 morgens oder nachmittags den Wert "5" an. Bei Verwendung des Formatbezeichners "h" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner für Datum und Uhrzeit interpretiert und löst eine FormatException aus.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12-Stunden-Format (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "hh" (plus beliebig viele zusätzliche h-Bezeichner) repräsentiert die Stunde als eine Zahl zwischen 01 und 12, d. h., die Stunde wird in einem 12-Stunden-Format dargestellt, bei dem die ganzen Stunden seit Mitternacht oder Mittag gezählt werden. Eine bestimmte Stunde nach Mitternacht ist nicht von der gleichen Stunde nach Mittag unterscheidbar. Der Stundenwert wird nicht gerundet, und ein einstelliger Stundenwert wird mit einer führenden Null formatiert. Beispielsweise zeigt dieser benutzerdefinierte Formatbezeichner bei der Uhrzeit 5:43 morgens oder nachmittags den Wert "05" an.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24-Stunden-Format (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "H" repräsentiert die Stunde als eine Zahl zwischen 0 und 23, d. h., die Stunde wird in einem nullbasierten 24-Stunden-Format dargestellt, bei dem die Stunden seit Mitternacht gezählt werden. Ein einstelliger Stundenwert wird ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "H" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner für Datum und Uhrzeit interpretiert und löst eine FormatException aus.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24-Stunden-Format (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "HH" (plus beliebig viele zusätzliche H-Bezeichner) repräsentiert die Stunde als eine Zahl zwischen 00 und 23, d. h., die Stunde wird in einem nullbasierten 24-Stunden-Format dargestellt, bei dem die Stunden seit Mitternacht gezählt werden. Ein einstelliger Stundenwert wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">Code</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">Datumstrennzeichen</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "/" repräsentiert das Datumstrennzeichen, das zur Unterscheidung von Jahren, Monaten und Tagen verwendet wird. Das geeignete lokalisierte Datumstrennzeichen wird aus der DateTimeFormatInfo.DateSeparator-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen. Hinweis: Um das Datumstrennzeichen für eine bestimmte Datums- und Uhrzeitzeichenfolge zu ändern, geben Sie das Trennzeichen innerhalb eines Trennzeichens einer Literalzeichenfolge an. Beispielsweise erzeugt die benutzerdefinierte Formatzeichenfolge "mm'/'dd'/'yyyy" eine Ergebniszeichenfolge, in der stets "/" als Datumstrennzeichen verwendet wird. Um das Datumstrennzeichen für alle Datumswerte für eine Kultur zu ändern, ändern Sie entweder den Wert der DateTimeFormatInfo.DateSeparator-Eigenschaft der aktuellen Kultur, oder instanziieren Sie ein DateTimeFormatInfo-Objekt, weisen Sie das Zeichen der zugehörigen DateSeparator-Eigenschaft zu, und rufen Sie eine Überladung der Formatierungsmethode auf, die einen IFormatProvider-Parameter umfasst. Bei Verwendung des Formatbezeichners "/" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner für Datums- und Uhrzeitwerte interpretiert und löst eine FormatException aus.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">Tag des Monats (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "d" repräsentiert den Tag des Monats als eine Zahl zwischen 1 und 31. Ein einstelliger Tageswert wird ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "d" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "d" für Datum und Uhrzeit interpretiert.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">Tag des Monats (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "dd" repräsentiert den Tag des Monats als eine Zahl zwischen 01 und 31. Ein einstelliger Tageswert wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">Tag der Woche (abgekürzt)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "ddd" repräsentiert den abgekürzten Namen des Wochentags. Der lokalisierte abgekürzte Name des Wochentags wird aus der DateTimeFormatInfo.AbbreviatedDayNames-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">Tag der Woche (vollständig)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "dddd" (plus beliebig viele zusätzliche d-Bezeichner) repräsentiert den vollständigen Namen des Wochentags. Der lokalisierte Name des Wochentags wird aus der DateTimeFormatInfo.DayNames-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">Ausschussvariable</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">aus Metadaten</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">Vollständige(s) Datum/Uhrzeit (lang)</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">Der Standardformatbezeichner "F" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitzeichenfolge, die durch die aktuelle DateTimeFormatInfo.FullDateTimePattern-Eigenschaft definiert ist. Die benutzerdefinierte Formatzeichenfolge für die invariante Kultur lautet beispielsweise "dddd, dd MMMM yyyy HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">Vollständige(s) Datum/Uhrzeit (kurz)</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Formatbezeichner für das Datum in Langform und die Uhrzeit in Kurzform ("f") Der Standardformatbezeichner "f" repräsentiert eine Kombination aus den Mustern für das lange Datumsformat ("D") und das kurze Uhrzeitformat ("t"), getrennt durch ein Leerzeichen.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">Allgemeine(s) Datum/Uhrzeit (lang)</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">Der Standardformatbezeichner "G" repräsentiert eine Kombination aus den Mustern für das kurze Datumsformat ("d") und das lange Uhrzeitformat ("T"), getrennt durch ein Leerzeichen.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">Allgemeine(s) Datum/Uhrzeit (kurz)</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">Der Standardformatbezeichner "g" repräsentiert eine Kombination aus den Mustern für das kurze Datumsformat ("d") und das kurze Uhrzeitformat ("t"), getrennt durch ein Leerzeichen.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">generische Überladung</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">generische Überladungen</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">in {0} ({1}–{2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">in Quelle (Attribut)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">Langes Datumsformat</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">Der Standardformatbezeichner "D" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die aktuelle DateTimeFormatInfo.LongDatePattern-Eigenschaft definiert ist. Die benutzerdefinierte Formatzeichenfolge für die invariante Kultur lautet beispielsweise "dddd, dd MMMM yyyy".</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">Langes Uhrzeitformat</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">Der Standardformatbezeichner "T" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die DateTimeFormatInfo.LongTimePattern-Eigenschaft einer bestimmten Kultur definiert ist. Die benutzerdefinierte Formatzeichenfolge für die invariante Kultur lautet beispielsweise "HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} "{1}"</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">Minute (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "m" repräsentiert die Minute als eine Zahl zwischen 0 und 59. Der Minutenwert steht für ganze Minuten, die seit der letzten Stunde vergangen sind. Ein einstelliger Minutenwert wird ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "m" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "m" für Datum und Uhrzeit interpretiert.</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">Minute (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "mm" (plus beliebig viele zusätzliche m-Bezeichner) repräsentiert die Minute als eine Zahl zwischen 00 und 59. Der Minutenwert steht für ganze Minuten, die seit der letzten Stunde vergangen sind. Ein einstelliger Minutenwert wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">Monate (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "M" repräsentiert den Monat als eine Zahl zwischen 1 und 12 (bzw. zwischen 1 und 13 für Kalender mit 13 Monaten). Ein einstelliger Monatswert wird ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "M" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "M" für Datum und Uhrzeit interpretiert.</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">Monat (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "MM" repräsentiert den Monat als eine Zahl zwischen 01 und 12 (bzw. zwischen 1 und 13 für Kalender mit 13 Monaten). Ein einstelliger Monatswert wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">Monat (abgekürzt)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "MMM" repräsentiert den abgekürzten Namen des Monats. Der lokalisierte abgekürzte Name des Monats wird aus der DateTimeFormatInfo.AbbreviatedMonthNames-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">Tag des Monats</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">Der Standardformatbezeichner "M" oder "m" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die aktuelle DateTimeFormatInfo.MonthDayPattern-Eigenschaft definiert ist. Die benutzerdefinierte Formatzeichenfolge für die invariante Kultur lautet beispielsweise "MMMM dd".</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">Monat (vollständig)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "MMMM" repräsentiert den vollständigen Namen des Monats. Der lokalisierte Name des Monats wird aus der DateTimeFormatInfo.MonthNames-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">Überladung</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">Überladungen</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0}-Schlüsselwort</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Feld kapseln: "{0}" (und Eigenschaft verwenden)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Feld kapseln: "{0}" (Feld jedoch weiterhin verwenden)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Felder kapseln (und Eigenschaft verwenden)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Felder kapseln (Feld jedoch weiterhin verwenden)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Schnittstelle konnte nicht extrahiert werden: Die Auswahl befindet sich nicht in einer Klasse/Schnittstelle/Struktur.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Schnittstelle konnte nicht extrahiert werden: Der Typ enthält kein Element, das in eine Schnittstelle extrahiert werden kann.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">Endgültiger Baum konnte nicht erstellt werden</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Parametertyp oder Rückgabetyp können kein anonymer Typ sein : [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">Die Auswahl enthält keine aktive Anweisung.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">Die Auswahl enthält einen Fehler oder einen unbekannten Typen.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Typparameter "{0}" wird durch einen anderen Typparameter "{1}" verborgen.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">Die Adress einer Variable wird in dem ausgewählten Code verwendet.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">Das Zuweisen zu schreibgeschützten Feldern muss in einem Konstruktor erfolgen: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">generierter Code überschneidet sich mit dem ausgeblendeten Teil des Codes</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Optionale Parameter zu "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Parameter zu "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Delegierenden Konstruktor "{0}({1})" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Konstruktor "{0}({1})" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Feldzuweisungskonstruktor "{0}({1})" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">"Equals" und "GetHashCode" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">"Equals(object)" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">"GetHashCode()" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Konstruktor in "{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Alle generieren</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Aufzählungselement "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Konstante "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Schreibgeschützte Eigenschaft "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Eigenschaft "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Schreibgeschütztes Feld "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Feld "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Lokales "{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">{0}-Objekt "{1}" in neuer Datei generieren</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Geschachteltes {0}-Objekt "{1}" generieren</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Globaler Namespace</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Schnittstelle abstrakt implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Schnittstelle über "{0}" implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Schnittstelle implementieren</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Feld für "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Lokales Element für "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Konstante für "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Lokale Konstante für "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Feld für alle Vorkommen von "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Lokales Element für alle Vorkommen von "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Konstante für alle Vorkommen von "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Lokale Konstante für alle Vorkommen von "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Abfragevariable für alle Vorkommen von "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Abfragevariable für "{0}" bereitstellen</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Anonyme Typen:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">ist</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Stellt ein Objekt dar, dessen Vorgänge zur Laufzeit aufgelöst werden.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">Konstante</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">Feld</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">lokale Konstante</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">Lokale Variable</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">Bezeichnung</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">Zeitraum/Epoche</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "g" oder "gg" (plus eine beliebige Anzahl zusätzlicher g-Bezeichner) repräsentiert ein Zeitalter oder eine Epoche, wie z. B. A. D. (Anno Domini). Dieser Bezeichner wird bei der Formatierung ignoriert, wenn dem zu formatierenden Datum keine Zeitalter- oder Epochenzeichenfolge zugeordnet ist. Bei Verwendung des Formatbezeichners "g" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "g" für Datum und Uhrzeit interpretiert.</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">Bereichsvariable</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">Parameter</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">Ein</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Zusammenfassung:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Lokale Variablen und Parameter</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Typparameter:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Rückgabewerte:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Ausnahmen:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Hinweise:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">Das Generieren der Symbolquelle dieses Typs wird nicht unterstützt</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">Assembly</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">Standort unbekannt</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Unerwartete Schnittstellenelementart: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Unbekannte Symbolart</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Abstrakte Eigenschaft "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Abstrakte Methode "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Methode "{1}.{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">Angefordertes Assembly wurde bereits von "{0}" geladen.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Das Symbol hat kein Symbolbild.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Asynchrone Methode darf keine ref/out-Parameter aufweisen : [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Das Element wird in den Metadaten definiert.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Sie können nur die Signatur eines Konstruktors, eines Indexers, einer Methode oder eines Delegaten ändern.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Definitionen oder Verweise im Zusammenhang mit diesem Symbol befinden sich in den Metadaten. Durch Ändern der Signatur können Fehler beim Erstellen auftreten. Möchten Sie fortfahren?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Signatur ändern...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Neuen Typ generieren...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Benutzerfehler bei Diagnoseanalysetool.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">Die Analyse "{0}" hat eine Ausnahme vom Typ "{1}" mit der Meldung "{2}" ausgelöst.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">Das Analysetool "{0}" hat die folgende Ausnahme ausgelöst: "{1}".</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Namen vereinfachen</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Memberzugriff vereinfachen</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Qualifizierung entfernen</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Unbekannter Fehler aufgetreten</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Verfügbar</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Nicht verfügbar ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">In Quelle</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">In Unterdrückungsdatei</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Unterdrückung "{0}" entfernen</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Unterdrückung entfernen</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;Ausstehend&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Hinweis: Drücken Sie zweimal die TAB-TASTE, um den Ausschnitt "{0}" einzufügen.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Schnittstelle explizit mit Dispose-Muster implementieren</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Schnittstelle mit Dispose-Muster implementieren</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Erneute Triage {0} (zurzeit "{1}")</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">Argument darf kein Nullelement enthalten.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">Argument darf nicht leer sein.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">Die gemeldete Diagnose mit ID "{0}" wird vom Diagnoseanalysetool nicht unterstützt.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Berechnen der Codefehlerbehebung für alle Vorkommen...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Alle Vorkommen korrigieren</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Dokument</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Projekt </target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Projektmappe</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: Verwalteten Zustand (verwaltete Objekte) bereinigen</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: Große Felder auf NULL setzen</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Compiler</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">Live</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">enum – Wert</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">const – Feld</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">Methode</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">Operator</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">Konstruktor</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">Auto-Eigenschaft</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">Eigenschaft</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">Ereignisaccessor</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">RFC1123-Datum/Uhrzeit</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Der Standardformatbezeichner "R" oder "r" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die DateTimeFormatInfo.RFC1123Pattern-Eigenschaft definiert ist. Das Muster folgt einem definierten Standard, und die Eigenschaft ist schreibgeschützt. Daher ist sie immer gleich, unabhängig von der verwendeten Kultur oder dem angegebenen Formatanbieter. Die benutzerdefinierte Formatzeichenfolge lautet "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". Bei Verwendung dieses Standardformatbezeichners wird für die Formatierung oder Analyse immer die invariante Kultur verwendet.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">Roundtrip-Datum/Uhrzeit</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">Der Standardformatbezeichner "O" oder "o" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge mit Verwendung eines Musters, das die Zeitzoneninformationen beibehält und eine Ergebniszeichenfolge ausgibt, die ISO 8601 entspricht. Für DateTime-Werte ist dieser Formatbezeichner so ausgelegt, dass Datums- und Uhrzeitwerte zusammen mit der DateTime.Kind-Eigenschaft im Text erhalten bleiben. Die formatierte Zeichenfolge kann mit der Methode "DateTime.Parse(String, IFormatProvider, DateTimeStyles)" oder mit der DateTime.ParseExact-Methode rückanalysiert werden, wenn der styles-Parameter auf "DateTimeStyles.RoundtripKind" festgelegt ist. Der Standardformatbezeichner "O" oder "o" entspricht der benutzerdefinierten Formatzeichenfolge "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" für DateTime-Werte und der benutzerdefinierten Formatzeichenfolge "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" für DateTimeOffset-Werte. In dieser Zeichenfolge weisen die Paare einfacher Anführungszeichen zum Abgrenzen einzelner Zeichen – beispielsweise Bindestriche, Doppelpunkte und der Buchstabe "T" – darauf hin, dass es sich bei dem einzelnen Zeichen um ein Literal handelt, das nicht geändert werden kann. Die Apostrophe werden in der Ausgabezeichenfolge nicht angezeigt. Der Standardformatbezeichner "O" oder "o" (und die benutzerdefinierte Formatzeichenfolge "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK") nutzt die drei Möglichkeiten von ISO 8601 zur Darstellung von Zeitzoneninformationen, um die Kind-Eigenschaft der DateTime-Werte beizubehalten: Die Zeitzonenkomponente von Datums- und Uhrzeitwerten von DateTimeKind.Local ist die UTC-Abweichung (z. B. +01:00, -07:00). Alle DateTimeOffset-Werte werden ebenfalls in diesem Format dargestellt. Die Zeitzonenkomponente von Datums- und Uhrzeitwerten von DateTimeKind.Utc verwenden "Z" (entspricht der Abweichung 0), um UTC darzustellen. Datums- und Uhrzeitwerte von DateTimeKind.Unspecified umfassen keine Zeitzoneninformationen. Da der Standardformatbezeichner "O" oder "o" einem internationalen Standard entspricht, werden bei der Formatierung oder Analyse mit diesem Bezeichner immer die invariante Kultur und der gregorianische Kalender verwendet. Zeichenfolgen zur Übergabe an die Parse-, TryParse-, ParseExact- und TryParseExact-Methoden von DateTime und DateTimeOffset können mithilfe der Formatbezeichner "O" oder "o" analysiert werden, wenn sie in einem dieser Formate vorliegen. Im Fall von DateTime-Objekten sollte die aufgerufene Analyseüberladung außerdem einen styles-Parameter mit dem Wert "DateTimeStyles.RoundtripKind" enthalten. Beachten Sie, dass Sie nicht die gleichen Ergebnisse wie für "O" oder "o" erhalten, wenn Sie eine Analysemethode mit der benutzerdefinierten Formatzeichenfolge aufrufen, die dem Formatbezeichner "O" oder "o" entspricht. Dafür gibt es folgenden Grund: Analysemethoden, die eine Zeichenfolge mit benutzerdefiniertem Format verwenden, können die Zeichenfolgendarstellung von Datums- und Uhrzeitwerten nicht analysieren, denen die Zeitzonenkomponente fehlt oder die "Z" zur Angabe von UTC verwenden.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">Sekunde (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "s" repräsentiert die Sekunden als eine Zahl zwischen 0 und 59. Das Ergebnis steht für ganze Sekunden, die seit der letzten Minute vergangen sind. Ein einstelliger Sekundenwert wird ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "s" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "s" für Datum und Uhrzeit interpretiert.</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">Sekunde (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "ss" (plus beliebig viele zusätzliche s-Bezeichner) repräsentiert die Sekunden als eine Zahl zwischen 00 und 59. Das Ergebnis steht für ganze Sekunden, die seit der letzten Minute vergangen sind. Ein einstelliger Sekundenwert wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">Kurzes Datumsformat</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">Der Standardformatbezeichner "d" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die DateTimeFormatInfo.ShortDatePattern-Eigenschaft einer bestimmten Kultur definiert wird. Die von der ShortDatePattern-Eigenschaft der invarianten Kultur zurückgegebene benutzerdefinierte Formatzeichenfolge lautet beispielsweise "MM/dd/yyyy".</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">Kurzes Uhrzeitformat</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">Der Standardformatbezeichner "t" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die aktuelle DateTimeFormatInfo.ShortTimePattern-Eigenschaft definiert ist. Die benutzerdefinierte Formatzeichenfolge für die invariante Kultur lautet beispielsweise "HH:mm".</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">Sortierbare(s) Datum/Uhrzeit</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Der Standardformatbezeichner "s" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die DateTimeFormatInfo.SortableDateTimePattern-Eigenschaft definiert wird. Das Muster folgt einem definierten Standard (ISO 8601), und die Eigenschaft ist schreibgeschützt. Daher ist sie immer gleich, unabhängig von der verwendeten Kultur oder dem angegebenen Formatanbieter. Die benutzerdefinierte Formatzeichenfolge lautet "yyyy'-'MM'-'dd'T'HH':'mm':'ss". Der Zweck des Formatbezeichners "s" besteht darin, Ergebniszeichenfolgen zu erzeugen, die basierend auf Datums- und Uhrzeitwerten konsistent in aufsteigender oder absteigender Reihenfolge sortiert werden. Obwohl der Standardformatbezeichner "s" einen Datums- und Uhrzeitwert in einem konsistenten Format repräsentiert, wird der Wert des zu formatierenden Objekts für Datum und Uhrzeit bei der Formatierung nicht geändert, um die zugehörige DateTime.Kind-Eigenschaft oder den zugehörigen DateTimeOffset.Offset-Wert widerzuspiegeln. Beispielsweise sind die Ergebniszeichenfolgen, die bei Formatierung der Datums- und Uhrzeitwerte 2014-11-15T18:32:17+00:00 und 2014-11-15T18:32:17+08:00 generiert werden, identisch. Bei Verwendung dieses Standardformatbezeichners wird zur Formatierung oder Analyse immer die invariante Kultur verwendet.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">statischer Konstruktor</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'"symbol" kann kein Namespace sein.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">Zeittrennzeichen</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner ":" repräsentiert das Zeittrennzeichen, das zur Unterscheidung von Stunden, Minuten und Sekunden verwendet wird. Das geeignete lokalisierte Zeittrennzeichen wird aus der DateTimeFormatInfo.TimeSeparator-Eigenschaft der aktuellen oder angegebenen Kultur abgerufen. Hinweis: Um das Zeittrennzeichen für eine bestimmte Datums- und Uhrzeitzeichenfolge zu ändern, geben Sie das Trennzeichen innerhalb eines Trennzeichens einer Literalzeichenfolge an. Beispielsweise erzeugt die benutzerdefinierte Formatzeichenfolge "hh'_'dd'_'ss" eine Ergebniszeichenfolge, in der stets "_" (ein Unterstrich) als Zeittrennzeichen verwendet wird. Um das Zeittrennzeichen für alle Datumswerte für eine Kultur zu ändern, ändern Sie entweder den Wert der DateTimeFormatInfo.TimeSeparator-Eigenschaft der aktuellen Kultur, oder instanziieren Sie ein DateTimeFormatInfo-Objekt, weisen Sie das Zeichen der zugehörigen TimeSeparator-Eigenschaft zu, und rufen Sie eine Überladung der Formatierungsmethode auf, die einen IFormatProvider-Parameter umfasst. Bei Verwendung des Formatbezeichners ":" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner für Datums- und Uhrzeitwerte interpretiert und löst eine FormatException aus.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">Zeitzone</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "K" repräsentiert die Zeitzoneninformation eines Datums- und Uhrzeitwerts. Bei Verwendung dieses Formatbezeichners mit DateTime-Werten wird die Ergebniszeichenfolge durch den Wert der DateTime.Kind-Eigenschaft definiert: Für die lokale Zeitzone (ein DateTime.Kind-Eigenschaftswert von DateTimeKind.Local) entspricht dieser Bezeichner dem Bezeichner "zzz" und erzeugt eine Ergebniszeichenfolge, die die lokale Abweichung von der koordinierten Weltzeit (UTC) enthält, z. B. "-07:00". Für eine UTC-Zeit (ein DateTime.Kind-Eigenschaftswert von DateTimeKind.Utc) enthält die Ergebniszeichenfolge ein Zeichen "Z" zur Darstellung eines UTC-Datums. Für einen Zeitwert einer nicht angegebenen Zeitzone (ein Zeitwert, dessen DateTime.Kind-Eigenschaft "DateTimeKind.Unspecified" lautet) ist das Ergebnis äquivalent zu "String.Empty". Für DateTimeOffset-Werte ist der Formatbezeichner "K" äquivalent zum Formatbezeichner "zzz" und erzeugt eine Ergebniszeichenfolge, die das Offset des DateTimeOffset-Werts von UTC enthält. Bei Verwendung des Formatbezeichners "K" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner für Datums- und Uhrzeitwerte interpretiert und löst eine FormatException aus.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">Typeinschränkung</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">Typparameter</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">Attribut</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">"{0}" und "{1}" durch Eigenschaft ersetzen</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">"{0}" durch Eigenschaft ersetzen</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Methode, auf die implizit verwiesen wird</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Typ "{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">{0}-Objekt "{1}" generieren</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Ändern Sie "{0}" in "{1}".</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Eine nicht aufgerufene Methode kann nicht durch eine Eigenschaft ersetzt werden.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Nur Methoden mit einem einzelnen Argument, das keine out-Variablendeklaration ist, können durch eine Eigenschaft ersetzt werden.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Eine Instanz des Analysetools "{0}" kann nicht aus {1} erstellt werden: {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">Die Assembly "{0}" enthält keine Analysetools.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Fehler beim Laden der Assembly "{0}" des Analysetools: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Methode synchron ausführen</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">aus {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Nach aktueller Version suchen und diese installieren</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Lokale Version "{0}" verwenden</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Lokal installierte Version "{1}" von "{0}" verwenden. Diese Version wird verwendet in: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Nach aktueller Version von "{0}" suchen und diese installieren</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Mit Paket-Manager installieren...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">"{0} {1}" installieren</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Version "{0}" installieren</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Variable "{0}" generieren</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Klassen</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Konstanten</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Delegaten</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Enumerationen</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Ereignisse</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Erweiterungsmethoden</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Felder</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Schnittstellen</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Lokal</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Methoden</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Module</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Namespaces</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Eigenschaften</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Strukturen</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parameter:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Variadic-SignatureHelpItem muss mindestens ein Parameter aufweisen.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">"{0}" durch Methode ersetzen</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">"{0}" durch Methoden ersetzen</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Auf die Eigenschaft wird implizit verwiesen.</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Die Eigenschaft kann nicht sicher durch einen Methodenaufruf ersetzt werden.</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">In interpolierte Zeichenfolge konvertieren</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Typ in {0} verschieben</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Datei umbenennen in {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Typ umbenennen in {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Tag entfernen</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Fehlende Parameterknoten hinzufügen</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Enthaltenden Bereich als asynchron definieren</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Enthaltenden Bereich als asynchron definieren (Task zurückgeben)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Unbekannt)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Frameworktyp verwenden</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Paket "{0}" installieren</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">Projekt "{0}"</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">"{0}" voll qualifizieren</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Verweis auf "{0}" entfernen.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Schlüsselwörter</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Codeausschnitte</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Alles Kleinbuchstaben</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Alles Großbuchstaben</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Erstes Wort groß geschrieben</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Pascal-Schreibweise</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Dokument "{0}" entfernen</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Dokument "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Argumentnamen "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">"{0}" übernehmen</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Beide übernehmen</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Unten übernehmen</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Oben übernehmen</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Nicht verwendete Variable entfernen</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">In Binärformat konvertieren</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">In Dezimalformat konvertieren</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">In 'hex' konvertieren</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Tausender trennen</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Wörter trennen</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Halbbytes trennen</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Trennzeichen entfernen</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Parameter zu "{0}" hinzufügen</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Konstruktor generieren…</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Member auswählen, die als Konstruktorparameter verwendet werden sollen</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Member auswählen, die in "Equals"/"GetHashCode" verwendet werden sollen</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Überschreibungen generieren…</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Zu überschreibende Member auswählen</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">NULL-Überprüfung hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">"string.IsNullOrEmpty"-Überprüfung hinzufügen</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">"string.IsNullOrWhiteSpace"-Überprüfung hinzufügen</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Feld "{0}" initialisieren</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Eigenschaft "{0}" initialisieren</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">NULL-Überprüfungen hinzufügen</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Operatoren generieren</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">{0} implementieren</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">Die gemeldete Diagnose "{0}" weist einen Quellspeicherort in der Datei "{1}" auf, die nicht Teil der Kompilierung ist, die analysiert wird.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">Die gemeldete Diagnose "{0}" enthält einen Quellspeicherort "{1}" in der Datei "{2}", der sich außerhalb der angegebenen Datei befindet.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">in "{0}" (Projekt "{1}")</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Zugriffsmodifizierer hinzufügen</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Deklaration nahe Referenz verschieben</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">In vollständige Eigenschaft konvertieren</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Warnung: Die Methode setzt das Symbol aus den Metadaten außer Kraft.</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">{0} verwenden</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Argumentnamen "{0}" (einschließlich nachfolgender Argumente) hinzufügen</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">Lokale Funktion</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">Indexer</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Nicht eindeutiger Aliastyp "{0}"</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Warnung: Die Sammlung wurde bei der Iteration geändert.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Warnung: Die Iterationsvariable hat die Funktionsgrenze überschritten.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Warnung: Die Sammlung wird bei der Iteration möglicherweise geändert.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">Universelle(s) vollständige(s) Datum/Uhrzeit</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">Der Standardformatbezeichner "U" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die DateTimeFormatInfo.FullDateTimePattern-Eigenschaft einer angegebenen Kultur definiert ist. Das Muster ist mit dem F-Muster identisch. Der DateTime-Wert wird jedoch automatisch in UTC konvertiert, bevor er formatiert wird.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">Universelle(s) sortierbare(s) Datum/Uhrzeit</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">Der Standardformatbezeichner "u" repräsentiert eine benutzerdefinierte Datums- und Uhrzeitformatzeichenfolge, die durch die DateTimeFormatInfo.UniversalSortableDateTimePattern-Eigenschaft definiert ist. Das Muster folgt einem definierten Standard, und die Eigenschaft ist schreibgeschützt. Daher ist sie immer gleich, unabhängig von der verwendeten Kultur oder dem angegebenen Formatanbieter. Die benutzerdefinierte Formatzeichenfolge lautet "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". Bei Verwendung dieses Standardformatbezeichners wird bei Formatierung oder Analyse immer die invariante Kultur verwendet. Obwohl die Ergebniszeichenfolge einen Zeitwert als koordinierte Weltzeit (UTC) ausdrücken sollte, findet während der Formatierung keine Konvertierung des ursprünglichen DateTime-Werts statt. Deshalb müssen Sie einen DateTime-Wert vor der Formatierung durch Aufruf der DateTime.ToUniversalTime-Methode in UTC konvertieren.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">Verwendungen in enthaltenden Members wird aktualisiert.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">Verwendungen im enthaltenden Projekt werden aktualisiert.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">Verwendungen im enthaltenden Typ aktualisieren</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">Verwendungen in abhängigen Projekten werden aktualisiert.</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">UTC-Abweichung in Stunden und Minuten</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Bei DateTime-Werten repräsentiert der benutzerdefinierte Formatbezeichner "zzz" die Abweichung (einschließlich Vorzeichen) der Zeitzone des lokalen Betriebssystems von der koordinierten Weltzeit (UTC), gemessen in Stunden und Minuten. Er spiegelt nicht den Wert einer Instanz der DateTime.Kind-Eigenschaft wider. Aus diesem Grund wird der Formatbezeichner "zzz" nicht zur Verwendung mit DateTime-Werten empfohlen. Bei DateTimeOffset-Werten stellt dieser Formatbezeichner die Abweichung des DateTimeOffset-Wertes von UTC in Stunden und Minuten dar. Die Abweichung wird immer mit einem Vorzeichen angezeigt. Ein Pluszeichen (+) steht für Stunden vor UTC, ein Minuszeichen (-) für Stunden nach UTC. Eine einstellige Abweichung wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">UTC-Abweichung in Stunden (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Bei DateTime-Werten repräsentiert der benutzerdefinierte Formatbezeichner "z" die Abweichung (einschließlich Vorzeichen) der Zeitzone des lokalen Betriebssystems von der koordinierten Weltzeit (UTC), gemessen in Stunden. Er spiegelt nicht den Wert einer Instanz der DateTime.Kind-Eigenschaft wider. Aus diesem Grund wird der Formatbezeichner "z" nicht zur Verwendung mit DateTime-Werten empfohlen. Bei DateTimeOffset-Werten stellt dieser Formatbezeichner die Abweichung des DateTimeOffset-Wertes von UTC in Stunden dar. Die Abweichung wird immer mit einem Vorzeichen angezeigt. Ein Pluszeichen (+) steht für Stunden vor UTC, ein Minuszeichen (-) für Stunden nach UTC. Eine einstellige Abweichung wird ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "z" ohne weitere Formatbezeichner wird er als Standardformatbezeichner für Datums- und Uhrzeitwerte interpretiert und löst eine FormatException aus.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">UTC-Abweichung in Stunden (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Bei DateTime-Werten repräsentiert der benutzerdefinierte Formatbezeichner "zz" die Abweichung (einschließlich Vorzeichen) der Zeitzone des lokalen Betriebssystems von der koordinierten Weltzeit (UTC), gemessen in Stunden. Er spiegelt nicht den Wert einer Instanz der DateTime.Kind-Eigenschaft wider. Aus diesem Grund wird der Formatbezeichner "zz" nicht zur Verwendung mit DateTime-Werten empfohlen. Bei DateTimeOffset-Werten stellt dieser Formatbezeichner die Abweichung des DateTimeOffset-Wertes von UTC in Stunden dar. Die Abweichung wird immer mit einem Vorzeichen angezeigt. Ein Pluszeichen (+) steht für Stunden vor UTC, ein Minuszeichen (-) für Stunden nach UTC. Eine einstellige Abweichung wird mit einer führenden Null formatiert.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">[x-y]-Bereich in umgekehrter Reihenfolge</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">Jahr (1–2 Stellen)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "y" repräsentiert das Jahr als ein- oder zweistellige Zahl. Wenn das Jahr mehr als zwei Stellen aufweist, werden im Ergebnis nur die zwei niederwertigen Stellen angezeigt. Beginnt die erste Stelle eines zweistelligen Jahres mit einer Null (z. B. 2008), wird die Zahl ohne führende Null formatiert. Bei Verwendung des Formatbezeichners "y" ohne weitere benutzerdefinierte Formatbezeichner wird er als Standardformatbezeichner "y" für Datums- und Uhrzeitwerte interpretiert.</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">Jahr (2 Stellen)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "yy" repräsentiert das Jahr als zweistellige Zahl. Wenn das Jahr mehr als zwei Stellen aufweist, werden im Ergebnis nur die zwei niederwertigen Stellen angezeigt. Umfasst das zweistellige Jahr weniger als zwei signifikante Stellen, wird die Zahl mit führenden Nullen aufgefüllt, um zwei Stellen zu erzeugen. Bei der Analyse eines zweistelligen Jahreswerts mit dem benutzerdefinierten Formatbezeichner "yy" wird das Jahr auf Grundlage der Calendar.TwoDigitYearMax-Eigenschaft des aktuellen Kalenders des Formatanbieters interpretiert. Das folgende Beispiel analysiert die Zeichenfolgendarstellung eines Datums mit zweistelliger Jahreszahl unter Verwendung des standardmäßigen gregorianischen Kalenders der Kultur "en-US" (in diesem Fall die aktuelle Kultur). Anschließend wird das CultureInfo-Objekt der aktuellen Kultur so geändert, dass ein GregorianCalendar-Objekt verwendet wird, dessen TwoDigitYearMax-Eigenschaft geändert wurde.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">Jahr (3–4 Stellen)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "yyy" repräsentiert das Jahr mit mindestens drei Stellen. Wenn das Jahr mehr als drei signifikante Stellen aufweist, werden diese in die Ergebniszeichenfolge eingeschlossen. Umfasst das Jahr weniger als drei Stellen, wird die Zahl mit führenden Nullen aufgefüllt, um drei Stellen zu erzeugen.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">Jahr (4 Stellen)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "yyyy" repräsentiert das Jahr mit mindestens vier Stellen. Wenn das Jahr mehr als vier signifikante Stellen aufweist, werden sie in die Ergebniszeichenfolge eingeschlossen. Umfasst das Jahr weniger als vier Stellen, wird die Zahl mit führenden Nullen aufgefüllt, um vier Stellen zu erzeugen.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">Jahr (5 Stellen)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">Der benutzerdefinierte Formatbezeichner "yyyyy" (plus beliebig viele zusätzliche y-Bezeichner) repräsentiert das Jahr mit mindestens fünf Stellen. Wenn das Jahr mehr als fünf signifikante Stellen aufweist, werden diese in die Ergebniszeichenfolge eingeschlossen. Umfasst das Jahr weniger als fünf Stellen, wird die Zahl mit führenden Nullen aufgefüllt, um fünf Stellen zu erzeugen. Falls zusätzliche y-Bezeichner vorhanden sind, wird die Zahl mit so vielen führenden Nullen aufgefüllt, wie erforderlich sind, um die Anzahl der y-Bezeichner zu erhalten.</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">Monat des Jahres</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">Der Standardformatbezeichner "Y" oder "y" repräsentiert eine benutzerdefinierte Datums- und Zeitformatzeichenfolge, die durch die DateTimeFormatInfo.YearMonthPattern-Eigenschaft einer bestimmten Kultur definiert ist. Die benutzerdefinierte Formatzeichenfolge für die invariante Kultur lautet beispielsweise "yyyy MMMM".</target> <note /> </trans-unit> </body> </file> </xliff>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/xlf/FeaturesResources.es.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="es" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">a.m./p.m. (abreviado)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">El especificador de formato personalizado "t" representa el primer carácter del designador AM/PM. Se recupera el designador adaptado apropiado de la propiedad DateTimeFormatInfo.AMDesignator o DateTimeFormatInfo.PMDesignator de la referencia cultural actual o específica. El designador AM se usa para todas las horas de 0:00:00 (medianoche) a 11:59:59.999. El designador PM se usa para todas las horas de 12:00:00 (mediodía) a 23:59:59.999. Si el especificador de formato "t" se usa sin otros especificadores de formato personalizado, se interpreta como el especificador de formato de fecha y hora estándar "t".</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">a.m./p.m. (completo)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">El especificador de formato personalizado "tt" (más cualquier número de especificadores "t" adicionales) representa el designador AM/PM completo. Se recupera el designador adaptado apropiado de la propiedad DateTimeFormatInfo.AMDesignator o DateTimeFormatInfo.PMDesignator de la referencia cultural actual o específica. El designador AM se usa para todas las horas de 0:00:00 (medianoche) a 11:59:59.999. El designador PM se usa para todas las horas de 12:00:00 (mediodía) a 23:59:59.999. Asegúrese de usar el especificador "tt" para los idiomas para los que es necesario mantener la distinción entre AM y PM. Un ejemplo es el japonés, para el que los designadores AM y PM difieren en el segundo carácter en lugar de en el primer carácter.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Una sustracción debe ser el último elemento de una clase de caracteres</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Agregar atributo de "DebuggerDisplay"</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Agregar conversión explícita</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Agregar nombre de miembro</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Agregar comprobaciones de valores NULL para todos los parámetros</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Agregar parámetro opcional al constructor</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Agregar un parámetro a “{0}” (y reemplazos/implementaciones)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Agregar parámetro al constructor</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Agregue referencia de proyecto a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Agregue referencia a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Las acciones no pueden estar vacías.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Agregar el nombre del elemento de tupla "{0}"</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Alinear argumentos ajustados</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Alinear parámetros ajustados</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Las condiciones de alternancia no pueden ser comentarios</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Las condiciones de alternancia no se captan y se les puede poner un nombre</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Aplicar preferencias de encabezado de archivo</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Aplicar preferencias de inicialización de objetos o colecciones</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">La tarea esperada devuelve "{0}".</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">La tarea esperada no devuelve ningún valor.</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Las clases base contienen miembros no implementados que son inaccesibles.</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">No se pueden aplicar los cambios. Error inesperado: "{0}"</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">No se incluye la clase \{0} en el intervalo de caracteres</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">La captura de números de grupo deben ser menor o igual a Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">La captura de número no puede ser cero</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;inferir&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="new">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;omitir&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Cambiar al espacio de nombres global</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">No se permiten cambios durante una parada por una excepción</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Los cambios realizados en el proyecto "{0}" no se aplicarán mientras se esté ejecutando la aplicación</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Configurar el estilo de código de {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Configurar la gravedad de {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Configurar la gravedad de todos los analizadores ("{0}")</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Configurar la gravedad de todos los analizadores</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Convertir a LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Agregar a “{0}”</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Convertir a la clase</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Convertir a LINQ (formulario de llamada)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Convertir en registro</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Convertir en registro de estructuras</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Convertir a struct</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Convertir tipo en "{0}"</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Crear y asignar campo "{0}"</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Crear y asignar propiedad "{0}"</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Crear y asignar el resto como campos</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Crear y asignar el resto como propiedades</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">No cambie este código. Coloque el código de limpieza en el método "{0}".</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">El contenido actual del archivo de código fuente "{0}" no coincide con el del código fuente compilado, así que los cambios realizados en este archivo durante la depuración no se aplicarán hasta que coincida.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">El documento debe estar contenido en el área de trabajo que creó este servicio</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Editar y continuar</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">El módulo no permite editar y continuar</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Los cambios realizados en el proyecto "{0}" impedirán que continúe la sesión de depuración: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">El runtime no admite editar y continuar.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Error al leer el archivo "{0}": {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Error al crear la instancia de CodeFixProvider</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Error al crear la instancia de CodeFixProvider "{0}"</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Ejemplo:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Ejemplos:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Los métodos de registros implementados explícitamente deben tener nombres de parámetro que coincidan con el equivalente generado por el programa "{0}"</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Extraer clase base...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Extraer interfaz...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Extraer función local</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Extraer método</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">No se pudo analizar el flujo de datos para: {0}.</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Fijar formato</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Corregir error de escritura "{0}"</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Dar formato al documento</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Aplicando formato al documento</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Generar operadores de comparación</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Generar un constructor en "{0}" (con campos)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Generar un constructor en "{0}" (con propiedades)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Generar para "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Generar el parámetro "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Generar el parámetro "{0}" (y reemplazos/implementaciones)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">\ no válido al final del modelo</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">Ilegales {x, y} con x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Implementar "{0}" de forma explícita</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Implementar "{0}" de forma implícita</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Implementar clase abstracta</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Implementar todas las interfaces de forma explícita</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Implementar todas las interfaces de forma implícita</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Implementar todos los miembros de forma explícita</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Implementar de forma explícita</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Implementar de forma implícita</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Implementar los miembros restantes de forma explícita</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Implementar a través de "{0}"</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Escape de carácter incompleto \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Aplicar sangría a todos los argumentos</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Aplicar sangría a todos los parámetros</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Argumentos con la sangría ajustada</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Parámetros con la sangría ajustada</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">En línea "{0}"</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Alinear y mantener "{0}"</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Insuficientes dígitos hexadecimales</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Introducir la sangría</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Introducir campo</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Introducir local</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Introducir la variable de consulta</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Nombre de grupo no válido: nombres de grupo deben comenzar con un carácter de palabra</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Convertir la clase en "abstract"</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Hacer estático</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Invertir condicional</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">con formato incorrecto</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Escape de carácter incorrecto \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Referencia atrás con nombre \k&lt;...&gt; mal formado</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Combinar con la instrucción "{0}" anidada</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Combinar con la instrucción "{0}" siguiente</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Combinar con la instrucción "{0}" externa</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Combinar con la instrucción "{0}" anterior</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} debe devolver una secuencia que admita operaciones de lectura y búsqueda.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Falta de carácter de control</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Mover contenido al espacio de nombres...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Mover el archivo a "{0}"</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Mover el archivo a la carpeta raíz del proyecto</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Mover a espacio de nombres...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Cuantificador anidado {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">No hay ninguna ubicación válida para insertar una llamada de método.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">No hay suficientes )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operadores</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">No se puede actualizar la referencia de propiedad</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Extraer "{0}"</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Extraer "{0}" hasta "{1}"</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Extraer miembros hasta el tipo de base...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Extraer miembros a una nueva clase base...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Cuantificador {x, y} después de nada</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">referencia al grupo no definido</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Referencia a nombre de grupo no definido {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Referencia al número de grupo indefinido {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Todos los caracteres de control. Esto incluye las categorías Cc, Cf, Cs, Co y Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">todos los caracteres de control</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Todas las marcas diacríticas. Esto incluye las categorías Mn, Mc y Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">todas las marcas diacríticas</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Todos los caracteres de letra. Esto incluye los caracteres Lu, Ll, Lt, Lm y Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">todos los caracteres de letra</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Todos los números. Esto incluye las categorías Nd, Nl y No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">todos los números</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Todos los caracteres de puntuación. Esto incluye las categorías Pc, Pd, Ps, Pe, Pi, Pf y Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">todos los caracteres de puntuación</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Todos los caracteres separadores. Esto incluye las categorías Zs, Zl y Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">todos los caracteres separadores</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Todos los símbolos. Esto incluye las categorías Sm, Sc, Sk y So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">todos los símbolos</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Puede usar el carácter de barra vertical (|) para hacerlo coincidir con algún patrón de una serie, donde el carácter | el carácter separa cada patrón.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">alternación</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">El carácter de punto (.) coincide con cualquier carácter excepto \n (el carácter de nueva línea, \u000A). Si la opción RegexOptions.SingleLine modifica un patrón de expresión regular o si la parte del patrón que contiene el carácter . se modifica mediante la opción "s", . coincide con cualquier carácter.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">cualquier carácter</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Los grupos atómicos (conocidos en algunos otros motores de expresiones regulares como subexpresión sin vuelta atrás, subexpresión atómica o subexpresión de una sola vez) deshabilitan la vuelta atrás. El motor de expresiones regulares coincidirá con tantos caracteres de la cadena de entrada como pueda. Cuando no sean posibles más coincidencias, no volverá atrás para intentar coincidencias de patrones alternativas. (Es decir, la subexpresión coincide únicamente con las cadenas que coincidan solo con la subexpresión; no intenta buscar coincidencias con una cadena en función de la subexpresión y de todas las subexpresiones que la sigan). Se recomienda esta opción si sabe que la vuelta atrás no será correcta. Evitar que el motor de expresiones regulares realice búsquedas innecesarias mejora el rendimiento.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">grupo atómico</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Coincide con un carácter de retroceso, \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">carácter de retroceso</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Una definición de grupo de equilibrio elimina la definición de un grupo definido anteriormente y almacena, en el grupo actual, el intervalo entre el grupo definido anteriormente y el grupo actual. "name1" es el grupo actual (opcional), "name2" es un grupo definido anteriormente y "subexpression" es cualquier patrón de expresión regular válido. La definición del grupo de equilibrio elimina la definición de name2 y almacena el intervalo entre name2 y name1 en name1. Si no se define un grupo de name2, la coincidencia se busca con retroceso. Como la eliminación de la última definición de name2 revela la definición anterior de name2, esta construcción permite usar la pila de capturas para el grupo name2 como contador para realizar el seguimiento de las construcciones anidadas, como los paréntesis o los corchetes de apertura y cierre. La definición del grupo de equilibrio usa "name2" como una pila. El carácter inicial de cada construcción anidada se coloca en el grupo y en su colección Group.Captures. Cuando coincide el carácter de cierre, se quita el carácter de apertura correspondiente del grupo y se quita uno de la colección Captures. Una vez que se han encontrado coincidencias de los caracteres de apertura y cierre de todas las construcciones anidadas, "name1" se queda vacío.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">grupo de equilibrio</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">grupo base</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Coincide con un carácter de campana (alarma), \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">carácter de campana</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Coincide con un carácter de retorno de carro, \u000D. Tenga en cuenta que \r no equivale al carácter de nueva línea, \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">carácter de retorno de carro</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">La sustracción de la clase de caracteres produce un conjunto de caracteres que es el resultado de excluir los caracteres en una clase de caracteres de otra clase de caracteres. "base_group" es un grupo o intervalo de caracteres positivos o negativos. El componente "excluded_group" es otro grupo de caracteres positivos o negativos, u otra expresión de sustracción de clases de caracteres (es decir, puede anidar expresiones de sustracción de clases de caracteres).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">sustracción de clase de caracteres</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">grupo de caracteres</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">comentario</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Este elemento del lenguaje intenta coincidir con uno de dos patrones en función de si puede coincidir con un patrón inicial. "expression" es el patrón inicial que debe coincidir, "yes" es el patrón que debe coincidir si la expresión coincide y "no" es el patrón opcional que debe coincidir si la expresión no coincide.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">coincidencia de expresión condicional</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Este elemento del lenguaje intenta coincidir con uno de dos patrones en función de si coincide con un grupo de captura especificado. "name" es el nombre (o número) de un grupo de capturas, "yes" es la expresión que debe coincidir si "name" (o "number") tiene una coincidencia y "no" es la expresión opcional para la coincidencia si no la tiene.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">coincidencia de grupo condicional</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">El delimitador \G especifica que se debe producir una coincidencia en el punto en el que finalizó la coincidencia anterior. Cuando se usa este delimitador con el método Regex.Matches o Match.NextMatch, se garantiza que todas las coincidencias sean contiguas.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">coincidencias contiguas</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Coincide con un carácter de control ASCII, donde X es la letra del carácter de control. Por ejemplo, \cC es CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">carácter de control</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d corresponde a cualquier dígito decimal. Equivale al patrón de expresión regular \P{Nd}, que incluye los dígitos decimales estándar 0-9, así como los dígitos decimales de otros conjuntos de caracteres. Si se especifica un comportamiento compatible con ECMAScript, \d equivale a [0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">carácter de dígito decimal</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Un signo de número (#) marca un comentario en modo x, que comienza en el carácter # sin escape al final del patrón de expresión regular y continúa hasta el final de la línea. Para usar esta construcción, debe habilitar la opción x (mediante opciones en línea) o proporcionar el valor RegexOptions.IgnorePatternWhitespace al parámetro option al crear una instancia del objeto Regex o llamar a un método estático Regex.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">comentario de fin de línea</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">El delimitador \Z especifica que debe producirse una coincidencia al final de la cadena de entrada. Al igual que el elemento de lenguaje $, \z omite la opción RegexOptions.Multiline. A diferencia del elemento de lenguaje \Z, \z no coincide con un carácter \n al final de una cadena. Por lo tanto, solo puede coincidir con la última línea de la cadena de entrada.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">solo el fin de la cadena</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">El delimitador \Z especifica que debe producirse una coincidencia al final de la cadena de entrada o antes de \n al final de la cadena de entrada. Es idéntico al delimitador $, excepto que \Z omite la opción RegexOptions.Multiline. Por lo tanto, en una cadena de varias líneas, solo puede coincidir con el final de la última línea o con la última línea antes de \n. El delimitador \Z coincide con \n, pero no con \r\n (la combinación de caracteres CR/LF). Para hacerlo coincidir con CR/LF, incluya \r?\Z en el patrón de expresión regular.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">fin de cadena o antes de terminar la línea nueva</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">El delimitador $ especifica que el patrón anterior debe aparecer al final de la cadena de entrada, o antes de \n al final de la cadena de entrada. Si usa $ con la opción RegexOptions.Multiline, la coincidencia también puede producirse al final de una línea. El limitador $ coincide con \n pero no coincide con \r\n (la combinación de retorno de carro y caracteres de nueva línea, o CR/LF). Para hacer coincidir la combinación de caracteres CR/LF, incluya \r?$ en el patrón de expresión regular.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">fin de cadena o línea</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Coincide con un carácter de escape, \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">carácter de escape</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">grupo excluido</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">expresión</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Coincide con un carácter de avance de página, \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">carácter de avance de página</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Esta construcción de agrupación aplica o deshabilita las opciones especificadas dentro de una subexpresión. Las opciones de habilitación se especifican después del signo de interrogación y las opciones de deshabilitación después del signo menos. Las opciones permitidas son:\: i Usar la coincidencia sin distinción de mayúsculas y minúsculas. m Usar el modo de varias líneas, donde ^ y $ coinciden con el principio y el final de cada línea (en lugar del principio y del final de la cadena de entrada). s Usar el modo de una sola línea, donde el punto (.) coincide con todos los caracteres (en lugar de todos los caracteres excepto \n). n No capturar grupos sin nombre. Las únicas capturas válidas son explícitamente grupos con nombre o numerados con el formato (? &lt;name&gt; subexpresión). x Excluir el espacio en blanco sin escape del patrón y habilitar los comentarios después de un signo de número (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">opciones de grupo</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Coincide con un carácter ASCII, donde ## es un código de carácter hexadecimal de dos dígitos.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">escape hexadecimal</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">La construcción (comentario ?#) permite incluir un comentario alineado en una expresión regular. El motor de expresiones regulares no usa ninguna parte del comentario en la coincidencia de patrones, aunque el comentario está incluido en la cadena devuelta por el método Regex.ToString. El comentario termina en el primer paréntesis de cierre.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">comentario insertado</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Habilita o deshabilita las opciones de coincidencia de patrones específicas para el resto de una expresión regular. Las opciones de habilitación se especifican después del signo de interrogación y las opciones de deshabilitación después del signo menos. Las opciones permitidas son: i Usar la coincidencia sin distinción de mayúsculas y minúsculas. m Usar el modo de varias líneas, donde ^ y $ coinciden con el principio y el final de cada línea (en lugar del principio y del final de la cadena de entrada). s Usar el modo de una sola línea, donde el punto (.) coincide con todos los caracteres (en lugar de todos los caracteres excepto \n). n No capturar grupos sin nombre. Las únicas capturas válidas son explícitamente o grupos con nombre o número con el formato (? &lt;name&gt; subexpresión). x Excluir el espacio en blanco sin escape del patrón y habilitar los comentarios después de un signo de número (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">opciones insertadas</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Problema de Regex: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">letra, minúscula</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">letra, modificador</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">letra, otro</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">letra, tipo título</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">letra, mayúscula</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">marca, de cierre</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">marca, sin espaciado</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">marca, espaciado combinable</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">El cuantificador {n,}? coincide con el elemento anterior al menos n veces, donde n es cualquier entero, pero el menor número de veces que sea posible. Es el homólogo diferido del cuantificador expansivo {n,}</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">coincidir al menos "n" veces (diferido)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">El cuantificador {n,} coincide con el elemento anterior al menos n veces, donde n es un entero. {n,} es un cuantificador expansivo cuyo equivalente diferido es {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">coincidir al menos "n" veces</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">El cuantificador {n,m}? coincide con el elemento anterior entre n y m veces, donde n y m son enteros, pero el menor número de veces que sea posible. Es el homólogo diferido del cuantificador expansivo {n,m}</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">coincidir al menos "n" veces (diferido)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">El cuantificador {n, m} coincide con el elemento anterior n veces como mínimo, pero no más de m veces, donde n y m son enteros. {n,m} es un cuantificador expansivo cuyo equivalente diferido es {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">coincidir entre "m" y "n" veces</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">El cuantificador {n}? coincide exactamente n veces con el elemento anterior, donde n es un entero. Es el equivalente diferido del cuantificador expansivo {n}+</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">coincidir exactamente "n" veces (diferido)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">El cuantificador {n} coincide exactamente n veces con el elemento anterior, donde n es un entero. {n} es un cuantificador expansivo cuyo equivalente diferido es {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">coincidir exactamente "n" veces</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">El cuantificador +? coincide con el elemento anterior cero o más veces, pero el menor número de veces que sea posible. Es el homólogo diferido del cuantificador expansivo +</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">coincidir una o varias veces (diferido)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">El cuantificador + coincide con el elemento anterior una o más veces. Es equivalente al cuantificador {1,}. + es un cuantificador expansivo cuyo equivalente diferido es +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">coincidir una o varias veces</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">El cuantificador *? coincide con el elemento anterior cero o más veces, pero el menor número de veces que sea posible. Es el homólogo diferido del cuantificador expansivo *</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">coincidir cero o más veces (diferido)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">El cuantificador * coincide con el elemento anterior cero o más veces. Es equivalente al cuantificador {0,}. * es un cuantificador expansivo cuyo equivalente diferido es *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">coincidir cero o más veces</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">El cuantificador ?? coincide con el elemento anterior cero veces o una, pero el menor número de veces que sea posible. Es el homólogo diferido del cuantificador expansivo ?</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">coincidir cero veces o una vez (diferido)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">El cuantificador ? coincide con el elemento anterior cero veces o una. Es equivalente al cuantificador {0,1}. ? es un cuantificador expansivo cuyo equivalente diferido es ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">coincidir cero veces o una vez</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Esta construcción de agrupación captura una "subexpresión" coincidente, donde "subexpresión" es cualquier patrón de expresión regular válido. Las capturas que usan paréntesis se numeran automáticamente de izquierda a derecha según el orden de los paréntesis de apertura en la expresión regular, a partir de uno. La captura con número cero es el texto coincidente con el patrón de expresión regular completo.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">subexpresión coincidente</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">nombre</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">nombre o número</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Una referencia inversa con nombre o numerada. "name" es el nombre de un grupo de captura definido en el patrón de expresión regular.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">referencia inversa con nombre</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Captura una subexpresión coincidente y le permite acceder a ella por el nombre o el número. "name" es un nombre de grupo válido y "subexpression" es cualquier patrón de expresión regular válido. "name" no debe contener ningún carácter de puntuación y no puede comenzar con un número. Si el parámetro RegexOptions de un método de coincidencia de patrones de expresión regular incluye la marca RegexOptions.ExplicitCapture, o si la opción n se aplica a esta subexpresión, la única forma de capturar una subexpresión consiste en asignar un nombre explícito a los grupos de captura.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">subexpresión coincidente con nombre</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Un grupo de caracteres negativos especifica una lista de caracteres que no deben aparecer en una cadena de entrada para que se produzca una correspondencia. La lista de caracteres se especifica individualmente. Se pueden concatenar dos o más intervalos de caracteres. Por ejemplo, para especificar el intervalo de dígitos decimales de "0" a "9", el intervalo de letras minúsculas de "a" a "f" y el intervalo de letras mayúsculas de "A" a "F", utilice [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">grupo de caracteres negativos</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Un intervalo de caracteres negativos especifica una lista de caracteres que no deben aparecer en una cadena de entrada para que se produzca una correspondencia. "firstCharacter" es el carácter con el que comienza el intervalo y "lastCharacter" es el carácter con el que finaliza el intervalo. Se pueden concatenar dos o más intervalos de caracteres. Por ejemplo, para especificar el intervalo de dígitos decimales de "0" a "9", el intervalo de letras minúsculas de "a" a "f" y el intervalo de letras mayúsculas de "A" a "F", utilice [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">intervalo de caracteres negativos</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">La construcción de expresión regular \P{ name } coincide con cualquier carácter que no pertenezca a una categoría general o bloque con nombre de Unicode, donde el nombre es la abreviatura de la categoría o el nombre del bloque con nombre.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">categoría de Unicode negativa</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Coincide con un carácter de nueva línea, \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">carácter de nueva línea</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">no</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D coincide con cualquier carácter que no sea un dígito. Equivalente al patrón de expresión regular \P{Nd}. Si se especifica un comportamiento compatible con ECMAScript, \D equivale a [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">carácter que no es un dígito</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S coincide con cualquier carácter que no sea un espacio en blanco. Equivalente al patrón de expresión regular [^\f\n\r\t\v\x85\p{Z}], o el contrario del modelo de expresión regular equivalente a \s, que corresponde a los caracteres de espacio en blanco. Si se especifica un comportamiento compatible con ECMAScript, \S equivale a [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">carácter que no es un espacio en blanco</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">El delimitador \B especifica que la coincidencia no se debe producir en un límite de palabras. Es el opuesto del delimitador \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">límite que no es una palabra</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W coincide con cualquier carácter que no sea una palabra. Coincide con cualquier carácter excepto los de las siguientes categorías Unicode: Ll Letra, minúscula Lu Letra, mayúscula Lt Letra, tipo título Lo Letra, otros Lm Letra, modificador Mn Marca, no espaciado Nd Número, dígito decimal Pc Puntuación, conector Si se especifica un comportamiento compatible con ECMAScript, \W equivale a [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">carácter que no es una palabra</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Esta construcción no captura la subcadena que coincide con una subexpresión: La construcción de grupo que no captura se usa normalmente cuando un cuantificador se aplica a un grupo, pero las subcadenas capturadas por el grupo no tienen ningún interés. Si una expresión regular incluye construcciones de agrupación anidadas, una construcción de grupo que no captura externa no se aplica a las construcciones de grupo anidadas internas.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">Grupo que no captura</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">número, dígito decimal</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">número, letra</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">número, otro</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Una referencia inversa numerada, donde "number" es la posición ordinal del grupo de captura en la expresión regular. Por ejemplo, \4 coincide con el contenido del cuarto grupo de captura. Existe una ambigüedad entre los códigos de escape octales (como \16) y las referencias inversas de \number que usan la misma notación. Si la ambigüedad es un problema, puede utilizar la notación \k&lt;name&gt;, que no es ambigua y no se puede confundir con códigos de caracteres octales. Del mismo modo, los códigos hexadecimales como \xdd son inequívocos y no se pueden confundir con referencias inversas.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">referencia inversa numerada</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">otro, control</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">otro, formato</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">otro, no asignado</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">otro, uso privado</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">otro, suplente</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Un grupo de caracteres positivos especifica una lista de caracteres, cualquiera de los cuales puede aparecer en una cadena de entrada para que se produzca una coincidencia.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">grupo de caracteres positivos</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Un intervalo de caracteres positivo especifica un intervalo de caracteres, cualquiera de los cuales puede aparecer en una cadena de entrada para que se produzca una coincidencia. "firstCharacter" es el carácter con el que comienza el intervalo y "lastCharacter" es el carácter cpm el que finaliza el intervalo. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">intervalo de caracteres positivos</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">puntuación, cerrar</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">puntuación, conector</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">puntuación, guion</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">puntuación, comilla final</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">puntuación, comilla inicial</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">puntuación, abrir</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">puntuación, otro</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">separador, línea</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">separador, párrafo</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">separador, espacio</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">El delimitador \A especifica que debe producirse una coincidencia al principio de la cadena de entrada. Es idéntico al delimitador ^, excepto que \A omite la opción RegexOptions.Multiline. Por lo tanto, solo puede coincidir con el inicio de la primera línea en una cadena de entrada de varias líneas.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">solo el inicio de la cadena</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">El delimitador ^ especifica que el siguiente patrón debe comenzar en la primera posición de carácter de la cadena. Si usa ^ con la opción RegexOptions.Multiline, la coincidencia debe producirse al principio de cada línea.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">Inicio de cadena o línea</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">subexpresión</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">símbolo, moneda</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">símbolo, matemático</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">símbolo, modificador</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">símbolo, otro</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Coincide con un carácter de tabulación, \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">carácter de tabulación</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">El constructor de expresión regular \p{ name } coincide con cualquier carácter que pertenezca a una categoría general o bloque con nombre de Unicode, donde el nombre es la abreviatura de la categoría o el nombre del bloque con nombre.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">categoría unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Coincide con una unidad de código UTF-16 cuyo valor es #### hexadecimal.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">escape unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Categoría General de Unicode: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Coincide con un carácter de tabulación vertical, \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">carácter de tabulación vertical</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s coincide con cualquier carácter de espacio en blanco. Equivale a las siguientes secuencias de escape y categorías Unicode: \f El carácter de avance de página, \u000C \n El carácter de nueva línea, \u000A \r El carácter de retorno de carro, \u000D \t El carácter de tabulación, \u0009 \v El carácter de tabulación vertical, \u000B \x85 El carácter de puntos suspensivos o NEXT LINE (NEL) (...), \u0085 \p{Z} Corresponde a cualquier carácter separador Si se especifica un comportamiento compatible con ECMAScript, \s equivale a [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">carácter de espacio en blanco</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">El delimitador \b especifica que la coincidencia debe producirse en un límite entre un carácter de palabra (el elemento de lenguaje \w) y un carácter que no sea de palabra (el elemento del lenguaje \W). Los caracteres de palabra se componen de caracteres alfanuméricos y de subrayado; un carácter que no es de palabra es cualquier carácter que no sea alfanumérico o de subrayado. La coincidencia también puede producirse en un límite de palabra al principio o al final de la cadena. El delimitador \b se usa con frecuencia para garantizar que una subexpresión coincide con una palabra completa en lugar de solo con el principio o el final de una palabra.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">límite de palabra</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w coincide con cualquier carácter de palabra. Un carácter de palabra forma parte de cualquiera de las siguientes categorías Unicode: Ll Letra, minúscula Lu Letra, mayúscula Lt Letra, tipo título Lo Letra, otros Lm Letra, modificador Mn Marca, no espaciado Nd Número, dígito decimal Pc Puntuación, conector Si se especifica un comportamiento compatible con ECMAScript, \w equivale a [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">carácter de palabra</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">sí</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Una aserción de búsqueda anticipada (lookahead) negativa de ancho cero, donde para que la coincidencia sea correcta, la cadena de entrada no debe coincidir con el patrón de expresión regular en la subexpresión. La cadena coincidente no se incluye en el resultado de la coincidencia. Una aserción de búsqueda anticipada (lookahead) negativa de ancho cero se utiliza normalmente al principio o al final de una expresión regular. Al comienzo de una expresión regular, puede definir un patrón específico que no debe coincidir cuando el comienzo de la expresión regular define un patrón similar pero más general para la coincidencia. En este caso, se suele usar para limitar el seguimiento con retroceso. Al final de una expresión regular, puede definir una subexpresión que no se puede producir al final de una coincidencia.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">aserción de búsqueda anticipada (lookahead) negativa de ancho cero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Una aserción de búsqueda retrasada (lookbehind) negativa de ancho cero, donde para que una coincidencia sea correcta, "subexpresión" no se debe producir en la cadena de entrada a la izquierda de la posición actual. Cualquier subcadena que no coincida con "subexpresión" no se incluye en el resultado de la coincidencia. Las aserciones de búsqueda retrasada (lookbehind) negativas de ancho cero se usan normalmente al principio de las expresiones regulares. El patrón que definen excluye una coincidencia en la cadena que aparece a continuación. También se usan para limitar el seguimiento con retroceso cuando el último o los últimos caracteres de un grupo capturado no deban ser uno o varios de los caracteres que coinciden con el patrón de expresión regular de ese grupo.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">aserción de búsqueda retrasada (lookbehind) negativa de ancho cero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Una aserción de búsqueda anticipada (lookahead) positiva de ancho cero, donde para que una coincidencia sea correcta, la cadena de entrada debe coincidir con el modelo de expresión regular en "subexpresión". La subcadena coincidente no está incluida en el resultado de la coincidencia. Una aserción de búsqueda anticipada (lookahead) positiva de ancho cero no tiene seguimiento con retroceso. Normalmente, una aserción de búsqueda anticipada (lookahead) positiva de ancho cero se encuentra al final de un patrón de expresión regular. Define una subcadena que debe encontrarse al final de una cadena para que se produzca una coincidencia, pero que no debe incluirse en la coincidencia. También resulta útil para evitar un seguimiento con retroceso excesivo. Puede usar una aserción de búsqueda anticipada (lookahead) positiva de ancho cero para asegurarse de que un grupo capturado en particular empiece con texto que coincida con un subconjunto del patrón definido para ese grupo capturado.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">aserción de búsqueda anticipada (lookahead) positiva de ancho cero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Una aserción de búsqueda retrasada (lookbehind) positiva de ancho cero, donde para que una coincidencia sea correcta, "subexpresión" debe aparecer en la cadena de entrada a la izquierda de la posición actual. "subexpresión" no se incluye en el resultado de la coincidencia. Una aserción de búsqueda retrasada (lookbehind) positiva de ancho cero no tiene seguimiento con retroceso. Las aserciones de búsqueda retrasada (lookbehind) positivas de ancho cero se usan normalmente al principio de las expresiones regulares. El patrón que definen es una condición previa para una coincidencia, aunque no forma parte del resultado de la coincidencia.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">aserción de búsqueda retrasada (lookbehind) positiva de ancho cero</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Las signaturas de método relacionadas encontradas en los metadatos no se actualizarán.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">No se admite la eliminación del documento</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Quitar el modificador "async"</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Quitar conversiones innecesarias</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Quitar variables no utilizadas</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Reemplazar "{0}" por "{1}"</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Resolver los marcadores de conflicto</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Edición superficial</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Ordenar modificadores de accesibilidad</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Dividir en instrucciones "{0}" consecutivas</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Dividir en instrucciones "{0}" anidadas</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">La secuencia debe admitir las operaciones de lectura y búsqueda.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Suprimir {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: liberar los recursos no administrados (objetos no administrados) y reemplazar el finalizador</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: reemplazar el finalizador solo si "{0}" tiene código para liberar los recursos no administrados</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">El tipo de destino coincide con</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">El ensamblado "{0}" que contiene el tipo "{1}" hace referencia a .NET Framework, lo cual no se admite.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">La selección contiene una llamada a una función local sin la declaración correspondiente.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Demasiados | en (?()|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Demasiados )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">No se puede leer el archivo de código fuente "{0}" o el PDB compilado para el proyecto que lo contiene. Los cambios realizados en este archivo durante la depuración no se aplicarán hasta que su contenido coincida con el del código fuente compilado.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Propiedad desconocida</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Propiedad desconocida '{0}'</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Carácter de control desconocido</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Secuencia de escape no reconocida \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Construcción de agrupación no reconocida</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Conjunto [] sin terminar</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Comentario (?#...) sin terminar</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Desajustar todos los argumentos</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Desajustar todos los parámetros</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Desajustar todos los argumentos y aplicarles sangría</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Desajustar todos los parámetros y aplicarles sangría</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Desajustar la lista de argumentos</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Desencapsular la cadena de llamadas</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Desajustar la expresión</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Desajustar la lista de parámetros</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Usar cuerpo del bloque para las expresiones lambda</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Usar órgano de expresión para expresiones lambda</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Utilizar cadenas verbatim interpoladas</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Valor:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Advertencia: La semántica puede cambiar al convertir la instrucción.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Encapsular y alinear la cadena de llamadas</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Expresión de encapsulado y alineación</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Encapsular y alinear la cadena de llamadas larga</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Encapsular la cadena de llamadas</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Ajustar todos los argumentos</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Ajustar todos los parámetros</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Ajustar la expresión</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Desajustar la lista larga de argumentos</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Encapsular la cadena de llamadas larga</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Ajustar la lista larga de parámetros</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Ajuste</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Puede usar la barra de navegación para cambiar contextos.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}' no puede ser nulo ni estar vacío.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">"{0}" no puede ser NULL ni un espacio en blanco.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">"{0}" no es NULL aquí.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">"{0}" puede ser NULL aquí.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">La diezmillonésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "fffffff" representa los siete dígitos más significativos de la fracción de segundos, es decir, las diez millonésimas de segundo de un valor de fecha y hora. Aunque es posible mostrar las diez millonésimas de un componente de segundos de un valor de hora, puede que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">La diezmillonésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "FFFFFFF" representa los siete dígitos más significativos de la fracción de segundos, es decir, las diez millonésimas de segundo de un valor de fecha y hora. Sin embargo, no se muestran los ceros finales ni los dígitos de siete ceros. Aunque es posible mostrar las diez millonésimas de un componente de segundos de un valor de hora, puede que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1 millonésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "ffffff" representa los seis dígitos más significativos de la fracción de segundos, es decir, las millonésimas de segundo de un valor de fecha y hora. Aunque es posible mostrar las millonésimas de un componente de segundos de un valor de hora, puede que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1 millonésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "FFFFFF" representa los seis dígitos más significativos de la fracción de segundos, es decir, las millonésimas de segundo de un valor de fecha y hora. Sin embargo, no se muestran los ceros finales ni los dígitos de seis ceros. Aunque es posible mostrar las millonésimas de un componente de segundos de un valor de hora, puede que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">1 cienmilésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "fffff" representa los cinco dígitos más significativos de la fracción de segundos, es decir, las cienmilésimas de segundo de un valor de fecha y hora. Aunque se pueden mostrar las cienmilésimas de un componente de segundos de un valor de hora, es posible que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">1 cienmilésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "FFFFF" representa los cinco dígitos más significativos de la fracción de segundos, es decir, las cienmilésimas de segundo de un valor de fecha y hora. Sin embargo, no se muestran los ceros finales ni los dígitos de cinco ceros. Aunque se pueden mostrar las cienmilésimas de un componente de segundos de un valor de hora, es posible que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">1 diezmilésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "ffff" representa los cuatro dígitos más significativos de la fracción de segundos, es decir, las diezmilésimas de segundo de un valor de fecha y hora. Aunque es posible mostrar las diezmilésimas de un componente de segundo de un valor de hora, puede que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT versión 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">1 diezmilésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "FFFF" representa los cuatro dígitos más significativos de la fracción de segundos, es decir, las diezmilésimas de segundo de un valor de fecha y hora. Sin embargo, no se muestran los ceros finales ni los dígitos de cuatro ceros. Aunque es posible mostrar la diezmilésima parte de un segundo de un valor de hora, puede que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1 milésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">El especificador de formato personalizado "fff" representa los tres dígitos más significativos de la fracción de segundos, es decir, los milisegundos de un valor de fecha y hora.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1 milésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">El especificador de formato personalizado "FFF" representa los tres dígitos más significativos de la fracción de segundos, es decir, los milisegundos de un valor de fecha y hora. Sin embargo, no se muestran los ceros finales ni los dígitos de tres ceros.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">1 cienmilésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">El especificador de formato personalizado "ff" representa los dos dígitos más significativos de la fracción de segundos, es decir, la centésima parte de segundo de un valor de fecha y hora.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">1 cienmilésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">El especificador de formato personalizado "FF" representa los dos dígitos más significativos de la fracción de segundos, es decir, la centésima parte de un segundo de un valor de fecha y hora. Sin embargo, no se muestran los ceros finales ni los dígitos de dos ceros.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">1 diezmilésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">1 diezmilésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">El especificador de formato personalizado "F" representa el dígito más significativo de la fracción de segundos, es decir, representa las décimas de segundo en un valor de fecha y hora. Si el dígito es cero, no se muestra nada. Si el especificador de formato "F" se usa sin otros especificadores de formato, se interpreta como el especificador de formato de fecha y hora estándar "F". El número de especificadores de formato "F" que se usan con los métodos ParseExact, TryParseExact, ParseExact o TryParseExact indica el número máximo de dígitos más significativos de la fracción de segundos que puede haber para analizar correctamente la cadena.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">Reloj de 12 horas (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">El especificador de formato personalizado "h" representa la hora como un número del 1 al 12, es decir, mediante un reloj de 12 horas que cuenta las horas enteras desde la medianoche o el mediodía. Una hora determinada después de la medianoche no se distingue de la misma hora después del mediodía. La hora no se redondea y el formato de una hora de un solo dígito es sin un cero inicial. Por ejemplo, a las 5:43 de la mañana o de la tarde, este especificador de formato personalizado muestra "5". Si el especificador de formato "h" se usa sin otros especificadores de formato personalizado, se interpreta como un especificador de formato de fecha y hora estándar y produce una excepción FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">Reloj de 12 horas (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">El especificador de formato personalizado "hh" (más cualquier número de especificadores "h" adicionales) representa la hora como un número de 01 al 12, es decir, mediante un reloj de 12 horas que cuenta las horas enteras desde la medianoche o el mediodía. Una hora determinada después de la medianoche no se distingue de la misma hora después del mediodía. La hora no se redondea y el formato de una hora de un solo dígito es con un cero inicial. Por ejemplo, a las 5:43 de la mañana o de la tarde, este especificador de formato muestra "05".</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">Reloj de 24 horas (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">El especificador de formato personalizado "H" representa la hora como un número del 0 al 23; es decir, la hora se representa mediante un reloj de 24 horas de base cero que cuenta las horas desde la medianoche. Una hora con un solo dígito tiene un formato sin un cero inicial. Si el especificador de formato "H" se usa sin otros especificadores de formato personalizado, se interpreta como un especificador de formato de fecha y hora estándar y produce una excepción FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">Reloj de 24 horas (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">El especificador de formato personalizado "HH" (más cualquier número de especificadores "H" adicionales) representa la hora como un número de 00 a 23, es decir, mediante un reloj de 24 horas de base cero que cuenta las horas desde la medianoche. El formato de una hora de un solo dígito es con un cero inicial.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">código</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">separador de fecha</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">El especificador de formato personalizado "/" representa el separador de fecha, que se usa para diferenciar los años, los meses y los días. El separador de fecha localizado apropiado se recupera de la propiedad DateTimeFormatInfo.DateSeparator de la referencia cultural actual o especificada. Nota: Para cambiar el separador de fecha de una cadena de fecha y hora determinada, especifique el carácter separador dentro de un delimitador de cadena literal. Por ejemplo, la cadena de formato personalizado mm'/'dd'/'aaaa genera una cadena de resultado en la que "/" se usa siempre como el separador de fecha. Para cambiar el separador de fecha de todas las fechas de una referencia cultural, cambie el valor de la propiedad DateTimeFormatInfo.DateSeparator de la referencia cultural actual, o bien cree una instancia de un objeto DateTimeFormatInfo, asigne el carácter a su propiedad DateSeparator y llame a una sobrecarga del método de formato que incluye un parámetro IFormatProvider. Si el especificador de formato "/" se usa sin otros especificadores de formato personalizado, se interpreta como un especificador de formato de fecha y hora estándar y produce una excepción FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">día del mes (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">El especificador de formato personalizado "d" representa el día del mes como un número del 1 al 31. Un día con un solo dígito tiene un formato sin un cero inicial. Si el especificador de formato "d" se usa sin otros especificadores de formato personalizados, se interpreta como el especificador de formato de fecha y hora estándar "d".</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">día del mes (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">La cadena de formato personalizado "dd" representa el día del mes como un número del 01 al 31. Un día con un solo dígito tiene un formato con un cero inicial.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">día de la semana (abreviado)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">El especificador de formato personalizado "ddd" representa el nombre abreviado del día de la semana. El nombre abreviado localizado del día de la semana se recupera de la propiedad DateTimeFormatInfo.AbbreviatedDayNames de la referencia cultural actual o especificada.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">día de la semana (completo)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">El especificador de formato personalizado "dddd" (más cualquier número de especificadores "d" adicionales) representa el nombre completo del día de la semana. El nombre localizado del día de la semana se recupera de la propiedad DateTimeFormatInfo.DayNames de la referencia cultural actual o especificada.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">descartar</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">de metadatos</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">fecha/hora completa en formato largo</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">El especificador de formato estándar "F" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.FullDateTimePattern actual. Por ejemplo, la cadena de formato personalizado para la referencia cultural invariable es "dddd, dd MMMM aaaa HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">fecha/hora completa en formato corto</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Especificador de formato de fecha completa y hora corta ("f") El especificador de formato estándar "f" representa una combinación de los patrones de fecha larga ("D") y hora corta ("t"), separados por un espacio.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">fecha y hora general en formato largo</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">El especificador de formato estándar "G" representa una combinación de los patrones de fecha corta ("d") y hora larga ("T"), separados por un espacio.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">fecha y hora general en formato corto</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">El especificador de formato estándar "g" representa una combinación de los patrones de fecha corta ("d") y hora corta ("t"), separados por un espacio.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">sobrecarga genérica</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">sobrecargas genéricas</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">en {0} ({1} - {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">en el origen (atributo)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">fecha larga</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">El especificador de formato estándar "D" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.LongDatePattern actual. Por ejemplo, la cadena de formato personalizado para la referencia cultural invariable es "dddd, dd MMMM aaaa".</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">hora larga</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">El especificador de formato estándar "T" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.LongTimePattern de una referencia cultural específica. Por ejemplo, la cadena de formato personalizado para la referencia cultural invariable es "HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} "{1}"</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">minuto (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">El especificador de formato personalizado "m" representa el minuto como un número del 0 al 59. El minuto representa los minutos enteros que han transcurrido desde la última hora. El formato de un minuto con un solo dígito se representa sin cero inicial. Si el especificador de formato "m" se usa sin otros especificadores de formato personalizado, se interpreta como el especificador de formato de fecha y hora estándar "m".</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">minuto (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">El especificador de formato personalizado "mm" (más cualquier número de especificadores "m" adicionales) representa el minuto como un número del 00 al 59. El minuto representa los minutos enteros que han transcurrido desde la última hora. El formato de un minuto con un solo dígito se representa sin cero inicial.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">mes (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">El especificador de formato personalizado "M" representa el mes como un número del 1 al 12 (o de 1 a 13 para los calendarios con 13 meses). El formato de un mes con un solo dígito se representa sin cero inicial. Si el especificador de formato "M" se usa sin otros especificadores de formato personalizado, se interpreta como el especificador de formato de fecha y hora estándar "M".</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">mes (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">El especificador de formato personalizado "MM" representa el mes como un número del 01 al 12 (o de 1 a 13 para los calendarios con 13 meses). El formato de un mes con un solo dígito se representa sin cero inicial.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">mes (abreviado)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">El especificador de formato personalizado "MMM" representa el nombre abreviado del mes. El nombre abreviado adaptado del mes se recupera de la propiedad DateTimeFormatInfo.AbbreviatedMonthNames de la referencia cultural actual o especificada.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">día del mes</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">El especificador de formato estándar "M" o "m" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.MonthDayPattern actual. Por ejemplo, la cadena de formato personalizado para la referencia cultural invariable es "MMMM dd".</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">mes (completo)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">El especificador de formato personalizado "MMMM" representa el nombre completo del mes. El nombre adaptado del mes se recupera de la propiedad DateTimeFormatInfo.AbbreviatedMonthNames de la referencia cultural actual o especificada.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">sobrecarga</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">sobrecargas</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} Palabra clave</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Encapsular campo: '{0}' (y usar propiedad)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Encapsular campo: '{0}' (pero seguir usándolo)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Encapsular campos (y usar propiedad)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Encapsular campos (pero seguir usando el campo)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">No se pudo extraer la interfaz: la selección no está dentro de una clase/interfaz/estructura.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">No se pudo extraer la interfaz: el tipo no contiene ningún miembro que se pueda extraer a una interfaz.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">no se puede construir el árbol final</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">El tipo de los parámetros o el tipo de valor devuelto no puede ser un tipo anónimo: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">La selección no contiene instrucciones activas.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">La selección contiene un error o un tipo desconocido.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">El parámetro de tipo '{0}' está oculto por otro parámetro de tipo '{1}'.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">La dirección de una variable se usa dentro del código seleccionado.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">La asignación a campos de solo lectura se debe hacer en un constructor: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">el código generado se superpone con la parte oculta del código</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Agregar parámetros opcionales a "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Agregar parámetros a "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Generar el constructor delegado '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Generar el constructor '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Generar campo asignando constructor '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Generar Equals y GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Generar "Equals(object)"</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Generar "GetHashCode()"</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Generar constructor en '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Generar todo</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Generar miembro de enumeración "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Generar constante "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Generar la propiedad de solo lectura '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Generar la propiedad '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Generar el campo de solo lectura '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Generar campo "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Generar la variable local '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Generar {0} '{1}' en archivo nuevo</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Generar {0} anidado '{1}'</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Espacio de nombres global</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Implementar interfaz de forma abstracta</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Implementar interfaz a través de '{0}'</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Implementar interfaz</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Introducir el campo de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Introducir la variable local de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Introducir la constante de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Introducir la constante local de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Introducir el campo para todas las repeticiones de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Introducir la variable local para todas las repeticiones de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Introducir la constante para todas las repeticiones de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Introducir la constante local para todas las repeticiones de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Introducir la variable de consulta para todas las repeticiones de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Introducir la variable de consulta de '{0}'</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Tipos anónimos:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">es</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Representa un objeto cuyas operaciones se resolverán en tiempo de ejecución.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">constante</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">Campo</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">constante local</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">variable local</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">Etiqueta</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">período o era</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Los especificadores de formato personalizado "g" o "gg" (más cualquier número de especificadores "g" adicionales) representan el período o la era, como D.C. La operación de formato omite este especificador si la fecha a la que se va a dar formato no tiene una cadena de período o era asociada. Si el especificador de formato "g" se usa sin otros especificadores de formato personalizado, se interpreta como el especificador de formato de fecha y hora estándar "g".</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">variable de rango</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">parámetro</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">en</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Resumen:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Variables locales y parámetros</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Parámetros de tipo:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Devuelve:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Excepciones:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Comentarios:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">no está permitido generar código fuente para símbolos de este tipo</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">ensamblado</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">ubicación desconocida</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Tipo de miembro de interfaz inesperado: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Tipo de símbolo desconocido</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Generar propiedad abstracta "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Generar método abstracto "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Generar el método '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">El ensamblado solicitado ya se ha cargado desde '{0}'.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">El símbolo no tiene un icono.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">El método asincrónico no puede tener parámetros ref/out: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">El miembro está definido en metadatos.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Solo se puede cambiar la firma de un constructor, indizador, método o delegado.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Este símbolo tiene definiciones o referencias relacionadas en metadatos. Cambiar la firma puede provocar errores de compilación. ¿Quiere continuar?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Cambiar firma...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Generar nuevo tipo...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Error del analizador de diagnóstico de usuario.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">El analizador '{0}' produjo una excepción de tipo '{1}' con el mensaje '{2}'.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">El analizador '{0}' inició la siguiente excepción: '{1}'.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Simplificar nombres</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Simplificar acceso de miembros</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Quitar cualificación</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Se ha producido un error desconocido</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Disponible</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">No disponible ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">En origen</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">En&amp; archivo de supresión</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Quitar supresión {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Quitar supresión</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;pendiente&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Nota: Presione dos veces la tecla Tab para insertar el fragmento de código '{0}'.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Implementar la interfaz de forma explícita con el patrón de Dispose</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Implementar la interfaz con el patrón de Dispose</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Volver a evaluar prioridades de {0}(valor actual: '{1}')</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">El argumento no puede tener un elemento nulo.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">El argumento no puede estar vacío.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">El analizador no admite el diagnóstico notificado con identificador '{0}'.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Calculando corrección de todas las repeticiones de corrección de código...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Corregir todas las repeticiones</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Documento</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Proyecto</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Solución</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: eliminar el estado administrado (objetos administrados)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: establecer los campos grandes como NULL</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Compilador</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">Activo</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">valor de enumeración</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">campo const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">método</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">Operador</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">constructor</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">propiedad automática</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">Propiedad</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">descriptor de acceso de eventos</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">fecha y hora de rfc1123</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">El especificador de formato estándar "R" o "r" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.RFC1123Pattern. El patrón refleja un estándar definido y la propiedad es de solo lectura. Por lo tanto, siempre es el mismo, independientemente de la referencia cultural utilizada o del proveedor de formato proporcionado. La cadena de formato personalizado es "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". Cuando se usa este especificador de formato estándar, la operación de formato o análisis utiliza siempre la referencia cultural invariable.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">fecha y hora de recorrido de ida y vuelta</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">El especificador de formato estándar "O" o bien "o" representa una cadena de formato de fecha y hora personalizado con un patrón que conserva la información de la zona horaria y emite una cadena de resultado que se ajusta a la norma ISO 8601. Para valores de fecha y hora, este especificador de formato está diseñado para conservar los valores de fecha y hora junto con la propiedad DateTime.Kind en el texto. La cadena con formato se puede analizar de nuevo con el método DateTime.Parse (String, IFormatProvider, DateTimeStyles) o DateTime.ParseExact si el parámetro Styles se establece en DateTimeStyles.RoundtripKind. El especificador de formato estándar "O" o bien "o" se corresponde con la cadena de formato personalizado "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" para valores de DateTime y con la cadena de formato personalizado "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" para valores de DateTimeOffset. En esta cadena, los pares de comillas simples que delimitan los caracteres individuales, como los guiones, los dos puntos y la letra "T", indican que el carácter individual es un literal que no se puede cambiar. Los apóstrofos no aparecen en la cadena de salida. El especificador de formato estándar "O" o bien "o" (y la cadena de formato personalizado "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" aprovecha las tres formas en que ISO 8601 representa la información de la zona horaria para conservar la propiedad Kind de los valores de DateTime: El componente de zona horaria de los valores de fecha y hora de DateTimeKind.Local tiene una diferencia respecto a la hora UTC (por ejemplo, +01:00,-07:00). Todos los valores de DateTimeOffset también se representan con este formato. El componente de zona horaria de los valores de fecha y hora de DateTimeKind.Utc utilizan "Z" (que significa que la diferencia es cero) para representar la hora UTC. Los valores de fecha y hora de DateTimeKind.Unspecified no tienen información de zona horaria. Dado que el especificador de formato estándar "O" o bien "o" se ajusta a un estándar internacional, la operación de formato o análisis que usa el especificador siempre utiliza la referencia cultural invariable y el calendario gregoriano. Las cadenas que se pasan a los métodos Parse, TryParse, ParseExact y TryParseExact de DateTime y DateTimeOffset se pueden analizar usando el especificador de formato "O" o bien "o" si se encuentran en uno de estos formatos. En el caso de los objetos DateTime, la sobrecarga de análisis a la que llama debe incluir también un parámetro Styles con un valor de DateTimeStyles.RoundtripKind. Tenga en cuenta que si se llama a un método de análisis con la cadena de formato personalizada que corresponde al especificador de formato "O" o bien "o", no se obtendrán los mismos resultados que "O" o bien "o". Esto se debe a que los métodos de análisis que usan una cadena de formato personalizado no pueden analizar la representación de cadena de valores de fecha y hora que carecen de un componente de zona horaria o utilizan "Z" para indicar la hora UTC.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">segundo (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">El especificador de formato personalizado "s" representa los segundos como un número del 0 al 59. El resultado representa los segundos enteros que han transcurrido desde el último minuto. El formato de un segundo con un solo dígito se representa sin cero inicial. Si el especificador de formato "s" se usa sin otros especificadores de formato personalizado, se interpreta como el especificador de formato de fecha y hora estándar "s".</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">segundo (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">El especificador de formato personalizado "ss" (más cualquier número de especificadores "s" adicionales) representa los segundos como un número del 00 al 59. El resultado representa los segundos enteros que han transcurrido desde el último minuto. El formato de un segundo con un solo dígito se representa sin un cero inicial.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">fecha corta</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">El especificador de formato estándar "d" representa una cadena de formato de fecha y hora personalizado definida por una propiedad DateTimeFormatInfo.ShortDatePattern de una referencia cultural específica. Por ejemplo, la cadena de formato personalizado devuelta por la propiedad ShortDatePattern de la referencia cultural invariable es "MM/DD/AAAA".</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">hora corta</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">El especificador de formato estándar "t" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.ShortTimePattern actual. Por ejemplo, la cadena de formato personalizado para la referencia cultural invariable es "HH:mm".</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">fecha y hora ordenable</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">El especificador de formato estándar "s" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.SortableDateTimePattern. El patrón refleja un estándar definido (ISO 8601) y la propiedad es de solo lectura. Por lo tanto, siempre es el mismo, independientemente de la referencia cultural utilizada o del proveedor de formato proporcionado. La cadena de formato personalizado es "yyyy'-'MM'-'dd'T'HH':'mm':'ss". La finalidad del especificador de formato "s" es producir cadenas de resultados que se ordenen coherentemente de forma ascendente o descendente según los valores de fecha y hora. Como resultado, aunque el especificador de formato estándar "s" representa un valor de fecha y hora en un formato coherente, la operación de formato no modifica el valor del objeto de fecha y hora al que se está dando formato para reflejar su propiedad DateTime.Kind o DateTimeOffset.Offset. Por ejemplo, las cadenas de resultados generadas por el formato de los valores de fecha y hora 2014-11-15T18:32:17+00:00 y 2014-11-15T18:32:17+08:00 son idénticas. Cuando se usa este especificador de formato estándar, la operación de formato o análisis utiliza siempre la referencia cultural invariable.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">constructor estático</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'símbolo' no puede ser un espacio de nombres.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">separador de la hora</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">El especificador de formato personalizado ":" representa el separador de hora, que se usa para diferenciar las horas, los minutos y los segundos. El separador de hora localizado apropiado se recupera de la propiedad DateTimeFormatInfo.TimeSeparator de la referencia cultural actual o especificada. Nota: Para cambiar el separador de hora de una cadena de fecha y hora determinada, especifique el carácter separador dentro de un delimitador de cadena literal. Por ejemplo, la cadena de formato personalizado hh'_'dd'_'ss genera una cadena de resultado en la que "_" (un carácter de subrayado) siempre se usa como separador de hora. Para cambiar el separador de hora de todas las fechas de una referencia cultural, cambie el valor de la propiedad DateTimeFormatInfo.TimeSeparator de la referencia cultural actual, o bien cree una instancia del objeto DateTimeFormatInfo, asigne el carácter a su propiedad TimeSeparator y llame a una sobrecarga del método de formato que incluye un parámetro IFormatProvider. Si el especificador de formato ":" se usa sin otros especificadores de formato personalizados, se interpreta como un especificador de formato de fecha y hora estándar y produce una excepción FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">zona horaria</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">El especificador de formato personalizado "K" representa la información de zona horaria de un valor de fecha y hora. Cuando se usa este especificador de formato con valores DateTime, la cadena de resultado se define por el valor de la propiedad DateTime.Kind: En el caso de la zona horaria local (valor de la propiedad DateTime.Kind de DateTimeKind.Local), este especificador es equivalente al especificador "zzz" y genera una cadena de resultado que contiene el desplazamiento local de la hora universal coordinada (UTC); por ejemplo, "-07:00". Para una hora UTC (un valor de propiedad DateTime. Kind de DateTimeKind. UTC), la cadena de resultado incluye un carácter "Z" para representar una fecha UTC. Para una hora de una zona horaria no especificada (una hora cuya propiedad DateTime. Kind igual a DateTimeKind. no especificada), el resultado es equivalente a String. Empty. Para los valores de DateTimeOffset, el especificador de formato "K" es equivalente al especificador de formato "Zzz" y genera una cadena de resultado que contiene el desplazamiento del valor DateTimeOffset con respecto a la hora UTC. Si el especificador de formato "K" se usa sin otros especificadores de formato personalizado, se interpreta como un especificador de formato de fecha y hora estándar y produce una FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">restricción de tipo</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">parámetro de tipo</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">atributo</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Reemplazar '{0}' y '{1}' por la propiedad</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Reemplazar '{0}' por la propiedad</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Método al que se hace referencia implícita</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Generar tipo '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Generar {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Cambie '{0}' a '{1}'.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">El método no invocado no se puede reemplazar por la propiedad.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Solo los métodos que tienen un solo argumento, que no es una declaración de variable out, se pueden reemplazar por una propiedad.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">No se puede crear una instancia de analizador {0} desde {1}: {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">El ensamblado {0} no contiene ningún analizador.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">No se puede cargar el ensamblado del analizador {0}: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Convertir el método en sincrónico</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">desde {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Buscar e instalar la última versión</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Usar la versión local '{0}'</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Usar la versión '{0}' instalada localmente '{1}' Esta versión se utiliza en: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Buscar e instalar la última versión de '{0}'</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Instalar con el Administrador de paquetes...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Instalar '{0} {1}'</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Instalar la versión '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Generar variable '{0}'</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Clases</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Constantes</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Delegados</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Enumeraciones</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Eventos</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Métodos de extensión</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Campos</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Interfaces</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Variables locales</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Métodos</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Módulos</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Espacios de nombres</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Propiedades</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Estructuras</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parámetros:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">El elemento variádico SignatureHelpItem debe tener al menos un parámetro.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Reemplazar '{0}' por un método</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Reemplazar '{0}' por métodos</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Propiedad a la que se hace referencia de forma implícita</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">La propiedad no se puede reemplazar por una llamada a un método de forma segura</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Convertir a cadena interpolada</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Mover tipo a {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Cambiar nombre de archivo por {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Cambiar nombre de tipo por {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Quitar etiqueta</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Agregar nodos de parámetros que faltan</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Convertir el ámbito contenedor en asincrónico</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Convertir el ámbito contenedor en asincrónico (devolver Task)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Desconocido)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Usar tipo de marco de trabajo</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Instalar paquete '{0}'</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">proyecto {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">'{0}' completo</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Quitar referencia a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Palabras clave</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Fragmentos de código</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Todo minúsculas</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Todo mayúsculas</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Primera palabra en mayúsculas</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Pascal Case</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Quitar documento "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Agregar documento "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Agregar nombre de argumento "{0}"</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Tomar "{0}"</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Tomar ambas</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Tomar parte inferior</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Tomar parte superior</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Quitar variable no utilizada</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Convertir a binario</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Convertir a decimal</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Convertir a hexadecimal</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Separar miles</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Separar palabras</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Separar cuartetos</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Quitar separadores</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Agregar parámetro a "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Generar constructor...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Seleccionar miembros para usarlos como parámetros del constructor</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Seleccionar miembros para usar en Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Generar invalidaciones...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Seleccionar miembros para invalidar</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Agregar comprobación de valores null</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Agregar comprobación de "string.IsNullOrEmpty"</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Agregar comprobación de "string.IsNullOrWhiteSpace"</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Inicializar campo "{0}"</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Inicializar propiedad "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Agregar comprobaciones de valores null</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Generar operadores</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Implementar {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">El diagnóstico notificado "{0}" tiene una ubicación de origen en el archivo "{1}", que no forma parte de la compilación que se está analizando.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">El diagnóstico notificado "{0}" tiene una ubicación de origen "{1}" en el archivo "{2}", que está fuera del archivo dado.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">en {0} (proyecto {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Agregar modificadores de accesibilidad</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Mover la declaración cerca de la referencia</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Convertir en propiedad completa</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Advertencia: El método reemplaza el símbolo de los metadatos.</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Usar {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Agregar el nombre de argumento "{0}" (incluidos los argumentos finales)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">función local</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">indizador</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Tipo de alias ambiguo "{0}"</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Advertencia: la colección se modificó durante la iteración.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Advertencia: límite de función cruzada de variable de iteración.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Advertencia: es posible que la colección se modifique durante la iteración.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">fecha/hora completa universal</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">El especificador de formato estándar "U" representa una cadena de formato de fecha y hora personalizada que está definida por una propiedad DateTimeFormatInfo.FullDateTimePattern de una referencia cultural especificada. El patrón es igual que el patrón "F", pero el valor de DateTime se cambia automáticamente a UTC antes de darle formato.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">fecha/hora universal que se puede ordenar</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">El especificador de formato estándar "u" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.UniversalSortableDateTimePattern. El patrón refleja un estándar definido y la propiedad es de solo lectura. Por lo tanto, siempre es el mismo, independientemente de la referencia cultural utilizada o del proveedor de formato proporcionado. La cadena de formato personalizado es "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". Cuando se usa este especificador de formato estándar, la operación de formato o análisis utiliza siempre la referencia cultural invariable. Aunque la cadena de resultado debe expresar una hora como hora universal coordinada (UTC), no se realizará ninguna conversión del valor DateTime original durante la operación de formato. Por lo tanto, debe convertir un valor DateTime a UTC llamando al método DateTime.ToUniversalTime antes de aplicarle formato.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">actualización de los usos en el miembro contenedor</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">actualización de usos en el proyecto contenedor</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">actualización de los usos en el tipo contenedor</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">actualización de usos en proyectos dependientes</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">desfase en horas y minutos respecto a UTC</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Con los valores de DateTime, el especificador de formato personalizado "zzz" representa el desfase con signo de la zona horaria del sistema operativo local respecto a la hora UTC, medido en horas y minutos. No refleja el valor de la propiedad DateTime.Kind de una instancia. Por este motivo, no se recomienda usar el especificador de formato "zzz" con valores de DateTime. Con valores de DateTimeOffset, este especificador de formato representa el desfase del valor de DateTimeOffset con respecto a la hora UTC en horas y minutos. El desfase se muestra siempre con un signo delante. Un signo más (+) indica las horas de adelanto respecto a la hora UTC y un signo menos (-) indica las horas de retraso respecto a la hora UTC. Cuando el desfase es de un solo dígito, se le pone un cero delante.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">desfase respecto a la hora UTC (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Con los valores de DateTime, el especificador de formato personalizado "z" representa el desfase con signo de la zona horaria del sistema operativo local respecto a la hora UTC (hora universal coordinada), medido en horas y minutos. No refleja el valor de la propiedad DateTime.Kind de una instancia. Por este motivo, no se recomienda usar el especificador de formato "z" con valores de DateTime. Con valores de DateTimeOffset, este especificador de formato representa el desfase del valor de DateTimeOffset con respecto a la hora UTC en horas. El desfase se muestra siempre con un signo delante. Un signo más (+) indica las horas de adelanto respecto a la hora UTC y un signo menos (-) indica las horas de retraso respecto a la hora UTC. Cuando el desfase es de un solo dígito, se le pone un cero delante. Si el especificador de formato "z" se usa sin otros especificadores de formato personalizados, se interpreta como un especificador de formato de fecha y hora estándar y produce una excepción de formato (FormatException).</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">desfase respecto a la hora UTC (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Con valores de DateTime, el especificador de formato personalizado "zz" representa el desfase con signo de la zona horaria del sistema operativo local respecto a la hora UTC, medido en horas. No refleja el valor de la propiedad DateTime.Kind de una instancia. Por este motivo, no se recomienda usar el especificador de formato "zz" con valores de DateTime. Con valores de DateTimeOffset, este especificador de formato representa el desfase del valor DateTimeOffset con respecto a la hora UTC en horas. El desfase se muestra siempre con un signo delante. Un signo más (+) indica las horas de adelanto respecto a la hora UTC y un signo menos (-) indica las horas de retraso respecto a la hora UTC. Cuando el desfase es de un solo dígito, se le pone un cero delante.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">rango [x-y] en orden inverso</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">año (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">El especificador de formato personalizado "y" representa el año como un número de uno o dos dígitos. Si el año tiene más de dos dígitos, en el resultado solo aparecen los dos dígitos de orden inferior. Si el primer dígito de un año de dos dígitos es un cero (por ejemplo, 2008), no se le pone un cero delante al número. Si el especificador de formato "y" se usa sin otros especificadores de formato personalizados, se interpreta como el especificador de formato de fecha y hora estándar "y".</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">año (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">El especificador de formato personalizado "yy" representa el año como un número de dos dígitos. Si el año tiene más de dos dígitos, en el resultado solo aparecen los dos dígitos de orden inferior. Si el año de dos dígitos tiene menos de dos dígitos significativos, se le pone un cero delante al número para tener dos dígitos. En una operación de análisis, un año de dos dígitos que se analiza con el especificador de formato personalizado "yy" se interpreta en función de la propiedad Calendar.TwoDigitYearMax del calendario actual del proveedor de formato. En el ejemplo siguiente se analiza la representación de cadena de una fecha que tiene un año de dos dígitos con el calendario gregoriano predeterminado de la referencia cultural en-US, que, en este caso, es la referencia cultural actual. Después, se cambia el objeto CultureInfo de la referencia cultural actual para que use un objeto GregorianCalendar cuya propiedad TwoDigitYearMax se ha modificado.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">año (3-4 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">El especificador de formato personalizado "yyy" representa el año con un mínimo de tres dígitos. Si el año tiene más de tres dígitos significativos, se incluyen en la cadena de resultado. Si el año tiene menos de tres dígitos, se le ponen ceros delante al número hasta tener tres dígitos.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">año (4 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">El especificador de formato personalizado "yyyy" representa el año con un mínimo de cuatro dígitos. Si el año tiene más de cuatro dígitos significativos, se incluyen en la cadena de resultado. Si el año tiene menos de cuatro dígitos, se le ponen ceros delante al número hasta tener cuatro dígitos.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">año (5 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">El especificador de formato personalizado "yyyyy" (más cualquier número de especificadores "y" adicionales) representa el año con un mínimo de cinco dígitos. Si el año tiene más de cinco dígitos significativos, se incluyen en la cadena de resultado. Si el año tiene menos de cinco dígitos, se le ponen ceros delante al número hasta tener cinco dígitos. Si hay especificadores "y" adicionales, al número se le ponen delante tantos ceros como sean necesarios para tener el número de especificadores "y".</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">mes del año</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">El especificador de formato estándar "Y" o "y" representa una cadena de formato de fecha y hora personalizado definida por la propiedad DateTimeFormatInfo.YearMonthPattern de una referencia cultural especificada. Por ejemplo, la cadena de formato personalizado para la referencia cultural invariable es "yyyy MMMM".</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="es" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">a.m./p.m. (abreviado)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">El especificador de formato personalizado "t" representa el primer carácter del designador AM/PM. Se recupera el designador adaptado apropiado de la propiedad DateTimeFormatInfo.AMDesignator o DateTimeFormatInfo.PMDesignator de la referencia cultural actual o específica. El designador AM se usa para todas las horas de 0:00:00 (medianoche) a 11:59:59.999. El designador PM se usa para todas las horas de 12:00:00 (mediodía) a 23:59:59.999. Si el especificador de formato "t" se usa sin otros especificadores de formato personalizado, se interpreta como el especificador de formato de fecha y hora estándar "t".</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">a.m./p.m. (completo)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">El especificador de formato personalizado "tt" (más cualquier número de especificadores "t" adicionales) representa el designador AM/PM completo. Se recupera el designador adaptado apropiado de la propiedad DateTimeFormatInfo.AMDesignator o DateTimeFormatInfo.PMDesignator de la referencia cultural actual o específica. El designador AM se usa para todas las horas de 0:00:00 (medianoche) a 11:59:59.999. El designador PM se usa para todas las horas de 12:00:00 (mediodía) a 23:59:59.999. Asegúrese de usar el especificador "tt" para los idiomas para los que es necesario mantener la distinción entre AM y PM. Un ejemplo es el japonés, para el que los designadores AM y PM difieren en el segundo carácter en lugar de en el primer carácter.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Una sustracción debe ser el último elemento de una clase de caracteres</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Agregar atributo de "DebuggerDisplay"</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Agregar conversión explícita</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Agregar nombre de miembro</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Agregar comprobaciones de valores NULL para todos los parámetros</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Agregar parámetro opcional al constructor</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Agregar un parámetro a “{0}” (y reemplazos/implementaciones)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Agregar parámetro al constructor</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Agregue referencia de proyecto a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Agregue referencia a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Las acciones no pueden estar vacías.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Agregar el nombre del elemento de tupla "{0}"</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Alinear argumentos ajustados</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Alinear parámetros ajustados</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Las condiciones de alternancia no pueden ser comentarios</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Las condiciones de alternancia no se captan y se les puede poner un nombre</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Aplicar preferencias de encabezado de archivo</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Aplicar preferencias de inicialización de objetos o colecciones</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">La tarea esperada devuelve "{0}".</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">La tarea esperada no devuelve ningún valor.</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Las clases base contienen miembros no implementados que son inaccesibles.</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">No se pueden aplicar los cambios. Error inesperado: "{0}"</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">No se incluye la clase \{0} en el intervalo de caracteres</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">La captura de números de grupo deben ser menor o igual a Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">La captura de número no puede ser cero</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;inferir&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="new">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;omitir&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Cambiar al espacio de nombres global</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">No se permiten cambios durante una parada por una excepción</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Los cambios realizados en el proyecto "{0}" no se aplicarán mientras se esté ejecutando la aplicación</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application"> <source>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</source> <target state="new">Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Configurar el estilo de código de {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Configurar la gravedad de {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Configurar la gravedad de todos los analizadores ("{0}")</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Configurar la gravedad de todos los analizadores</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Convertir a LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Agregar a “{0}”</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Convertir a la clase</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Convertir a LINQ (formulario de llamada)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Convertir en registro</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Convertir en registro de estructuras</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Convertir a struct</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Convertir tipo en "{0}"</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Crear y asignar campo "{0}"</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Crear y asignar propiedad "{0}"</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Crear y asignar el resto como campos</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Crear y asignar el resto como propiedades</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">No cambie este código. Coloque el código de limpieza en el método "{0}".</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">El contenido actual del archivo de código fuente "{0}" no coincide con el del código fuente compilado, así que los cambios realizados en este archivo durante la depuración no se aplicarán hasta que coincida.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">El documento debe estar contenido en el área de trabajo que creó este servicio</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Editar y continuar</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">El módulo no permite editar y continuar</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Los cambios realizados en el proyecto "{0}" impedirán que continúe la sesión de depuración: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">El runtime no admite editar y continuar.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Error al leer el archivo "{0}": {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Error al crear la instancia de CodeFixProvider</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Error al crear la instancia de CodeFixProvider "{0}"</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Ejemplo:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Ejemplos:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Los métodos de registros implementados explícitamente deben tener nombres de parámetro que coincidan con el equivalente generado por el programa "{0}"</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Extraer clase base...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Extraer interfaz...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Extraer función local</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Extraer método</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">No se pudo analizar el flujo de datos para: {0}.</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Fijar formato</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Corregir error de escritura "{0}"</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Dar formato al documento</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Aplicando formato al documento</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Generar operadores de comparación</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Generar un constructor en "{0}" (con campos)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Generar un constructor en "{0}" (con propiedades)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Generar para "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Generar el parámetro "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Generar el parámetro "{0}" (y reemplazos/implementaciones)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">\ no válido al final del modelo</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">Ilegales {x, y} con x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Implementar "{0}" de forma explícita</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Implementar "{0}" de forma implícita</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Implementar clase abstracta</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Implementar todas las interfaces de forma explícita</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Implementar todas las interfaces de forma implícita</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Implementar todos los miembros de forma explícita</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Implementar de forma explícita</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Implementar de forma implícita</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Implementar los miembros restantes de forma explícita</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Implementar a través de "{0}"</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Escape de carácter incompleto \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Aplicar sangría a todos los argumentos</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Aplicar sangría a todos los parámetros</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Argumentos con la sangría ajustada</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Parámetros con la sangría ajustada</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">En línea "{0}"</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Alinear y mantener "{0}"</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Insuficientes dígitos hexadecimales</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Introducir la sangría</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Introducir campo</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Introducir local</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Introducir la variable de consulta</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Nombre de grupo no válido: nombres de grupo deben comenzar con un carácter de palabra</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Convertir la clase en "abstract"</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Hacer estático</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Invertir condicional</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">con formato incorrecto</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Escape de carácter incorrecto \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Referencia atrás con nombre \k&lt;...&gt; mal formado</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Combinar con la instrucción "{0}" anidada</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Combinar con la instrucción "{0}" siguiente</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Combinar con la instrucción "{0}" externa</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Combinar con la instrucción "{0}" anterior</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} debe devolver una secuencia que admita operaciones de lectura y búsqueda.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Falta de carácter de control</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Mover contenido al espacio de nombres...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Mover el archivo a "{0}"</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Mover el archivo a la carpeta raíz del proyecto</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Mover a espacio de nombres...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Cuantificador anidado {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">No hay ninguna ubicación válida para insertar una llamada de método.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">No hay suficientes )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operadores</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">No se puede actualizar la referencia de propiedad</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Extraer "{0}"</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Extraer "{0}" hasta "{1}"</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Extraer miembros hasta el tipo de base...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Extraer miembros a una nueva clase base...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Cuantificador {x, y} después de nada</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">referencia al grupo no definido</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Referencia a nombre de grupo no definido {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Referencia al número de grupo indefinido {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Todos los caracteres de control. Esto incluye las categorías Cc, Cf, Cs, Co y Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">todos los caracteres de control</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Todas las marcas diacríticas. Esto incluye las categorías Mn, Mc y Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">todas las marcas diacríticas</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Todos los caracteres de letra. Esto incluye los caracteres Lu, Ll, Lt, Lm y Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">todos los caracteres de letra</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Todos los números. Esto incluye las categorías Nd, Nl y No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">todos los números</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Todos los caracteres de puntuación. Esto incluye las categorías Pc, Pd, Ps, Pe, Pi, Pf y Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">todos los caracteres de puntuación</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Todos los caracteres separadores. Esto incluye las categorías Zs, Zl y Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">todos los caracteres separadores</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Todos los símbolos. Esto incluye las categorías Sm, Sc, Sk y So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">todos los símbolos</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Puede usar el carácter de barra vertical (|) para hacerlo coincidir con algún patrón de una serie, donde el carácter | el carácter separa cada patrón.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">alternación</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">El carácter de punto (.) coincide con cualquier carácter excepto \n (el carácter de nueva línea, \u000A). Si la opción RegexOptions.SingleLine modifica un patrón de expresión regular o si la parte del patrón que contiene el carácter . se modifica mediante la opción "s", . coincide con cualquier carácter.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">cualquier carácter</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Los grupos atómicos (conocidos en algunos otros motores de expresiones regulares como subexpresión sin vuelta atrás, subexpresión atómica o subexpresión de una sola vez) deshabilitan la vuelta atrás. El motor de expresiones regulares coincidirá con tantos caracteres de la cadena de entrada como pueda. Cuando no sean posibles más coincidencias, no volverá atrás para intentar coincidencias de patrones alternativas. (Es decir, la subexpresión coincide únicamente con las cadenas que coincidan solo con la subexpresión; no intenta buscar coincidencias con una cadena en función de la subexpresión y de todas las subexpresiones que la sigan). Se recomienda esta opción si sabe que la vuelta atrás no será correcta. Evitar que el motor de expresiones regulares realice búsquedas innecesarias mejora el rendimiento.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">grupo atómico</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Coincide con un carácter de retroceso, \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">carácter de retroceso</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Una definición de grupo de equilibrio elimina la definición de un grupo definido anteriormente y almacena, en el grupo actual, el intervalo entre el grupo definido anteriormente y el grupo actual. "name1" es el grupo actual (opcional), "name2" es un grupo definido anteriormente y "subexpression" es cualquier patrón de expresión regular válido. La definición del grupo de equilibrio elimina la definición de name2 y almacena el intervalo entre name2 y name1 en name1. Si no se define un grupo de name2, la coincidencia se busca con retroceso. Como la eliminación de la última definición de name2 revela la definición anterior de name2, esta construcción permite usar la pila de capturas para el grupo name2 como contador para realizar el seguimiento de las construcciones anidadas, como los paréntesis o los corchetes de apertura y cierre. La definición del grupo de equilibrio usa "name2" como una pila. El carácter inicial de cada construcción anidada se coloca en el grupo y en su colección Group.Captures. Cuando coincide el carácter de cierre, se quita el carácter de apertura correspondiente del grupo y se quita uno de la colección Captures. Una vez que se han encontrado coincidencias de los caracteres de apertura y cierre de todas las construcciones anidadas, "name1" se queda vacío.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">grupo de equilibrio</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">grupo base</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Coincide con un carácter de campana (alarma), \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">carácter de campana</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Coincide con un carácter de retorno de carro, \u000D. Tenga en cuenta que \r no equivale al carácter de nueva línea, \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">carácter de retorno de carro</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">La sustracción de la clase de caracteres produce un conjunto de caracteres que es el resultado de excluir los caracteres en una clase de caracteres de otra clase de caracteres. "base_group" es un grupo o intervalo de caracteres positivos o negativos. El componente "excluded_group" es otro grupo de caracteres positivos o negativos, u otra expresión de sustracción de clases de caracteres (es decir, puede anidar expresiones de sustracción de clases de caracteres).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">sustracción de clase de caracteres</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">grupo de caracteres</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">comentario</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Este elemento del lenguaje intenta coincidir con uno de dos patrones en función de si puede coincidir con un patrón inicial. "expression" es el patrón inicial que debe coincidir, "yes" es el patrón que debe coincidir si la expresión coincide y "no" es el patrón opcional que debe coincidir si la expresión no coincide.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">coincidencia de expresión condicional</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Este elemento del lenguaje intenta coincidir con uno de dos patrones en función de si coincide con un grupo de captura especificado. "name" es el nombre (o número) de un grupo de capturas, "yes" es la expresión que debe coincidir si "name" (o "number") tiene una coincidencia y "no" es la expresión opcional para la coincidencia si no la tiene.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">coincidencia de grupo condicional</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">El delimitador \G especifica que se debe producir una coincidencia en el punto en el que finalizó la coincidencia anterior. Cuando se usa este delimitador con el método Regex.Matches o Match.NextMatch, se garantiza que todas las coincidencias sean contiguas.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">coincidencias contiguas</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Coincide con un carácter de control ASCII, donde X es la letra del carácter de control. Por ejemplo, \cC es CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">carácter de control</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d corresponde a cualquier dígito decimal. Equivale al patrón de expresión regular \P{Nd}, que incluye los dígitos decimales estándar 0-9, así como los dígitos decimales de otros conjuntos de caracteres. Si se especifica un comportamiento compatible con ECMAScript, \d equivale a [0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">carácter de dígito decimal</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Un signo de número (#) marca un comentario en modo x, que comienza en el carácter # sin escape al final del patrón de expresión regular y continúa hasta el final de la línea. Para usar esta construcción, debe habilitar la opción x (mediante opciones en línea) o proporcionar el valor RegexOptions.IgnorePatternWhitespace al parámetro option al crear una instancia del objeto Regex o llamar a un método estático Regex.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">comentario de fin de línea</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">El delimitador \Z especifica que debe producirse una coincidencia al final de la cadena de entrada. Al igual que el elemento de lenguaje $, \z omite la opción RegexOptions.Multiline. A diferencia del elemento de lenguaje \Z, \z no coincide con un carácter \n al final de una cadena. Por lo tanto, solo puede coincidir con la última línea de la cadena de entrada.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">solo el fin de la cadena</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">El delimitador \Z especifica que debe producirse una coincidencia al final de la cadena de entrada o antes de \n al final de la cadena de entrada. Es idéntico al delimitador $, excepto que \Z omite la opción RegexOptions.Multiline. Por lo tanto, en una cadena de varias líneas, solo puede coincidir con el final de la última línea o con la última línea antes de \n. El delimitador \Z coincide con \n, pero no con \r\n (la combinación de caracteres CR/LF). Para hacerlo coincidir con CR/LF, incluya \r?\Z en el patrón de expresión regular.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">fin de cadena o antes de terminar la línea nueva</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">El delimitador $ especifica que el patrón anterior debe aparecer al final de la cadena de entrada, o antes de \n al final de la cadena de entrada. Si usa $ con la opción RegexOptions.Multiline, la coincidencia también puede producirse al final de una línea. El limitador $ coincide con \n pero no coincide con \r\n (la combinación de retorno de carro y caracteres de nueva línea, o CR/LF). Para hacer coincidir la combinación de caracteres CR/LF, incluya \r?$ en el patrón de expresión regular.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">fin de cadena o línea</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Coincide con un carácter de escape, \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">carácter de escape</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">grupo excluido</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">expresión</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Coincide con un carácter de avance de página, \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">carácter de avance de página</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Esta construcción de agrupación aplica o deshabilita las opciones especificadas dentro de una subexpresión. Las opciones de habilitación se especifican después del signo de interrogación y las opciones de deshabilitación después del signo menos. Las opciones permitidas son:\: i Usar la coincidencia sin distinción de mayúsculas y minúsculas. m Usar el modo de varias líneas, donde ^ y $ coinciden con el principio y el final de cada línea (en lugar del principio y del final de la cadena de entrada). s Usar el modo de una sola línea, donde el punto (.) coincide con todos los caracteres (en lugar de todos los caracteres excepto \n). n No capturar grupos sin nombre. Las únicas capturas válidas son explícitamente grupos con nombre o numerados con el formato (? &lt;name&gt; subexpresión). x Excluir el espacio en blanco sin escape del patrón y habilitar los comentarios después de un signo de número (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">opciones de grupo</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Coincide con un carácter ASCII, donde ## es un código de carácter hexadecimal de dos dígitos.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">escape hexadecimal</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">La construcción (comentario ?#) permite incluir un comentario alineado en una expresión regular. El motor de expresiones regulares no usa ninguna parte del comentario en la coincidencia de patrones, aunque el comentario está incluido en la cadena devuelta por el método Regex.ToString. El comentario termina en el primer paréntesis de cierre.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">comentario insertado</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Habilita o deshabilita las opciones de coincidencia de patrones específicas para el resto de una expresión regular. Las opciones de habilitación se especifican después del signo de interrogación y las opciones de deshabilitación después del signo menos. Las opciones permitidas son: i Usar la coincidencia sin distinción de mayúsculas y minúsculas. m Usar el modo de varias líneas, donde ^ y $ coinciden con el principio y el final de cada línea (en lugar del principio y del final de la cadena de entrada). s Usar el modo de una sola línea, donde el punto (.) coincide con todos los caracteres (en lugar de todos los caracteres excepto \n). n No capturar grupos sin nombre. Las únicas capturas válidas son explícitamente o grupos con nombre o número con el formato (? &lt;name&gt; subexpresión). x Excluir el espacio en blanco sin escape del patrón y habilitar los comentarios después de un signo de número (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">opciones insertadas</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Problema de Regex: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">letra, minúscula</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">letra, modificador</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">letra, otro</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">letra, tipo título</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">letra, mayúscula</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">marca, de cierre</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">marca, sin espaciado</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">marca, espaciado combinable</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">El cuantificador {n,}? coincide con el elemento anterior al menos n veces, donde n es cualquier entero, pero el menor número de veces que sea posible. Es el homólogo diferido del cuantificador expansivo {n,}</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">coincidir al menos "n" veces (diferido)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">El cuantificador {n,} coincide con el elemento anterior al menos n veces, donde n es un entero. {n,} es un cuantificador expansivo cuyo equivalente diferido es {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">coincidir al menos "n" veces</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">El cuantificador {n,m}? coincide con el elemento anterior entre n y m veces, donde n y m son enteros, pero el menor número de veces que sea posible. Es el homólogo diferido del cuantificador expansivo {n,m}</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">coincidir al menos "n" veces (diferido)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">El cuantificador {n, m} coincide con el elemento anterior n veces como mínimo, pero no más de m veces, donde n y m son enteros. {n,m} es un cuantificador expansivo cuyo equivalente diferido es {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">coincidir entre "m" y "n" veces</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">El cuantificador {n}? coincide exactamente n veces con el elemento anterior, donde n es un entero. Es el equivalente diferido del cuantificador expansivo {n}+</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">coincidir exactamente "n" veces (diferido)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">El cuantificador {n} coincide exactamente n veces con el elemento anterior, donde n es un entero. {n} es un cuantificador expansivo cuyo equivalente diferido es {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">coincidir exactamente "n" veces</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">El cuantificador +? coincide con el elemento anterior cero o más veces, pero el menor número de veces que sea posible. Es el homólogo diferido del cuantificador expansivo +</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">coincidir una o varias veces (diferido)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">El cuantificador + coincide con el elemento anterior una o más veces. Es equivalente al cuantificador {1,}. + es un cuantificador expansivo cuyo equivalente diferido es +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">coincidir una o varias veces</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">El cuantificador *? coincide con el elemento anterior cero o más veces, pero el menor número de veces que sea posible. Es el homólogo diferido del cuantificador expansivo *</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">coincidir cero o más veces (diferido)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">El cuantificador * coincide con el elemento anterior cero o más veces. Es equivalente al cuantificador {0,}. * es un cuantificador expansivo cuyo equivalente diferido es *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">coincidir cero o más veces</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">El cuantificador ?? coincide con el elemento anterior cero veces o una, pero el menor número de veces que sea posible. Es el homólogo diferido del cuantificador expansivo ?</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">coincidir cero veces o una vez (diferido)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">El cuantificador ? coincide con el elemento anterior cero veces o una. Es equivalente al cuantificador {0,1}. ? es un cuantificador expansivo cuyo equivalente diferido es ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">coincidir cero veces o una vez</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Esta construcción de agrupación captura una "subexpresión" coincidente, donde "subexpresión" es cualquier patrón de expresión regular válido. Las capturas que usan paréntesis se numeran automáticamente de izquierda a derecha según el orden de los paréntesis de apertura en la expresión regular, a partir de uno. La captura con número cero es el texto coincidente con el patrón de expresión regular completo.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">subexpresión coincidente</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">nombre</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">nombre o número</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Una referencia inversa con nombre o numerada. "name" es el nombre de un grupo de captura definido en el patrón de expresión regular.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">referencia inversa con nombre</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Captura una subexpresión coincidente y le permite acceder a ella por el nombre o el número. "name" es un nombre de grupo válido y "subexpression" es cualquier patrón de expresión regular válido. "name" no debe contener ningún carácter de puntuación y no puede comenzar con un número. Si el parámetro RegexOptions de un método de coincidencia de patrones de expresión regular incluye la marca RegexOptions.ExplicitCapture, o si la opción n se aplica a esta subexpresión, la única forma de capturar una subexpresión consiste en asignar un nombre explícito a los grupos de captura.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">subexpresión coincidente con nombre</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Un grupo de caracteres negativos especifica una lista de caracteres que no deben aparecer en una cadena de entrada para que se produzca una correspondencia. La lista de caracteres se especifica individualmente. Se pueden concatenar dos o más intervalos de caracteres. Por ejemplo, para especificar el intervalo de dígitos decimales de "0" a "9", el intervalo de letras minúsculas de "a" a "f" y el intervalo de letras mayúsculas de "A" a "F", utilice [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">grupo de caracteres negativos</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Un intervalo de caracteres negativos especifica una lista de caracteres que no deben aparecer en una cadena de entrada para que se produzca una correspondencia. "firstCharacter" es el carácter con el que comienza el intervalo y "lastCharacter" es el carácter con el que finaliza el intervalo. Se pueden concatenar dos o más intervalos de caracteres. Por ejemplo, para especificar el intervalo de dígitos decimales de "0" a "9", el intervalo de letras minúsculas de "a" a "f" y el intervalo de letras mayúsculas de "A" a "F", utilice [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">intervalo de caracteres negativos</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">La construcción de expresión regular \P{ name } coincide con cualquier carácter que no pertenezca a una categoría general o bloque con nombre de Unicode, donde el nombre es la abreviatura de la categoría o el nombre del bloque con nombre.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">categoría de Unicode negativa</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Coincide con un carácter de nueva línea, \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">carácter de nueva línea</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">no</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D coincide con cualquier carácter que no sea un dígito. Equivalente al patrón de expresión regular \P{Nd}. Si se especifica un comportamiento compatible con ECMAScript, \D equivale a [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">carácter que no es un dígito</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S coincide con cualquier carácter que no sea un espacio en blanco. Equivalente al patrón de expresión regular [^\f\n\r\t\v\x85\p{Z}], o el contrario del modelo de expresión regular equivalente a \s, que corresponde a los caracteres de espacio en blanco. Si se especifica un comportamiento compatible con ECMAScript, \S equivale a [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">carácter que no es un espacio en blanco</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">El delimitador \B especifica que la coincidencia no se debe producir en un límite de palabras. Es el opuesto del delimitador \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">límite que no es una palabra</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W coincide con cualquier carácter que no sea una palabra. Coincide con cualquier carácter excepto los de las siguientes categorías Unicode: Ll Letra, minúscula Lu Letra, mayúscula Lt Letra, tipo título Lo Letra, otros Lm Letra, modificador Mn Marca, no espaciado Nd Número, dígito decimal Pc Puntuación, conector Si se especifica un comportamiento compatible con ECMAScript, \W equivale a [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">carácter que no es una palabra</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Esta construcción no captura la subcadena que coincide con una subexpresión: La construcción de grupo que no captura se usa normalmente cuando un cuantificador se aplica a un grupo, pero las subcadenas capturadas por el grupo no tienen ningún interés. Si una expresión regular incluye construcciones de agrupación anidadas, una construcción de grupo que no captura externa no se aplica a las construcciones de grupo anidadas internas.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">Grupo que no captura</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">número, dígito decimal</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">número, letra</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">número, otro</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Una referencia inversa numerada, donde "number" es la posición ordinal del grupo de captura en la expresión regular. Por ejemplo, \4 coincide con el contenido del cuarto grupo de captura. Existe una ambigüedad entre los códigos de escape octales (como \16) y las referencias inversas de \number que usan la misma notación. Si la ambigüedad es un problema, puede utilizar la notación \k&lt;name&gt;, que no es ambigua y no se puede confundir con códigos de caracteres octales. Del mismo modo, los códigos hexadecimales como \xdd son inequívocos y no se pueden confundir con referencias inversas.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">referencia inversa numerada</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">otro, control</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">otro, formato</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">otro, no asignado</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">otro, uso privado</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">otro, suplente</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Un grupo de caracteres positivos especifica una lista de caracteres, cualquiera de los cuales puede aparecer en una cadena de entrada para que se produzca una coincidencia.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">grupo de caracteres positivos</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Un intervalo de caracteres positivo especifica un intervalo de caracteres, cualquiera de los cuales puede aparecer en una cadena de entrada para que se produzca una coincidencia. "firstCharacter" es el carácter con el que comienza el intervalo y "lastCharacter" es el carácter cpm el que finaliza el intervalo. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">intervalo de caracteres positivos</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">puntuación, cerrar</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">puntuación, conector</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">puntuación, guion</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">puntuación, comilla final</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">puntuación, comilla inicial</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">puntuación, abrir</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">puntuación, otro</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">separador, línea</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">separador, párrafo</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">separador, espacio</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">El delimitador \A especifica que debe producirse una coincidencia al principio de la cadena de entrada. Es idéntico al delimitador ^, excepto que \A omite la opción RegexOptions.Multiline. Por lo tanto, solo puede coincidir con el inicio de la primera línea en una cadena de entrada de varias líneas.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">solo el inicio de la cadena</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">El delimitador ^ especifica que el siguiente patrón debe comenzar en la primera posición de carácter de la cadena. Si usa ^ con la opción RegexOptions.Multiline, la coincidencia debe producirse al principio de cada línea.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">Inicio de cadena o línea</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">subexpresión</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">símbolo, moneda</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">símbolo, matemático</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">símbolo, modificador</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">símbolo, otro</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Coincide con un carácter de tabulación, \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">carácter de tabulación</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">El constructor de expresión regular \p{ name } coincide con cualquier carácter que pertenezca a una categoría general o bloque con nombre de Unicode, donde el nombre es la abreviatura de la categoría o el nombre del bloque con nombre.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">categoría unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Coincide con una unidad de código UTF-16 cuyo valor es #### hexadecimal.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">escape unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Categoría General de Unicode: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Coincide con un carácter de tabulación vertical, \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">carácter de tabulación vertical</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s coincide con cualquier carácter de espacio en blanco. Equivale a las siguientes secuencias de escape y categorías Unicode: \f El carácter de avance de página, \u000C \n El carácter de nueva línea, \u000A \r El carácter de retorno de carro, \u000D \t El carácter de tabulación, \u0009 \v El carácter de tabulación vertical, \u000B \x85 El carácter de puntos suspensivos o NEXT LINE (NEL) (...), \u0085 \p{Z} Corresponde a cualquier carácter separador Si se especifica un comportamiento compatible con ECMAScript, \s equivale a [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">carácter de espacio en blanco</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">El delimitador \b especifica que la coincidencia debe producirse en un límite entre un carácter de palabra (el elemento de lenguaje \w) y un carácter que no sea de palabra (el elemento del lenguaje \W). Los caracteres de palabra se componen de caracteres alfanuméricos y de subrayado; un carácter que no es de palabra es cualquier carácter que no sea alfanumérico o de subrayado. La coincidencia también puede producirse en un límite de palabra al principio o al final de la cadena. El delimitador \b se usa con frecuencia para garantizar que una subexpresión coincide con una palabra completa en lugar de solo con el principio o el final de una palabra.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">límite de palabra</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w coincide con cualquier carácter de palabra. Un carácter de palabra forma parte de cualquiera de las siguientes categorías Unicode: Ll Letra, minúscula Lu Letra, mayúscula Lt Letra, tipo título Lo Letra, otros Lm Letra, modificador Mn Marca, no espaciado Nd Número, dígito decimal Pc Puntuación, conector Si se especifica un comportamiento compatible con ECMAScript, \w equivale a [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">carácter de palabra</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">sí</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Una aserción de búsqueda anticipada (lookahead) negativa de ancho cero, donde para que la coincidencia sea correcta, la cadena de entrada no debe coincidir con el patrón de expresión regular en la subexpresión. La cadena coincidente no se incluye en el resultado de la coincidencia. Una aserción de búsqueda anticipada (lookahead) negativa de ancho cero se utiliza normalmente al principio o al final de una expresión regular. Al comienzo de una expresión regular, puede definir un patrón específico que no debe coincidir cuando el comienzo de la expresión regular define un patrón similar pero más general para la coincidencia. En este caso, se suele usar para limitar el seguimiento con retroceso. Al final de una expresión regular, puede definir una subexpresión que no se puede producir al final de una coincidencia.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">aserción de búsqueda anticipada (lookahead) negativa de ancho cero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Una aserción de búsqueda retrasada (lookbehind) negativa de ancho cero, donde para que una coincidencia sea correcta, "subexpresión" no se debe producir en la cadena de entrada a la izquierda de la posición actual. Cualquier subcadena que no coincida con "subexpresión" no se incluye en el resultado de la coincidencia. Las aserciones de búsqueda retrasada (lookbehind) negativas de ancho cero se usan normalmente al principio de las expresiones regulares. El patrón que definen excluye una coincidencia en la cadena que aparece a continuación. También se usan para limitar el seguimiento con retroceso cuando el último o los últimos caracteres de un grupo capturado no deban ser uno o varios de los caracteres que coinciden con el patrón de expresión regular de ese grupo.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">aserción de búsqueda retrasada (lookbehind) negativa de ancho cero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Una aserción de búsqueda anticipada (lookahead) positiva de ancho cero, donde para que una coincidencia sea correcta, la cadena de entrada debe coincidir con el modelo de expresión regular en "subexpresión". La subcadena coincidente no está incluida en el resultado de la coincidencia. Una aserción de búsqueda anticipada (lookahead) positiva de ancho cero no tiene seguimiento con retroceso. Normalmente, una aserción de búsqueda anticipada (lookahead) positiva de ancho cero se encuentra al final de un patrón de expresión regular. Define una subcadena que debe encontrarse al final de una cadena para que se produzca una coincidencia, pero que no debe incluirse en la coincidencia. También resulta útil para evitar un seguimiento con retroceso excesivo. Puede usar una aserción de búsqueda anticipada (lookahead) positiva de ancho cero para asegurarse de que un grupo capturado en particular empiece con texto que coincida con un subconjunto del patrón definido para ese grupo capturado.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">aserción de búsqueda anticipada (lookahead) positiva de ancho cero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Una aserción de búsqueda retrasada (lookbehind) positiva de ancho cero, donde para que una coincidencia sea correcta, "subexpresión" debe aparecer en la cadena de entrada a la izquierda de la posición actual. "subexpresión" no se incluye en el resultado de la coincidencia. Una aserción de búsqueda retrasada (lookbehind) positiva de ancho cero no tiene seguimiento con retroceso. Las aserciones de búsqueda retrasada (lookbehind) positivas de ancho cero se usan normalmente al principio de las expresiones regulares. El patrón que definen es una condición previa para una coincidencia, aunque no forma parte del resultado de la coincidencia.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">aserción de búsqueda retrasada (lookbehind) positiva de ancho cero</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Las signaturas de método relacionadas encontradas en los metadatos no se actualizarán.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">No se admite la eliminación del documento</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Quitar el modificador "async"</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Quitar conversiones innecesarias</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Quitar variables no utilizadas</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Reemplazar "{0}" por "{1}"</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Resolver los marcadores de conflicto</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Edición superficial</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Ordenar modificadores de accesibilidad</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Dividir en instrucciones "{0}" consecutivas</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Dividir en instrucciones "{0}" anidadas</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">La secuencia debe admitir las operaciones de lectura y búsqueda.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Suprimir {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: liberar los recursos no administrados (objetos no administrados) y reemplazar el finalizador</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: reemplazar el finalizador solo si "{0}" tiene código para liberar los recursos no administrados</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">El tipo de destino coincide con</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">El ensamblado "{0}" que contiene el tipo "{1}" hace referencia a .NET Framework, lo cual no se admite.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">La selección contiene una llamada a una función local sin la declaración correspondiente.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Demasiados | en (?()|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Demasiados )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">No se puede leer el archivo de código fuente "{0}" o el PDB compilado para el proyecto que lo contiene. Los cambios realizados en este archivo durante la depuración no se aplicarán hasta que su contenido coincida con el del código fuente compilado.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Propiedad desconocida</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Propiedad desconocida '{0}'</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Carácter de control desconocido</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Secuencia de escape no reconocida \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Construcción de agrupación no reconocida</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Conjunto [] sin terminar</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Comentario (?#...) sin terminar</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Desajustar todos los argumentos</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Desajustar todos los parámetros</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Desajustar todos los argumentos y aplicarles sangría</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Desajustar todos los parámetros y aplicarles sangría</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Desajustar la lista de argumentos</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Desencapsular la cadena de llamadas</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Desajustar la expresión</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Desajustar la lista de parámetros</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Usar cuerpo del bloque para las expresiones lambda</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Usar órgano de expresión para expresiones lambda</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Utilizar cadenas verbatim interpoladas</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Valor:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Advertencia: La semántica puede cambiar al convertir la instrucción.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Encapsular y alinear la cadena de llamadas</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Expresión de encapsulado y alineación</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Encapsular y alinear la cadena de llamadas larga</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Encapsular la cadena de llamadas</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Ajustar todos los argumentos</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Ajustar todos los parámetros</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Ajustar la expresión</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Desajustar la lista larga de argumentos</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Encapsular la cadena de llamadas larga</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Ajustar la lista larga de parámetros</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Ajuste</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Puede usar la barra de navegación para cambiar contextos.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}' no puede ser nulo ni estar vacío.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">"{0}" no puede ser NULL ni un espacio en blanco.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">"{0}" no es NULL aquí.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">"{0}" puede ser NULL aquí.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">La diezmillonésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "fffffff" representa los siete dígitos más significativos de la fracción de segundos, es decir, las diez millonésimas de segundo de un valor de fecha y hora. Aunque es posible mostrar las diez millonésimas de un componente de segundos de un valor de hora, puede que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">La diezmillonésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "FFFFFFF" representa los siete dígitos más significativos de la fracción de segundos, es decir, las diez millonésimas de segundo de un valor de fecha y hora. Sin embargo, no se muestran los ceros finales ni los dígitos de siete ceros. Aunque es posible mostrar las diez millonésimas de un componente de segundos de un valor de hora, puede que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1 millonésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "ffffff" representa los seis dígitos más significativos de la fracción de segundos, es decir, las millonésimas de segundo de un valor de fecha y hora. Aunque es posible mostrar las millonésimas de un componente de segundos de un valor de hora, puede que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1 millonésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "FFFFFF" representa los seis dígitos más significativos de la fracción de segundos, es decir, las millonésimas de segundo de un valor de fecha y hora. Sin embargo, no se muestran los ceros finales ni los dígitos de seis ceros. Aunque es posible mostrar las millonésimas de un componente de segundos de un valor de hora, puede que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">1 cienmilésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "fffff" representa los cinco dígitos más significativos de la fracción de segundos, es decir, las cienmilésimas de segundo de un valor de fecha y hora. Aunque se pueden mostrar las cienmilésimas de un componente de segundos de un valor de hora, es posible que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">1 cienmilésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "FFFFF" representa los cinco dígitos más significativos de la fracción de segundos, es decir, las cienmilésimas de segundo de un valor de fecha y hora. Sin embargo, no se muestran los ceros finales ni los dígitos de cinco ceros. Aunque se pueden mostrar las cienmilésimas de un componente de segundos de un valor de hora, es posible que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">1 diezmilésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "ffff" representa los cuatro dígitos más significativos de la fracción de segundos, es decir, las diezmilésimas de segundo de un valor de fecha y hora. Aunque es posible mostrar las diezmilésimas de un componente de segundo de un valor de hora, puede que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT versión 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">1 diezmilésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">El especificador de formato personalizado "FFFF" representa los cuatro dígitos más significativos de la fracción de segundos, es decir, las diezmilésimas de segundo de un valor de fecha y hora. Sin embargo, no se muestran los ceros finales ni los dígitos de cuatro ceros. Aunque es posible mostrar la diezmilésima parte de un segundo de un valor de hora, puede que ese valor no sea significativo. La precisión de los valores de fecha y hora depende de la resolución del reloj del sistema. En los sistemas operativos Windows NT 3.5 (y posterior) y Windows Vista, la resolución del reloj es aproximadamente de 10-15 milisegundos.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1 milésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">El especificador de formato personalizado "fff" representa los tres dígitos más significativos de la fracción de segundos, es decir, los milisegundos de un valor de fecha y hora.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1 milésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">El especificador de formato personalizado "FFF" representa los tres dígitos más significativos de la fracción de segundos, es decir, los milisegundos de un valor de fecha y hora. Sin embargo, no se muestran los ceros finales ni los dígitos de tres ceros.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">1 cienmilésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">El especificador de formato personalizado "ff" representa los dos dígitos más significativos de la fracción de segundos, es decir, la centésima parte de segundo de un valor de fecha y hora.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">1 cienmilésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">El especificador de formato personalizado "FF" representa los dos dígitos más significativos de la fracción de segundos, es decir, la centésima parte de un segundo de un valor de fecha y hora. Sin embargo, no se muestran los ceros finales ni los dígitos de dos ceros.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">1 diezmilésima parte de un segundo</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">1 diezmilésima parte de un segundo (no cero)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">El especificador de formato personalizado "F" representa el dígito más significativo de la fracción de segundos, es decir, representa las décimas de segundo en un valor de fecha y hora. Si el dígito es cero, no se muestra nada. Si el especificador de formato "F" se usa sin otros especificadores de formato, se interpreta como el especificador de formato de fecha y hora estándar "F". El número de especificadores de formato "F" que se usan con los métodos ParseExact, TryParseExact, ParseExact o TryParseExact indica el número máximo de dígitos más significativos de la fracción de segundos que puede haber para analizar correctamente la cadena.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">Reloj de 12 horas (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">El especificador de formato personalizado "h" representa la hora como un número del 1 al 12, es decir, mediante un reloj de 12 horas que cuenta las horas enteras desde la medianoche o el mediodía. Una hora determinada después de la medianoche no se distingue de la misma hora después del mediodía. La hora no se redondea y el formato de una hora de un solo dígito es sin un cero inicial. Por ejemplo, a las 5:43 de la mañana o de la tarde, este especificador de formato personalizado muestra "5". Si el especificador de formato "h" se usa sin otros especificadores de formato personalizado, se interpreta como un especificador de formato de fecha y hora estándar y produce una excepción FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">Reloj de 12 horas (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">El especificador de formato personalizado "hh" (más cualquier número de especificadores "h" adicionales) representa la hora como un número de 01 al 12, es decir, mediante un reloj de 12 horas que cuenta las horas enteras desde la medianoche o el mediodía. Una hora determinada después de la medianoche no se distingue de la misma hora después del mediodía. La hora no se redondea y el formato de una hora de un solo dígito es con un cero inicial. Por ejemplo, a las 5:43 de la mañana o de la tarde, este especificador de formato muestra "05".</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">Reloj de 24 horas (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">El especificador de formato personalizado "H" representa la hora como un número del 0 al 23; es decir, la hora se representa mediante un reloj de 24 horas de base cero que cuenta las horas desde la medianoche. Una hora con un solo dígito tiene un formato sin un cero inicial. Si el especificador de formato "H" se usa sin otros especificadores de formato personalizado, se interpreta como un especificador de formato de fecha y hora estándar y produce una excepción FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">Reloj de 24 horas (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">El especificador de formato personalizado "HH" (más cualquier número de especificadores "H" adicionales) representa la hora como un número de 00 a 23, es decir, mediante un reloj de 24 horas de base cero que cuenta las horas desde la medianoche. El formato de una hora de un solo dígito es con un cero inicial.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">código</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">separador de fecha</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">El especificador de formato personalizado "/" representa el separador de fecha, que se usa para diferenciar los años, los meses y los días. El separador de fecha localizado apropiado se recupera de la propiedad DateTimeFormatInfo.DateSeparator de la referencia cultural actual o especificada. Nota: Para cambiar el separador de fecha de una cadena de fecha y hora determinada, especifique el carácter separador dentro de un delimitador de cadena literal. Por ejemplo, la cadena de formato personalizado mm'/'dd'/'aaaa genera una cadena de resultado en la que "/" se usa siempre como el separador de fecha. Para cambiar el separador de fecha de todas las fechas de una referencia cultural, cambie el valor de la propiedad DateTimeFormatInfo.DateSeparator de la referencia cultural actual, o bien cree una instancia de un objeto DateTimeFormatInfo, asigne el carácter a su propiedad DateSeparator y llame a una sobrecarga del método de formato que incluye un parámetro IFormatProvider. Si el especificador de formato "/" se usa sin otros especificadores de formato personalizado, se interpreta como un especificador de formato de fecha y hora estándar y produce una excepción FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">día del mes (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">El especificador de formato personalizado "d" representa el día del mes como un número del 1 al 31. Un día con un solo dígito tiene un formato sin un cero inicial. Si el especificador de formato "d" se usa sin otros especificadores de formato personalizados, se interpreta como el especificador de formato de fecha y hora estándar "d".</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">día del mes (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">La cadena de formato personalizado "dd" representa el día del mes como un número del 01 al 31. Un día con un solo dígito tiene un formato con un cero inicial.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">día de la semana (abreviado)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">El especificador de formato personalizado "ddd" representa el nombre abreviado del día de la semana. El nombre abreviado localizado del día de la semana se recupera de la propiedad DateTimeFormatInfo.AbbreviatedDayNames de la referencia cultural actual o especificada.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">día de la semana (completo)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">El especificador de formato personalizado "dddd" (más cualquier número de especificadores "d" adicionales) representa el nombre completo del día de la semana. El nombre localizado del día de la semana se recupera de la propiedad DateTimeFormatInfo.DayNames de la referencia cultural actual o especificada.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">descartar</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">de metadatos</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">fecha/hora completa en formato largo</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">El especificador de formato estándar "F" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.FullDateTimePattern actual. Por ejemplo, la cadena de formato personalizado para la referencia cultural invariable es "dddd, dd MMMM aaaa HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">fecha/hora completa en formato corto</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Especificador de formato de fecha completa y hora corta ("f") El especificador de formato estándar "f" representa una combinación de los patrones de fecha larga ("D") y hora corta ("t"), separados por un espacio.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">fecha y hora general en formato largo</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">El especificador de formato estándar "G" representa una combinación de los patrones de fecha corta ("d") y hora larga ("T"), separados por un espacio.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">fecha y hora general en formato corto</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">El especificador de formato estándar "g" representa una combinación de los patrones de fecha corta ("d") y hora corta ("t"), separados por un espacio.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">sobrecarga genérica</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">sobrecargas genéricas</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">en {0} ({1} - {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">en el origen (atributo)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">fecha larga</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">El especificador de formato estándar "D" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.LongDatePattern actual. Por ejemplo, la cadena de formato personalizado para la referencia cultural invariable es "dddd, dd MMMM aaaa".</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">hora larga</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">El especificador de formato estándar "T" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.LongTimePattern de una referencia cultural específica. Por ejemplo, la cadena de formato personalizado para la referencia cultural invariable es "HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} "{1}"</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">minuto (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">El especificador de formato personalizado "m" representa el minuto como un número del 0 al 59. El minuto representa los minutos enteros que han transcurrido desde la última hora. El formato de un minuto con un solo dígito se representa sin cero inicial. Si el especificador de formato "m" se usa sin otros especificadores de formato personalizado, se interpreta como el especificador de formato de fecha y hora estándar "m".</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">minuto (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">El especificador de formato personalizado "mm" (más cualquier número de especificadores "m" adicionales) representa el minuto como un número del 00 al 59. El minuto representa los minutos enteros que han transcurrido desde la última hora. El formato de un minuto con un solo dígito se representa sin cero inicial.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">mes (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">El especificador de formato personalizado "M" representa el mes como un número del 1 al 12 (o de 1 a 13 para los calendarios con 13 meses). El formato de un mes con un solo dígito se representa sin cero inicial. Si el especificador de formato "M" se usa sin otros especificadores de formato personalizado, se interpreta como el especificador de formato de fecha y hora estándar "M".</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">mes (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">El especificador de formato personalizado "MM" representa el mes como un número del 01 al 12 (o de 1 a 13 para los calendarios con 13 meses). El formato de un mes con un solo dígito se representa sin cero inicial.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">mes (abreviado)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">El especificador de formato personalizado "MMM" representa el nombre abreviado del mes. El nombre abreviado adaptado del mes se recupera de la propiedad DateTimeFormatInfo.AbbreviatedMonthNames de la referencia cultural actual o especificada.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">día del mes</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">El especificador de formato estándar "M" o "m" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.MonthDayPattern actual. Por ejemplo, la cadena de formato personalizado para la referencia cultural invariable es "MMMM dd".</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">mes (completo)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">El especificador de formato personalizado "MMMM" representa el nombre completo del mes. El nombre adaptado del mes se recupera de la propiedad DateTimeFormatInfo.AbbreviatedMonthNames de la referencia cultural actual o especificada.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">sobrecarga</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">sobrecargas</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} Palabra clave</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Encapsular campo: '{0}' (y usar propiedad)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Encapsular campo: '{0}' (pero seguir usándolo)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Encapsular campos (y usar propiedad)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Encapsular campos (pero seguir usando el campo)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">No se pudo extraer la interfaz: la selección no está dentro de una clase/interfaz/estructura.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">No se pudo extraer la interfaz: el tipo no contiene ningún miembro que se pueda extraer a una interfaz.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">no se puede construir el árbol final</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">El tipo de los parámetros o el tipo de valor devuelto no puede ser un tipo anónimo: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">La selección no contiene instrucciones activas.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">La selección contiene un error o un tipo desconocido.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">El parámetro de tipo '{0}' está oculto por otro parámetro de tipo '{1}'.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">La dirección de una variable se usa dentro del código seleccionado.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">La asignación a campos de solo lectura se debe hacer en un constructor: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">el código generado se superpone con la parte oculta del código</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Agregar parámetros opcionales a "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Agregar parámetros a "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Generar el constructor delegado '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Generar el constructor '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Generar campo asignando constructor '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Generar Equals y GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Generar "Equals(object)"</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Generar "GetHashCode()"</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Generar constructor en '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Generar todo</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Generar miembro de enumeración "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Generar constante "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Generar la propiedad de solo lectura '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Generar la propiedad '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Generar el campo de solo lectura '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Generar campo "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Generar la variable local '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Generar {0} '{1}' en archivo nuevo</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Generar {0} anidado '{1}'</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Espacio de nombres global</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Implementar interfaz de forma abstracta</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Implementar interfaz a través de '{0}'</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Implementar interfaz</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Introducir el campo de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Introducir la variable local de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Introducir la constante de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Introducir la constante local de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Introducir el campo para todas las repeticiones de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Introducir la variable local para todas las repeticiones de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Introducir la constante para todas las repeticiones de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Introducir la constante local para todas las repeticiones de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Introducir la variable de consulta para todas las repeticiones de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Introducir la variable de consulta de '{0}'</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Tipos anónimos:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">es</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Representa un objeto cuyas operaciones se resolverán en tiempo de ejecución.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">constante</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">Campo</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">constante local</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">variable local</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">Etiqueta</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">período o era</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Los especificadores de formato personalizado "g" o "gg" (más cualquier número de especificadores "g" adicionales) representan el período o la era, como D.C. La operación de formato omite este especificador si la fecha a la que se va a dar formato no tiene una cadena de período o era asociada. Si el especificador de formato "g" se usa sin otros especificadores de formato personalizado, se interpreta como el especificador de formato de fecha y hora estándar "g".</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">variable de rango</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">parámetro</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">en</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Resumen:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Variables locales y parámetros</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Parámetros de tipo:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Devuelve:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Excepciones:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Comentarios:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">no está permitido generar código fuente para símbolos de este tipo</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">ensamblado</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">ubicación desconocida</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Tipo de miembro de interfaz inesperado: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Tipo de símbolo desconocido</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Generar propiedad abstracta "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Generar método abstracto "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Generar el método '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">El ensamblado solicitado ya se ha cargado desde '{0}'.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">El símbolo no tiene un icono.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">El método asincrónico no puede tener parámetros ref/out: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">El miembro está definido en metadatos.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Solo se puede cambiar la firma de un constructor, indizador, método o delegado.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Este símbolo tiene definiciones o referencias relacionadas en metadatos. Cambiar la firma puede provocar errores de compilación. ¿Quiere continuar?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Cambiar firma...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Generar nuevo tipo...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Error del analizador de diagnóstico de usuario.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">El analizador '{0}' produjo una excepción de tipo '{1}' con el mensaje '{2}'.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">El analizador '{0}' inició la siguiente excepción: '{1}'.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Simplificar nombres</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Simplificar acceso de miembros</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Quitar cualificación</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Se ha producido un error desconocido</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Disponible</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">No disponible ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">En origen</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">En&amp; archivo de supresión</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Quitar supresión {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Quitar supresión</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;pendiente&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Nota: Presione dos veces la tecla Tab para insertar el fragmento de código '{0}'.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Implementar la interfaz de forma explícita con el patrón de Dispose</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Implementar la interfaz con el patrón de Dispose</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Volver a evaluar prioridades de {0}(valor actual: '{1}')</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">El argumento no puede tener un elemento nulo.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">El argumento no puede estar vacío.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">El analizador no admite el diagnóstico notificado con identificador '{0}'.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Calculando corrección de todas las repeticiones de corrección de código...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Corregir todas las repeticiones</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Documento</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Proyecto</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Solución</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: eliminar el estado administrado (objetos administrados)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: establecer los campos grandes como NULL</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Compilador</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">Activo</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">valor de enumeración</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">campo const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">método</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">Operador</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">constructor</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">propiedad automática</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">Propiedad</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">descriptor de acceso de eventos</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">fecha y hora de rfc1123</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">El especificador de formato estándar "R" o "r" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.RFC1123Pattern. El patrón refleja un estándar definido y la propiedad es de solo lectura. Por lo tanto, siempre es el mismo, independientemente de la referencia cultural utilizada o del proveedor de formato proporcionado. La cadena de formato personalizado es "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". Cuando se usa este especificador de formato estándar, la operación de formato o análisis utiliza siempre la referencia cultural invariable.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">fecha y hora de recorrido de ida y vuelta</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">El especificador de formato estándar "O" o bien "o" representa una cadena de formato de fecha y hora personalizado con un patrón que conserva la información de la zona horaria y emite una cadena de resultado que se ajusta a la norma ISO 8601. Para valores de fecha y hora, este especificador de formato está diseñado para conservar los valores de fecha y hora junto con la propiedad DateTime.Kind en el texto. La cadena con formato se puede analizar de nuevo con el método DateTime.Parse (String, IFormatProvider, DateTimeStyles) o DateTime.ParseExact si el parámetro Styles se establece en DateTimeStyles.RoundtripKind. El especificador de formato estándar "O" o bien "o" se corresponde con la cadena de formato personalizado "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" para valores de DateTime y con la cadena de formato personalizado "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" para valores de DateTimeOffset. En esta cadena, los pares de comillas simples que delimitan los caracteres individuales, como los guiones, los dos puntos y la letra "T", indican que el carácter individual es un literal que no se puede cambiar. Los apóstrofos no aparecen en la cadena de salida. El especificador de formato estándar "O" o bien "o" (y la cadena de formato personalizado "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" aprovecha las tres formas en que ISO 8601 representa la información de la zona horaria para conservar la propiedad Kind de los valores de DateTime: El componente de zona horaria de los valores de fecha y hora de DateTimeKind.Local tiene una diferencia respecto a la hora UTC (por ejemplo, +01:00,-07:00). Todos los valores de DateTimeOffset también se representan con este formato. El componente de zona horaria de los valores de fecha y hora de DateTimeKind.Utc utilizan "Z" (que significa que la diferencia es cero) para representar la hora UTC. Los valores de fecha y hora de DateTimeKind.Unspecified no tienen información de zona horaria. Dado que el especificador de formato estándar "O" o bien "o" se ajusta a un estándar internacional, la operación de formato o análisis que usa el especificador siempre utiliza la referencia cultural invariable y el calendario gregoriano. Las cadenas que se pasan a los métodos Parse, TryParse, ParseExact y TryParseExact de DateTime y DateTimeOffset se pueden analizar usando el especificador de formato "O" o bien "o" si se encuentran en uno de estos formatos. En el caso de los objetos DateTime, la sobrecarga de análisis a la que llama debe incluir también un parámetro Styles con un valor de DateTimeStyles.RoundtripKind. Tenga en cuenta que si se llama a un método de análisis con la cadena de formato personalizada que corresponde al especificador de formato "O" o bien "o", no se obtendrán los mismos resultados que "O" o bien "o". Esto se debe a que los métodos de análisis que usan una cadena de formato personalizado no pueden analizar la representación de cadena de valores de fecha y hora que carecen de un componente de zona horaria o utilizan "Z" para indicar la hora UTC.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">segundo (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">El especificador de formato personalizado "s" representa los segundos como un número del 0 al 59. El resultado representa los segundos enteros que han transcurrido desde el último minuto. El formato de un segundo con un solo dígito se representa sin cero inicial. Si el especificador de formato "s" se usa sin otros especificadores de formato personalizado, se interpreta como el especificador de formato de fecha y hora estándar "s".</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">segundo (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">El especificador de formato personalizado "ss" (más cualquier número de especificadores "s" adicionales) representa los segundos como un número del 00 al 59. El resultado representa los segundos enteros que han transcurrido desde el último minuto. El formato de un segundo con un solo dígito se representa sin un cero inicial.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">fecha corta</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">El especificador de formato estándar "d" representa una cadena de formato de fecha y hora personalizado definida por una propiedad DateTimeFormatInfo.ShortDatePattern de una referencia cultural específica. Por ejemplo, la cadena de formato personalizado devuelta por la propiedad ShortDatePattern de la referencia cultural invariable es "MM/DD/AAAA".</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">hora corta</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">El especificador de formato estándar "t" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.ShortTimePattern actual. Por ejemplo, la cadena de formato personalizado para la referencia cultural invariable es "HH:mm".</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">fecha y hora ordenable</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">El especificador de formato estándar "s" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.SortableDateTimePattern. El patrón refleja un estándar definido (ISO 8601) y la propiedad es de solo lectura. Por lo tanto, siempre es el mismo, independientemente de la referencia cultural utilizada o del proveedor de formato proporcionado. La cadena de formato personalizado es "yyyy'-'MM'-'dd'T'HH':'mm':'ss". La finalidad del especificador de formato "s" es producir cadenas de resultados que se ordenen coherentemente de forma ascendente o descendente según los valores de fecha y hora. Como resultado, aunque el especificador de formato estándar "s" representa un valor de fecha y hora en un formato coherente, la operación de formato no modifica el valor del objeto de fecha y hora al que se está dando formato para reflejar su propiedad DateTime.Kind o DateTimeOffset.Offset. Por ejemplo, las cadenas de resultados generadas por el formato de los valores de fecha y hora 2014-11-15T18:32:17+00:00 y 2014-11-15T18:32:17+08:00 son idénticas. Cuando se usa este especificador de formato estándar, la operación de formato o análisis utiliza siempre la referencia cultural invariable.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">constructor estático</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'símbolo' no puede ser un espacio de nombres.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">separador de la hora</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">El especificador de formato personalizado ":" representa el separador de hora, que se usa para diferenciar las horas, los minutos y los segundos. El separador de hora localizado apropiado se recupera de la propiedad DateTimeFormatInfo.TimeSeparator de la referencia cultural actual o especificada. Nota: Para cambiar el separador de hora de una cadena de fecha y hora determinada, especifique el carácter separador dentro de un delimitador de cadena literal. Por ejemplo, la cadena de formato personalizado hh'_'dd'_'ss genera una cadena de resultado en la que "_" (un carácter de subrayado) siempre se usa como separador de hora. Para cambiar el separador de hora de todas las fechas de una referencia cultural, cambie el valor de la propiedad DateTimeFormatInfo.TimeSeparator de la referencia cultural actual, o bien cree una instancia del objeto DateTimeFormatInfo, asigne el carácter a su propiedad TimeSeparator y llame a una sobrecarga del método de formato que incluye un parámetro IFormatProvider. Si el especificador de formato ":" se usa sin otros especificadores de formato personalizados, se interpreta como un especificador de formato de fecha y hora estándar y produce una excepción FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">zona horaria</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">El especificador de formato personalizado "K" representa la información de zona horaria de un valor de fecha y hora. Cuando se usa este especificador de formato con valores DateTime, la cadena de resultado se define por el valor de la propiedad DateTime.Kind: En el caso de la zona horaria local (valor de la propiedad DateTime.Kind de DateTimeKind.Local), este especificador es equivalente al especificador "zzz" y genera una cadena de resultado que contiene el desplazamiento local de la hora universal coordinada (UTC); por ejemplo, "-07:00". Para una hora UTC (un valor de propiedad DateTime. Kind de DateTimeKind. UTC), la cadena de resultado incluye un carácter "Z" para representar una fecha UTC. Para una hora de una zona horaria no especificada (una hora cuya propiedad DateTime. Kind igual a DateTimeKind. no especificada), el resultado es equivalente a String. Empty. Para los valores de DateTimeOffset, el especificador de formato "K" es equivalente al especificador de formato "Zzz" y genera una cadena de resultado que contiene el desplazamiento del valor DateTimeOffset con respecto a la hora UTC. Si el especificador de formato "K" se usa sin otros especificadores de formato personalizado, se interpreta como un especificador de formato de fecha y hora estándar y produce una FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">restricción de tipo</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">parámetro de tipo</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">atributo</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Reemplazar '{0}' y '{1}' por la propiedad</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Reemplazar '{0}' por la propiedad</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Método al que se hace referencia implícita</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Generar tipo '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Generar {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Cambie '{0}' a '{1}'.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">El método no invocado no se puede reemplazar por la propiedad.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Solo los métodos que tienen un solo argumento, que no es una declaración de variable out, se pueden reemplazar por una propiedad.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">No se puede crear una instancia de analizador {0} desde {1}: {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">El ensamblado {0} no contiene ningún analizador.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">No se puede cargar el ensamblado del analizador {0}: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Convertir el método en sincrónico</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">desde {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Buscar e instalar la última versión</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Usar la versión local '{0}'</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Usar la versión '{0}' instalada localmente '{1}' Esta versión se utiliza en: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Buscar e instalar la última versión de '{0}'</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Instalar con el Administrador de paquetes...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Instalar '{0} {1}'</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Instalar la versión '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Generar variable '{0}'</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Clases</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Constantes</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Delegados</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Enumeraciones</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Eventos</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Métodos de extensión</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Campos</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Interfaces</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Variables locales</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Métodos</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Módulos</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Espacios de nombres</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Propiedades</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Estructuras</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parámetros:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">El elemento variádico SignatureHelpItem debe tener al menos un parámetro.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Reemplazar '{0}' por un método</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Reemplazar '{0}' por métodos</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Propiedad a la que se hace referencia de forma implícita</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">La propiedad no se puede reemplazar por una llamada a un método de forma segura</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Convertir a cadena interpolada</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Mover tipo a {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Cambiar nombre de archivo por {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Cambiar nombre de tipo por {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Quitar etiqueta</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Agregar nodos de parámetros que faltan</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Convertir el ámbito contenedor en asincrónico</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Convertir el ámbito contenedor en asincrónico (devolver Task)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Desconocido)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Usar tipo de marco de trabajo</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Instalar paquete '{0}'</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">proyecto {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">'{0}' completo</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Quitar referencia a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Palabras clave</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Fragmentos de código</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Todo minúsculas</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Todo mayúsculas</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Primera palabra en mayúsculas</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Pascal Case</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Quitar documento "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Agregar documento "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Agregar nombre de argumento "{0}"</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Tomar "{0}"</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Tomar ambas</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Tomar parte inferior</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Tomar parte superior</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Quitar variable no utilizada</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Convertir a binario</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Convertir a decimal</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Convertir a hexadecimal</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Separar miles</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Separar palabras</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Separar cuartetos</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Quitar separadores</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Agregar parámetro a "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Generar constructor...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Seleccionar miembros para usarlos como parámetros del constructor</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Seleccionar miembros para usar en Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Generar invalidaciones...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Seleccionar miembros para invalidar</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Agregar comprobación de valores null</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Agregar comprobación de "string.IsNullOrEmpty"</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Agregar comprobación de "string.IsNullOrWhiteSpace"</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Inicializar campo "{0}"</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Inicializar propiedad "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Agregar comprobaciones de valores null</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Generar operadores</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Implementar {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">El diagnóstico notificado "{0}" tiene una ubicación de origen en el archivo "{1}", que no forma parte de la compilación que se está analizando.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">El diagnóstico notificado "{0}" tiene una ubicación de origen "{1}" en el archivo "{2}", que está fuera del archivo dado.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">en {0} (proyecto {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Agregar modificadores de accesibilidad</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Mover la declaración cerca de la referencia</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Convertir en propiedad completa</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Advertencia: El método reemplaza el símbolo de los metadatos.</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Usar {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Agregar el nombre de argumento "{0}" (incluidos los argumentos finales)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">función local</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">indizador</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Tipo de alias ambiguo "{0}"</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Advertencia: la colección se modificó durante la iteración.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Advertencia: límite de función cruzada de variable de iteración.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Advertencia: es posible que la colección se modifique durante la iteración.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">fecha/hora completa universal</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">El especificador de formato estándar "U" representa una cadena de formato de fecha y hora personalizada que está definida por una propiedad DateTimeFormatInfo.FullDateTimePattern de una referencia cultural especificada. El patrón es igual que el patrón "F", pero el valor de DateTime se cambia automáticamente a UTC antes de darle formato.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">fecha/hora universal que se puede ordenar</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">El especificador de formato estándar "u" representa una cadena de formato de fecha y hora personalizado que está definida por la propiedad DateTimeFormatInfo.UniversalSortableDateTimePattern. El patrón refleja un estándar definido y la propiedad es de solo lectura. Por lo tanto, siempre es el mismo, independientemente de la referencia cultural utilizada o del proveedor de formato proporcionado. La cadena de formato personalizado es "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". Cuando se usa este especificador de formato estándar, la operación de formato o análisis utiliza siempre la referencia cultural invariable. Aunque la cadena de resultado debe expresar una hora como hora universal coordinada (UTC), no se realizará ninguna conversión del valor DateTime original durante la operación de formato. Por lo tanto, debe convertir un valor DateTime a UTC llamando al método DateTime.ToUniversalTime antes de aplicarle formato.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">actualización de los usos en el miembro contenedor</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">actualización de usos en el proyecto contenedor</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">actualización de los usos en el tipo contenedor</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">actualización de usos en proyectos dependientes</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">desfase en horas y minutos respecto a UTC</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Con los valores de DateTime, el especificador de formato personalizado "zzz" representa el desfase con signo de la zona horaria del sistema operativo local respecto a la hora UTC, medido en horas y minutos. No refleja el valor de la propiedad DateTime.Kind de una instancia. Por este motivo, no se recomienda usar el especificador de formato "zzz" con valores de DateTime. Con valores de DateTimeOffset, este especificador de formato representa el desfase del valor de DateTimeOffset con respecto a la hora UTC en horas y minutos. El desfase se muestra siempre con un signo delante. Un signo más (+) indica las horas de adelanto respecto a la hora UTC y un signo menos (-) indica las horas de retraso respecto a la hora UTC. Cuando el desfase es de un solo dígito, se le pone un cero delante.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">desfase respecto a la hora UTC (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Con los valores de DateTime, el especificador de formato personalizado "z" representa el desfase con signo de la zona horaria del sistema operativo local respecto a la hora UTC (hora universal coordinada), medido en horas y minutos. No refleja el valor de la propiedad DateTime.Kind de una instancia. Por este motivo, no se recomienda usar el especificador de formato "z" con valores de DateTime. Con valores de DateTimeOffset, este especificador de formato representa el desfase del valor de DateTimeOffset con respecto a la hora UTC en horas. El desfase se muestra siempre con un signo delante. Un signo más (+) indica las horas de adelanto respecto a la hora UTC y un signo menos (-) indica las horas de retraso respecto a la hora UTC. Cuando el desfase es de un solo dígito, se le pone un cero delante. Si el especificador de formato "z" se usa sin otros especificadores de formato personalizados, se interpreta como un especificador de formato de fecha y hora estándar y produce una excepción de formato (FormatException).</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">desfase respecto a la hora UTC (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Con valores de DateTime, el especificador de formato personalizado "zz" representa el desfase con signo de la zona horaria del sistema operativo local respecto a la hora UTC, medido en horas. No refleja el valor de la propiedad DateTime.Kind de una instancia. Por este motivo, no se recomienda usar el especificador de formato "zz" con valores de DateTime. Con valores de DateTimeOffset, este especificador de formato representa el desfase del valor DateTimeOffset con respecto a la hora UTC en horas. El desfase se muestra siempre con un signo delante. Un signo más (+) indica las horas de adelanto respecto a la hora UTC y un signo menos (-) indica las horas de retraso respecto a la hora UTC. Cuando el desfase es de un solo dígito, se le pone un cero delante.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">rango [x-y] en orden inverso</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">año (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">El especificador de formato personalizado "y" representa el año como un número de uno o dos dígitos. Si el año tiene más de dos dígitos, en el resultado solo aparecen los dos dígitos de orden inferior. Si el primer dígito de un año de dos dígitos es un cero (por ejemplo, 2008), no se le pone un cero delante al número. Si el especificador de formato "y" se usa sin otros especificadores de formato personalizados, se interpreta como el especificador de formato de fecha y hora estándar "y".</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">año (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">El especificador de formato personalizado "yy" representa el año como un número de dos dígitos. Si el año tiene más de dos dígitos, en el resultado solo aparecen los dos dígitos de orden inferior. Si el año de dos dígitos tiene menos de dos dígitos significativos, se le pone un cero delante al número para tener dos dígitos. En una operación de análisis, un año de dos dígitos que se analiza con el especificador de formato personalizado "yy" se interpreta en función de la propiedad Calendar.TwoDigitYearMax del calendario actual del proveedor de formato. En el ejemplo siguiente se analiza la representación de cadena de una fecha que tiene un año de dos dígitos con el calendario gregoriano predeterminado de la referencia cultural en-US, que, en este caso, es la referencia cultural actual. Después, se cambia el objeto CultureInfo de la referencia cultural actual para que use un objeto GregorianCalendar cuya propiedad TwoDigitYearMax se ha modificado.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">año (3-4 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">El especificador de formato personalizado "yyy" representa el año con un mínimo de tres dígitos. Si el año tiene más de tres dígitos significativos, se incluyen en la cadena de resultado. Si el año tiene menos de tres dígitos, se le ponen ceros delante al número hasta tener tres dígitos.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">año (4 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">El especificador de formato personalizado "yyyy" representa el año con un mínimo de cuatro dígitos. Si el año tiene más de cuatro dígitos significativos, se incluyen en la cadena de resultado. Si el año tiene menos de cuatro dígitos, se le ponen ceros delante al número hasta tener cuatro dígitos.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">año (5 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">El especificador de formato personalizado "yyyyy" (más cualquier número de especificadores "y" adicionales) representa el año con un mínimo de cinco dígitos. Si el año tiene más de cinco dígitos significativos, se incluyen en la cadena de resultado. Si el año tiene menos de cinco dígitos, se le ponen ceros delante al número hasta tener cinco dígitos. Si hay especificadores "y" adicionales, al número se le ponen delante tantos ceros como sean necesarios para tener el número de especificadores "y".</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">mes del año</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">El especificador de formato estándar "Y" o "y" representa una cadena de formato de fecha y hora personalizado definida por la propiedad DateTimeFormatInfo.YearMonthPattern de una referencia cultural especificada. Por ejemplo, la cadena de formato personalizado para la referencia cultural invariable es "yyyy MMMM".</target> <note /> </trans-unit> </body> </file> </xliff>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/xlf/FeaturesResources.fr.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="fr" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (abrégé)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">Le spécificateur de format personnalisé "t" représente le premier caractère du désignateur AM/PM. Le désignateur localisé approprié est récupéré à partir de la propriété DateTimeFormatInfo.AMDesignator ou DateTimeFormatInfo.PMDesignator de la culture actuelle ou spécifique. Le désignateur AM est utilisé pour toutes les heures comprises entre 0:00:00 (minuit) et 11:59:59.999. Le désignateur PM est utilisé pour toutes les heures comprises entre 12:00:00 (midi) et 23:59:59.999. Si le spécificateur de format "t" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "t".</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (complet)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">Le spécificateur de format personnalisé "tt" (plus n'importe quel nombre de spécificateurs "t" supplémentaires) représente l'intégralité du désignateur AM/PM. Le désignateur localisé approprié est récupéré à partir de la propriété DateTimeFormatInfo.AMDesignator ou DateTimeFormatInfo.PMDesignator de la culture actuelle ou spécifique. Le désignateur AM est utilisé pour toutes les heures comprises entre 0:00:00 (minuit) et 11:59:59.999. Le désignateur PM est utilisé pour toutes les heures comprises entre 12:00:00 (midi) et 23:59:59.999. Veillez à utiliser le spécificateur "tt" pour les langues où il est nécessaire de maintenir la distinction entre AM et PM. Par exemple, en japonais, les désignateurs AM et PM diffèrent au niveau du second caractère au lieu du premier.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Une soustraction doit être le dernier élément dans une classe de caractères</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Ajouter l'attribut 'DebuggerDisplay'</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Ajouter un cast explicite</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Ajouter le nom du membre</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Ajouter des vérifications de valeur null pour tous les paramètres</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Ajouter un paramètre optionnel au constructeur</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Ajouter un paramètre à '{0}' (et aux remplacements/implémentations)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Ajouter un paramètre au constructeur</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Ajoutez une référence de projet à '{0}'.</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Ajoutez une référence à '{0}'.</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Les actions ne peuvent pas être vides.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Ajouter le nom d'élément tuple '{0}'</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Aligner les arguments enveloppés</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Aligner les paramètres enveloppés</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Les conditions d'alternance ne peuvent pas être des commentaires</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Les conditions d'alternance n'effectuent pas de capture et ne peuvent pas être nommées</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Appliquer les préférences d'en-tête de fichier</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Appliquer les préférences d'initialisation des objets/collections</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">La tâche attendue retourne '{0}'</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">La tâche attendue ne retourne aucune valeur</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Les classes de base contiennent des membres non implémentés inaccessibles</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Impossible d'appliquer les changements -- Erreur inattendue : '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Impossible d'inclure la classe \{0} dans la plage de caractères</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Les nombres de groupe de capture doivent être inférieurs ou égaux à Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Le nombre de captures ne peut pas être égal à zéro</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;déduire&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;omettre&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Remplacer par l'espace de noms général</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Aucun changement n'est autorisé en cas d'arrêt à la suite d'une exception</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Les changements apportés au projet '{0}' ne sont pas appliqués tant que l'application est en cours d'exécution</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Configurer le style de code {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Configurer la gravité {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Configurer la gravité pour tous les analyseurs '{0}'</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Configurer la gravité pour tous les analyseurs</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Convertir en LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Ajouter à '{0}'</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Convertir en classe</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Convertir en LINQ (formulaire d'appel)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Convertir en enregistrement</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Convertir en struct d’enregistrement</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Convertir en struct</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Convertir le type en '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Créer et affecter le champ '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Créer et affecter la propriété '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Créer et affecter ce qui reste en tant que champs</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Créer et affecter ce qui reste en tant que propriétés</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Ne changez pas ce code. Placez le code de nettoyage dans la méthode '{0}'</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Le contenu actuel du fichier source '{0}' ne correspond pas à la source générée. Les changements apportés à ce fichier durant le débogage ne seront pas appliqués tant que son contenu ne correspondra pas à la source générée.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Le document doit être contenu dans l'espace de travail qui a créé ce service</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Modifier et continuer</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Fonctionnalité Modifier et Continuer interdite par le module</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Les changements apportés au projet '{0}' empêchent la session de débogage de se poursuivre : {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">Modifier et continuer n’est pas pris en charge par le runtime.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Erreur durant la lecture du fichier '{0}' : {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Erreur lors de la création de l'instance de CodeFixProvider</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Erreur lors de la création de l'instance de CodeFixProvider '{0}'</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Exemple :</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Exemples :</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Les méthodes d'enregistrement implémentées explicitement doivent avoir des noms de paramètres qui correspondent à l'équivalent « {0} » généré par le compilateur.</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Extraire la classe de base...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Extraire l'interface...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Extraire la fonction locale</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Extraire une méthode</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Impossible d’analyser le flux de données pour : {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Corriger la mise en forme</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Corriger la faute de frappe '{0}'</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Mettre en forme le document</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Mise en forme du document</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Générer des opérateurs de comparaison</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Générer le constructeur dans '{0}' (avec les champs)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Générer le constructeur dans '{0}' (avec les propriétés)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Générer pour '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Générer le paramètre '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Générer le paramètre '{0}' (et les substitutions/implémentations)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Caractère \ non autorisé à la fin du modèle</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">{x,y} non autorisé avec x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Implémenter '{0}' explicitement</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Implémenter '{0}' implicitement</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Implémenter une classe abstraite</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Implémenter toutes les interfaces explicitement</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Implémenter toutes les interfaces implicitement</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Implémenter tous les membres explicitement</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Implémenter explicitement</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Implémenter implicitement</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Implémenter les membres restants explicitement</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Implémenter via '{0}'</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Caractère d'échappement \p{X} incomplet</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Mettre en retrait tous les arguments</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Mettre en retrait tous les paramètres</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Mettre en retrait les arguments enveloppés</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Mettre en retrait les paramètres enveloppés</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">Inline '{0}'</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Inline et conserver '{0}'</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Chiffres hexadécimaux insuffisants</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Introduire une constante</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Introduire le champ</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Introduire un élément local</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Introduire la variable de requête</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Nom de groupe non valide : les noms de groupe doivent commencer par un caractère alphabétique</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Rendre la classe 'abstract'</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Rendre statique</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Inverser un élément conditionnel</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">incorrecte</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Caractère d'échappement incorrect \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Référence arrière nommée \k&lt;...&gt; incorrecte</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Fusionner avec l'instruction '{0}' imbriquée</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Fusionner avec la prochaine instruction '{0}'</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Fusionner avec l'instruction '{0}' externe</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Fusionner avec la précédente instruction '{0}'</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} doit retourner un flux qui prend en charge les opérations de lecture et de recherche.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Caractère de contrôle manquant</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Déplacer le contenu vers un espace de noms...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Déplacer le fichier vers '{0}'</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Déplacer le fichier dans le dossier racine du projet</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Déplacer vers un espace de noms...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Quantificateur imbriqué {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Aucun emplacement valide pour l'insertion de l'appel de méthode.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Pas assez de )'s</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Opérateurs</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">La référence de propriété ne peut pas être mise à jour</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Tirer '{0}' vers le haut</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Tirer '{0}' jusqu'à '{1}'</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Tirer les membres jusqu'au type de base...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Tirer (pull) le ou les membres jusqu'à la nouvelle classe de base...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Le quantificateur {x,y} ne suit rien</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">référence à un groupe indéfini</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Référence au nom de groupe indéfini {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Référence à un numéro de groupe indéfini {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Tous les caractères de contrôle. Cela inclut les catégories Cc, Cf, Cs, Co et Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">tous les caractères de contrôle</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Toutes les marques diacritiques. Cela inclut les catégories Mn, Mc et Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">toutes les marques diacritiques</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Tous les caractères correspondant à des lettres. Cela inclut les caractères Lu, Ll, Lt, Lm et Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">tous les caractères correspondant à des lettres</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Tous les nombres. Cela inclut les catégories Nd, Nl et No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">tous les nombres</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Tous les caractères de ponctuation. Cela inclut les catégories Pc, Pd, Ps, Pe, Pi, Pf et Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">tous les caractères de ponctuation</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Tous les caractères de séparation. Cela inclut les catégories Zs, Zl et Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">tous les caractères de séparation</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Tous les symboles. Cela inclut les catégories Sm, Sc, Sk et So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">tous les symboles</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Vous pouvez utiliser la barre verticale (|) pour faire correspondre une série de modèles, où le caractère | sépare chaque modèle.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">alternance</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Le point (.) correspond à n'importe quel caractère sauf \n (le caractère nouvelle ligne, \u000A). Si un modèle d'expression régulière est modifié par l'option RegexOptions.Singleline, ou si la partie du modèle qui contient la classe de caractères . est modifiée par l'option 's', le . correspond à n'importe quel caractère.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">tout caractère</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Les groupes atomiques (connus dans certains moteurs d'expressions régulières comme des sous-expressions sans retour sur trace, des sous-expressions atomiques ou des sous-expressions une fois uniquement) désactivent le retour sur trace. Le moteur d'expressions régulières recherche une correspondance avec autant de caractères que possible dans la chaîne d'entrée. Quand aucune autre correspondance n'est possible, il n'effectue pas de retour sur trace pour tenter de trouver d'autres correspondances de modèles. (En d'autres termes, la sous-expression correspond uniquement aux chaînes qui correspondent à la sous-expression seule, elle ne tente pas de rechercher une chaîne basée sur la sous-expression et les sous-expressions qui la suivent.) Cette option est recommandée si vous savez que le retour sur trace va être un échec. En empêchant le moteur d'expressions régulières d'effectuer des recherches inutiles, vous améliorez les performances.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">groupe atomique</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Correspond au caractère de retour arrière, \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">caractère de retour arrière</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Une définition de groupe d'équilibrage supprime la définition d'un groupe défini et stocke, dans le groupe actuel, l'intervalle entre le groupe défini et le groupe actuel. 'nom1' est le groupe actuel facultatif, 'nom2' est un groupe défini et 'sous-expression' est un modèle d'expression régulière valide. La définition du groupe d'équilibrage supprime la définition de name2 et stocke l'intervalle entre name2 et name1 dans name1. Si aucun groupe name2 n'est défini, la correspondance fait l'objet d'une rétroaction. Dans la mesure où la suppression de la dernière définition de name2 révèle la définition précédente de name2, cette construction vous permet d'utiliser la pile de captures du groupe name2 en tant que compteur permettant d'effectuer le suivi des constructions imbriquées telles que les parenthèses ou les crochets d'ouverture et de fermeture. La définition du groupe d'équilibrage utilise 'nom2' en tant que pile. Le caractère de début de chaque construction imbriquée est placé dans le groupe et dans sa collection Group.Captures. Quand le caractère de fermeture correspond, le caractère d'ouverture correspondant est supprimé du groupe, et la collection Captures est réduite d'un élément. Une fois que les caractères d'ouverture et de fermeture de toutes les constructions imbriquées ont été mis en correspondance, 'nom1' est vide.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">groupe d'équilibrage</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">groupe de base</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Correspond au caractère de cloche (alarme), \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">caractère de cloche</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Correspond au caractère de retour chariot, \u000D. Notez que \r n'est pas équivalent au caractère nouvelle ligne, \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">caractère de retour chariot</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">La soustraction d'une classe de caractères génère un jeu de caractères qui résulte de l'exclusion des caractères d'une classe de caractères à partir d'une autre classe de caractères. 'groupe_base' est une plage ou un groupe de caractères positif ou négatif. Le composant 'groupe_exclu' est un autre groupe de caractères positif ou négatif, ou une autre expression de soustraction de classe de caractères (en d'autres termes, vous pouvez imbriquer des expressions de soustraction de classe de caractères).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">soustraction de classe de caractères</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">groupe de caractères</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">commentaire</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Cet élément de langage tente d'établir une correspondance avec l'un des deux modèles, selon qu'il peut correspondre ou non à un modèle initial. 'expression' est le modèle initial à rechercher, 'oui' est le modèle à rechercher si 'expression' retourne une correspondance, et 'non' est le modèle facultatif à rechercher si 'expression' ne retourne aucune correspondance.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">correspondance d'expression conditionnelle</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Cet élément de langage tente d'établir une correspondance avec l'un des deux modèles, selon qu'il correspond ou non à un groupe de capture spécifié. 'nom' est le nom (ou le numéro) d'un groupe de capture, 'oui' est l'expression à rechercher si 'nom' (ou 'numéro') a une correspondance, et 'non' est l'expression facultative à rechercher dans le cas contraire.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">correspondance de groupe conditionnelle</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">L'ancre \G spécifie qu'une correspondance doit exister à l'emplacement où la correspondance précédente a pris fin. Quand vous utilisez cette ancre avec la méthode Regex.Matches ou Match.NextMatch, elle vérifie que toutes les correspondances sont contiguës.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">correspondances contiguës</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Correspond au caractère de contrôle ASCII, où X est la lettre du caractère de contrôle. Exemple : \cC est CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">caractère de contrôle</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d correspond à n'importe quel chiffre décimal. Il est équivalent au modèle d'expression régulière \p{Nd}, qui inclut les chiffres décimaux standard allant de 0 à 9 ainsi que les chiffres décimaux d'un certain nombre d'autres jeux de caractères. Si vous spécifiez un comportement conforme à ECMAScript, \d équivaut à [0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">caractère de chiffre décimal</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Le signe dièse (#) marque un commentaire en mode x, qui commence au caractère # sans séquence d'échappement, à la fin du modèle d'expression régulière, et se poursuit jusqu'à la fin de la ligne. Pour utiliser cette construction, vous devez activer l'option x (via les options incluses) ou indiquer la valeur de RegexOptions.IgnorePatternWhitespace au paramètre d'option durant l'instanciation de l'objet Regex ou l'appel d'une méthode Regex statique.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">commentaire de fin de ligne</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">L'ancre \z spécifie qu'une correspondance doit exister à la fin de la chaîne d'entrée. Comme l'élément de langage $, \z ignore l'option RegexOptions.Multiline. Contrairement à l'élément de langage \Z, \z ne permet pas de rechercher une correspondance avec un \n caractère situé à la fin d'une chaîne. Il peut donc correspondre uniquement à la dernière ligne de la chaîne d'entrée.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">fin de chaîne uniquement</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">L'ancre \Z spécifie qu'une correspondance doit exister à la fin de la chaîne d'entrée ou avant \n à la fin de la chaîne d'entrée. Elle est identique à l'ancre $, à ceci près que \Z ignore l'option RegexOptions.Multiline. Ainsi, dans une chaîne multiligne, elle peut correspondre uniquement à la fin de la dernière ligne, ou à la dernière ligne située avant \n. L'ancre \Z correspond à \n mais ne correspond pas à \r\n (combinaison de caractères CR/LF). Pour rechercher une correspondance avec CR/LF, ajoutez \r?\Z au modèle d'expression régulière.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">fin de chaîne ou avant la fin d'une nouvelle ligne</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">L'ancre $ spécifie que le modèle précédent doit exister à la fin de la chaîne d'entrée ou avant \n à la fin de la chaîne d'entrée. Si vous utilisez $ avec l'option RegexOptions.Multiline, la correspondance peut également exister à la fin d'une ligne. L'ancre $ correspond à \n mais ne correspond pas à \r\n (combinaison de caractères de retour chariot et nouvelle ligne, c'est-à-dire CR/LF). Pour rechercher une correspondance avec la combinaison de caractères CR/LF, ajoutez \r?$ au modèle d'expression régulière.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">fin de chaîne ou de ligne</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Correspond au caractère d'échappement, \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">caractère d'échappement</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">groupe exclu</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">expression</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Correspond au caractère de saut de page, \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">caractère de saut de page</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Cette construction de regroupement applique ou désactive les options spécifiées dans une sous-expression. Les options à activer sont spécifiées après le point d'interrogation, et les options à désactiver après le signe moins. Les options autorisées sont les suivantes : i Utilise la correspondance sans respect de la casse. m Utilise le mode multiligne, où ^ et $ correspondent au début et à la fin de chaque ligne (au lieu du début et de la fin de la chaîne d'entrée). s Utilise le mode monoligne, où le point (.) correspond à chaque caractère (au lieu de chaque caractère sauf \n). n Ne capture pas les groupes sans nom. Les seules captures valides sont des groupes explicitement nommés ou numérotés ayant la forme (?&lt;nom&gt; sous-expression). x Exclut les espaces blancs sans séquence d'échappement du modèle, et active les commentaires après un signe dièse (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">options de groupe</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Correspond à un caractère ASCII, où ## est un code de caractère hexadécimal à deux chiffres.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">échappement hexadécimal</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">La construction (?# commentaire) vous permet d'inclure un commentaire dans une expression régulière. Le moteur d'expressions régulières n'utilise aucune partie du commentaire dans les critères spéciaux, bien que le commentaire soit inclus dans la chaîne retournée par la méthode Regex.ToString. Le commentaire finit à la première parenthèse fermante.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">commentaire inclus</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Active ou désactive des options de critères spéciaux spécifiques pour le reste d'une expression régulière. Les options à activer sont spécifiées après le point d'interrogation, et les options à désactiver après le signe moins. Les options autorisées sont les suivantes : i Utilise la correspondance sans respect de la casse. m Utilise le mode multiligne, où ^ et $ correspondent au début et à la fin de chaque ligne (au lieu du début et de la fin de la chaîne d'entrée). s Utilise le mode monoligne, où le point (.) correspond à chaque caractère (au lieu de chaque caractère sauf \n). n Ne capture pas les groupes sans nom. Les seules captures valides sont des groupes explicitement nommés ou numérotés ayant la forme (?&lt;nom&gt; sous-expression). x Exclut les espaces blancs sans séquence d'échappement du modèle, et active les commentaires après un signe dièse (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">options incluses</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Problème de regex : {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">lettre, minuscule</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">lettre, modificateur</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">lettre, autre</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">lettre, première lettre des mots en majuscule</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">lettre, majuscule</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">marque, englobante</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">marque, sans espacement</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">marque, espacement combiné</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">Le quantificateur {n,}? recherche une correspondance avec l'élément précédent au moins n fois, où n est un entier, mais de manière aussi limitée possible. Il s'agit de l'équivalent paresseux du quantificateur gourmand {n,}</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">rechercher une correspondance au moins 'n' fois (paresseux)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">Le quantificateur {n,} recherche une correspondance avec l'élément précédent au moins n fois, où n est un entier. {n,} est un quantificateur gourmand dont l'équivalent paresseux est {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">rechercher une correspondance au moins 'n' fois</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">Le quantificateur {n,m}? recherche une correspondance avec l'élément précédent entre n et m fois, où n et m sont des entiers, mais de manière aussi limitée possible. Il s'agit de l'équivalent paresseux du quantificateur gourmand {n,m}</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">rechercher une correspondance au moins 'n' fois (paresseux)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">Le quantificateur {n,m} correspond à l'élément précédent au moins n fois, mais pas plus de m fois, où n et m sont des entiers. {n,m} est un quantificateur gourmand dont l'équivalent paresseux est {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">rechercher une correspondance entre 'm' et 'n' fois</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">Le quantificateur {n}? recherche une correspondance avec l'élément précédent exactement n fois, où n est un entier. Il s'agit de l'équivalent paresseux du quantificateur gourmand {n}+</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">rechercher une correspondance exactement 'n' fois (paresseux)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">Le quantificateur {n} recherche une correspondance avec l'élément précédent exactement n fois, où n est un entier. {n} est un quantificateur gourmand dont l'équivalent paresseux est {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">rechercher une correspondance exactement 'n' fois</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">Le quantificateur recherche une correspondance avec l'élément précédent, une ou plusieurs fois, mais de manière aussi limitée possible. Il s'agit de l'équivalent paresseux du quantificateur gourmand +</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">rechercher une correspondance une ou plusieurs fois (paresseux)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">Le quantificateur + recherche une correspondance avec l'élément précédent, une ou plusieurs fois. Il est équivalent au quantificateur {1,}. + est un quantificateur gourmand dont l'équivalent paresseux est +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">rechercher une correspondance une ou plusieurs fois</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">Le quantificateur *? recherche une correspondance avec l'élément précédent, zéro ou plusieurs fois, mais de manière aussi limitée possible. Il s'agit de l'équivalent paresseux du quantificateur gourmand *</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">rechercher une correspondance zéro ou plusieurs fois (paresseux)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">Le quantificateur * recherche une correspondance avec l'élément précédent, zéro ou plusieurs fois. Il est équivalent au quantificateur {0,}. * est un quantificateur gourmand dont l'équivalent paresseux est *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">rechercher une correspondance zéro ou plusieurs fois</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">Le quantificateur ?? recherche une correspondance avec l'élément précédent, zéro ou une fois, mais de manière aussi limitée possible. Il s'agit de l'équivalent paresseux du quantificateur gourmand ?</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">rechercher une correspondance zéro ou une fois (paresseux)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">Le quantificateur ? recherche une correspondance avec l'élément précédent, zéro ou une fois. Il est équivalent au quantificateur {0,1}. ? est un quantificateur gourmand dont l'équivalent paresseux est ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">rechercher une correspondance zéro ou une fois</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Cette construction de regroupement capture une 'sous-expression' correspondante, où 'sous-expression' représente un modèle d'expression régulière valide. Les captures qui utilisent des parenthèses sont numérotées automatiquement de gauche à droite en fonction de l'ordre des parenthèses ouvrantes dans l'expression régulière, à partir de l'une d'entre elles. La capture numérotée zéro représente le texte correspondant à l'intégralité du modèle d'expression régulière.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">sous-expression correspondante</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">nom</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">nom1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">nom2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">nom-ou-numéro</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Référence arrière nommée ou numérotée. 'nom' est le nom d'un groupe de capture défini dans le modèle d'expression régulière.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">référence arrière nommée</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Capture une sous-expression correspondante et vous permet d'y accéder par le nom ou le numéro. 'nom' est un nom de groupe valide, et 'sous-expression' est un modèle d'expression régulière valide. 'nom' ne doit contenir aucun caractère de ponctuation et ne peut pas commencer par un chiffre. Si le paramètre RegexOptions d'une méthode de critères spéciaux d'expression régulière inclut l'indicateur RegexOptions.ExplicitCapture, ou si l'option n est appliquée à cette sous-expression, le seul moyen de capturer une sous-expression est de nommer explicitement les groupes de capture.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">sous-expression correspondante nommée</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Un groupe de caractères négatif spécifie une liste de caractères qui doivent être absents d'une chaîne d'entrée pour produire une correspondance. La liste des caractères est spécifiée individuellement. Vous pouvez concaténer au moins deux plages de caractères. Par exemple, pour spécifier la plage de chiffres décimaux allant de "0" à "9", la plage de lettres minuscules allant de "a" à "f" et la plage de lettres majuscules allant de "A" à "F", utilisez [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">groupe de caractères négatif</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Une plage de caractères négative spécifie une liste de caractères qui doivent être absents d'une chaîne d'entrée pour produire une correspondance. 'firstCharacter' est le caractère de début de plage, et 'lastCharacter' est le caractère de fin de plage. Vous pouvez concaténer au moins deux plages de caractères. Par exemple, pour spécifier la plage de chiffres décimaux allant de "0" à "9", la plage de lettres minuscules allant de "a" à "f" et la plage de lettres majuscules allant de "A" à "F", utilisez [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">plage de caractères négative</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">La construction d'expression régulière \P{ nom } correspond aux caractères qui n'appartiennent pas à une catégorie générale Unicode ou à un bloc nommé, nom étant l'abréviation de la catégorie ou le nom du bloc nommé.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">catégorie Unicode négative</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Correspond au caractère de nouvelle ligne, \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">caractère de nouvelle ligne</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">non</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D correspond à n'importe quel caractère non numérique. Il est équivalent au modèle d'expression régulière \P{Nd}. Si vous spécifiez un comportement conforme à ECMAScript, \D équivaut à [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">caractère non numérique</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S correspond à tout caractère autre qu'un espace blanc. Il est équivalent au modèle d'expression régulière [^\f\n\r\t\v\x85\p{Z}], ou à l'inverse du modèle d'expression régulière équivalent à \s, qui correspond aux espaces blancs. Si vous spécifiez un comportement conforme à ECMAScript, \S équivaut à [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">caractère autre qu'un espace blanc</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">L'ancre \B spécifie que la correspondance ne doit pas être effectuée sur une limite de mot. Il s'agit du contraire de l'ancre \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">limite de non-mot</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W correspond à un caractère de non-mot. Il correspond à n'importe quel caractère à l'exception de ceux des catégories Unicode suivantes : Ll Lettre, Minuscule Lu Lettre, Majuscule Lt Lettre, Première lettre des mots en majuscule Lo Lettre, Autre Lm Lettre, Modificateur Mn Marque, Sans espacement Nd Nombre, Chiffre décimal Pc Ponctuation, Connecteur Si vous spécifiez un comportement conforme à ECMAScript, \W équivaut à [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">caractère de non-mot</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Cette construction ne capture pas la sous-chaîne correspondant à une sous-expression : La construction de groupe sans capture est généralement utilisée quand un quantificateur est appliqué à un groupe, mais que les sous-chaînes capturées par le groupe ne présentent pas d'intérêt. Si une expression régulière inclut des constructions de regroupement imbriqué, une construction de groupe sans capture externe ne s'applique pas aux constructions de groupes imbriqués internes.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">groupe sans capture</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">nombre, chiffre décimal</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">nombre, lettre</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">nombre, autre</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Référence arrière numérotée, où 'nombre' représente la position ordinale du groupe de capture dans l'expression régulière. Par exemple, \4 correspond au contenu du quatrième groupe de capture. Il existe une ambiguïté entre les codes d'échappement octaux (par exemple \16) et les références arrière \nnumérotées qui utilisent la même notation. Si l'ambiguïté pose un problème, vous pouvez utiliser la notation \k&lt;nom&gt;, qui est plus claire et qui ne peut pas être confondue avec les codes de caractère octaux. De même, les codes hexadécimaux tels que \xdd ne sont pas ambigus et ne peuvent pas être confondus avec les références arrière.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">référence arrière numérotée</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">autre, contrôle</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">autre, format</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">autre, non affecté</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">autre, usage privé</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">autre, substitution</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Un groupe de caractères positif spécifie une liste de caractères, dont l'un d'entre eux peut apparaître dans une chaîne d'entrée pour produire une correspondance.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">groupe de caractères positif</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Une plage de caractères positive spécifie une plage de caractères, dont l'un d'entre eux peut apparaître dans une chaîne d'entrée pour produire une correspondance. 'firstCharacter' est le caractère de début de plage, et 'lastCharacter' est le caractère de fin de plage. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">plage de caractères positive</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">ponctuation, fermeture</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">ponctuation, connecteur</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">ponctuation, tiret</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">ponctuation, guillemet final</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">ponctuation, guillemet initial</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">ponctuation, ouverture</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">ponctuation, autre</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">séparateur, ligne</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">séparateur, paragraphe</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">séparateur, espace</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">L'ancre \A spécifie qu'une correspondance doit exister au début de la chaîne d'entrée. Elle est identique à l'ancre ^, à ceci près que \A ignore l'option RegexOptions.Multiline. Ainsi, elle correspond uniquement au début de la première ligne d'une chaîne d'entrée multiligne.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">début de chaîne uniquement</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">L'ancre ^ spécifie que le modèle suivant doit commencer à la position du premier caractère de la chaîne. Si vous utilisez ^ avec l'option RegexOptions.Multiline, la correspondance doit exister au début de chaque ligne.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">début de chaîne ou de ligne</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">sous-expression</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">symbole, devise</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">symbole, math</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">symbole, modificateur</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">symbole, autre</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Correspond au caractère de tabulation, \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">caractère de tabulation</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">La construction d'expression régulière \p{ nom } correspond aux caractères qui appartiennent à une catégorie générale Unicode ou à un bloc nommé, nom étant l'abréviation de la catégorie ou le nom du bloc nommé.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">catégorie Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Correspond à une unité de code UTF-16 dont la valeur est au format hexadécimal ####.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">échappement Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Catégorie générale Unicode : {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Correspond au caractère de tabulation verticale, \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">caractère de tabulation verticale</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s correspond à un caractère représentant un espace blanc. Il équivaut aux séquences d'échappement et aux catégories Unicode suivantes : \f Caractère de saut de page, \u000C \n Caractère nouvelle ligne, \u000A \r Caractère de retour chariot, \u000D \t Caractère de tabulation, \u0009 \v Caractère de tabulation verticale, \u000B \x85 Caractère des points de suspension ou NEL (NEXT LINE) (…), \u0085 \p{Z} Correspond à un caractère de séparation Si vous spécifiez un comportement conforme à ECMAScript, \s équivaut à [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">caractère d'espace blanc</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">L'ancre \b spécifie que la correspondance doit se trouver à la limite située entre un caractère de mot (élément de langage \w) et un caractère de non-mot (élément de langage \W). Les caractères de mots sont constitués de caractères alphanumériques et de traits de soulignement. Un caractère de non-mot est un caractère qui n'est pas alphanumérique ou qui n'est pas un trait de soulignement. La correspondance peut également se produire à une limite de mot, au début ou à la fin de la chaîne. L'ancre \b est fréquemment utilisée pour vérifier qu'une sous-expression correspond à un mot entier, et non simplement au début ou à la fin d'un mot.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">limite de mot</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w correspond à n'importe quel caractère de mot. Un caractère de mot appartient à l'une des catégories Unicode suivantes : Ll Lettre, Minuscule Lu Lettre, Majuscule Lt Lettre, Première lettre des mots en majuscule Lo Lettre, Autre Lm Lettre, Modificateur Mn Marque, Sans espacement Nd Nombre, Chiffre décimal Pc Ponctuation, Connecteur Si vous spécifiez un comportement conforme à ECMAScript, \w équivaut à [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">caractère de mot</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">oui</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Assertion avant négative de largeur nulle, où, pour que la correspondance soit réussie, la chaîne d'entrée ne doit pas correspondre au modèle d'expression régulière de la sous-expression. La chaîne correspondante n'est pas incluse dans le résultat de la correspondance. Une assertion avant négative de largeur nulle est généralement utilisée au début ou à la fin d'une expression régulière. Au début d'une expression régulière, elle peut définir un modèle spécifique à ne pas mettre en correspondance quand le début de l'expression régulière définit un modèle similaire, mais plus général, à mettre en correspondance. Dans ce cas, elle est souvent utilisée pour limiter le retour sur trace. À la fin d'une expression régulière, elle peut définir une sous-expression qui ne peut pas se produire à la fin d'une correspondance.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">assertion avant négative de largeur nulle</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Assertion arrière négative de largeur nulle, où, pour qu'une correspondance soit réussie, la 'sous-expression' ne doit pas apparaître dans la chaîne d'entrée à gauche de la position actuelle. Les sous-chaînes qui ne correspondent pas à la 'sous-expression' ne sont pas incluses dans le résultat de la correspondance. Les assertions arrière négatives de largeur nulle sont généralement utilisées au début des expressions régulières. Le modèle qu'elles définissent empêche toute correspondance dans la chaîne qui suit. Elles sont également utilisées pour limiter le retour sur trace quand le ou les derniers caractères d'un groupe capturé ne doivent pas représenter un ou plusieurs des caractères qui correspondent au modèle d'expression régulière de ce groupe.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">assertion arrière négative de largeur nulle</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Assertion avant positive de largeur nulle, où, pour qu'une correspondance soit réussie, la chaîne d'entrée doit correspondre au modèle d'expression régulière de la 'sous-expression'. La sous-chaîne correspondante n'est pas incluse dans le résultat de la correspondance. Une assertion avant positive de largeur nulle n'effectue pas de rétroaction. En règle générale, une assertion avant positive de largeur nulle se trouve à la fin d'un modèle d'expression régulière. Elle définit une sous-chaîne qui doit se trouver à la fin d'une chaîne pour qu'une correspondance se produise mais qui ne doit pas être incluse dans la correspondance. Elle permet également d'empêcher un retour sur trace excessif. Vous pouvez utiliser une assertion avant positive de largeur nulle pour vérifier qu'un groupe capturé particulier commence par un texte correspondant à un sous-ensemble du modèle défini pour ce groupe capturé.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">assertion avant positive de largeur nulle</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Assertion arrière positive de largeur nulle, où, pour qu'une correspondance soit réussie, la 'sous-expression' doit apparaître dans la chaîne d'entrée à gauche de la position actuelle. La 'sous-expression' n'est pas incluse dans le résultat de la correspondance. Une assertion arrière positive de largeur nulle n'effectue pas de rétroaction. Les assertions arrière positives de largeur nulle sont généralement utilisées au début des expressions régulières. Le modèle qu'elles définissent est une condition préalable à une correspondance, bien qu'il ne fasse pas partie du résultat de la correspondance.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">assertion arrière positive de largeur nulle</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Les signatures de méthode associées dans les métadonnées ne sont pas mises à jour.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Suppression du document non prise en charge</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Supprimer le modificateur 'async'</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Supprimer les casts inutiles</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Supprimer les variables inutilisées</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Remplacer '{0}' par '{1}'</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Résoudre les marqueurs de conflit</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Modification non applicable</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Trier les modificateurs d'accessibilité</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Diviser en instructions '{0}' consécutives</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Diviser en instructions '{0}' imbriquées</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Le flux doit prendre en charge les opérations de lecture et de recherche.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Supprimer {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: libérer les ressources non managées (objets non managés) et substituer le finaliseur</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: substituer le finaliseur uniquement si '{0}' a du code pour libérer les ressources non managées</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Cibler les correspondances de types</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">L'assembly '{0}' contenant le type '{1}' référence le .NET Framework, ce qui n'est pas pris en charge.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">La sélection contient un appel de fonction locale sans sa déclaration.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Trop de | dans (?()|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Trop de )'s</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Impossible de lire le fichier source '{0}' ou le PDB généré pour le projet conteneur. Les changements apportés à ce fichier durant le débogage ne seront pas appliqués tant que son contenu ne correspondra pas à la source générée.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Propriété inconnue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Propriété inconnue '{0}'</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Caractère de contrôle non reconnu</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Séquence d'échappement non reconnue \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Construction de regroupement non reconnue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Ensemble [] inachevé</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Commentaire (?#...) non terminé</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Désenvelopper tous les arguments</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Désenvelopper tous les paramètres</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Désenvelopper et mettre en retrait tous les arguments</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Désenvelopper et mettre en retrait tous les paramètres</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Désenvelopper la liste d'arguments</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Désenvelopper la chaîne d'appels</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Désenvelopper l'expression</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Désenvelopper la liste de paramètres</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Utiliser le corps de bloc pour les expressions lambda</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Utiliser le corps d'expression pour les expressions lambda</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Utiliser une chaîne verbatim interpolée</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Valeur :</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Avertissement : La sémantique peut changer durant la conversion d'une instruction.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Envelopper et aligner la chaîne d'appels</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Envelopper et aligner l'expression</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Envelopper et aligner la longue chaîne d'appels</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Envelopper la chaîne d'appels</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Envelopper chaque argument</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Envelopper chaque paramètre</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Envelopper l'expression</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Envelopper la longue liste d'arguments</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Envelopper la longue chaîne d'appels</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Envelopper la longue liste de paramètres</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Enveloppement</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Vous pouvez utiliser la barre de navigation pour changer de contexte.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">« {0} » ne peut pas être vide ou avoir la valeur Null.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}' ne peut pas avoir une valeur null ou être un espace blanc.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">'{0}' n'a pas une valeur null ici.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">'{0}' a peut-être une valeur null ici.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">10 000 000es de seconde</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "fffffff" représente les sept chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les dix millionièmes de seconde d'une valeur de date et d'heure. Bien qu'il soit possible d'afficher les dix millionièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">10 000 000es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "FFFFFFF" représente les sept chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les dix millionièmes de seconde d'une valeur de date et d'heure. Toutefois, les zéros de fin ou les sept chiffres correspondant à des zéros ne sont pas affichés. Bien qu'il soit possible d'afficher les dix millionièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1 000 000es de seconde</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "ffffff" représente les six chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les millionièmes de seconde d'une valeur de date et d'heure. Bien qu'il soit possible d'afficher les millionièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1 000 000es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "FFFFFF" représente les six chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les millionièmes de seconde d'une valeur de date et d'heure. Toutefois, les zéros de fin ou les six chiffres correspondant à des zéros ne sont pas affichés. Bien qu'il soit possible d'afficher les millionièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">100 000es de seconde</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "fffff" représente les cinq chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les cents millièmes de seconde d'une valeur de date et d'heure. Bien qu'il soit possible d'afficher les cents millièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">100 000es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "FFFFF" représente les cinq chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les cents millièmes de seconde d'une valeur de date et d'heure. Toutefois, les zéros de fin ou les cinq chiffres correspondant à des zéros ne sont pas affichés. Bien qu'il soit possible d'afficher les cents millièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">10 000es de seconde</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "ffff" représente les quatre chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les dix millièmes de seconde d'une valeur de date et d'heure. Bien qu'il soit possible d'afficher les dix millièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT version 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">10 000es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "FFFF" représente les quatre chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les dix millièmes de seconde d'une valeur de date et d'heure. Toutefois, les zéros de fin ou les quatre chiffres correspondant à des zéros ne sont pas affichés. Bien qu'il soit possible d'afficher les dix millièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1 000es de seconde</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">Le spécificateur de format personnalisé "fff" représente les trois chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les millisecondes d'une valeur de date et d'heure.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1 000es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">Le spécificateur de format personnalisé "FFF" représente les trois chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les millisecondes d'une valeur de date et d'heure. Toutefois, les zéros de fin ou les trois chiffres correspondant à des zéros ne sont pas affichés.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">100es de seconde</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">Le spécificateur de format personnalisé "ff" représente les deux chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les centièmes de seconde d'une valeur de date et d'heure.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">100es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">Le spécificateur de format personnalisé "FF" représente les deux chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les centièmes de seconde d'une valeur de date et d'heure. Toutefois, les zéros de fin ou les deux chiffres correspondant à des zéros ne sont pas affichés.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">10es de seconde</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">10es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">Le spécificateur de format personnalisé "F" représente le chiffre le plus significatif de la fraction de seconde. En d'autres termes, il représente les dixièmes de seconde d'une valeur de date et d'heure. Rien ne s'affiche si le chiffre est zéro. Si le spécificateur de format "F" est utilisé sans autres spécificateurs de format, il est interprété en tant que spécificateur de format de date et d'heure standard : "F". Le nombre de spécificateurs de format "F" utilisés avec la méthode ParseExact, TryParseExact, ParseExact ou TryParseExact indique le nombre maximal de chiffres les plus significatifs de la fraction de seconde qui peuvent être présents pour permettre une analyse correcte de la chaîne.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">Horloge de 12 heures (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Le spécificateur de format personnalisé "h" représente l'heure sous la forme d'un nombre compris entre 1 et 12. En d'autres termes, l'heure est représentée par une horloge de 12 heures qui compte les heures entières depuis minuit ou midi. Vous ne pouvez pas différencier une heure particulière après minuit et la même heure après midi. L'heure n'est pas arrondie, et une heure à un chiffre est présentée dans un format qui ne comporte aucun zéro de début. Par exemple, s'il est 5:43 du matin ou de l'après-midi, le spécificateur de format personnalisé affiche "5". Si le spécificateur de format "h" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard, et lève une exception FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">Horloge de 12 heures (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">Le spécificateur de format personnalisé "hh" (plus n'importe quel nombre de spécificateurs "h" supplémentaires) représente les heures sous la forme d'un nombre compris entre 01 et 12. En d'autres termes, les heures sont représentées par une horloge de 12 heures qui compte les heures entières écoulées depuis minuit ou midi. Vous ne pouvez pas différencier une heure particulière après minuit et la même heure après midi. L'heure n'est pas arrondie, et une heure à un chiffre est présentée dans un format qui comporte un zéro de début. Par exemple, s'il est 5:43 du matin ou de l'après-midi, le spécificateur de format personnalisé affiche "05".</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">Horloge de 24 heures (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Le spécificateur de format personnalisé "H" représente l'heure sous la forme d'un nombre compris entre 0 et 23. En d'autres termes, l'heure est représentée par une horloge de 24 heures de base zéro, qui compte les heures entières depuis minuit. Une heure à un chiffre est présentée dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "H" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard, et lève une exception FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">Horloge de 24 heures (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">Le spécificateur de format personnalisé "HH" (plus n'importe quel nombre de spécificateurs "H" supplémentaires) représente les heures sous la forme d'un nombre compris entre 00 et 23. En d'autres termes, les heures sont représentées par une horloge de 24 heures de base zéro, qui compte les heures écoulées depuis minuit. Une heure à un chiffre est présentée dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">code</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">séparateur de date</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Le spécificateur de format personnalisé "/" représente le séparateur de date, qui est utilisé pour différencier les années, les mois et les jours. Le séparateur de date localisé approprié est récupéré à partir de la propriété DateTimeFormatInfo.DateSeparator de la culture actuelle ou spécifiée. Remarque : Pour changer le séparateur de date d'une chaîne de date et d'heure particulière, spécifiez le caractère de séparation dans un délimiteur de chaîne littérale. Par exemple, la chaîne de format personnalisée mm'/'dd'/'yyyy produit une chaîne de résultat dans laquelle "/" est toujours utilisé en tant que séparateur de date. Pour changer le séparateur de date de toutes les dates d'une culture, changez la valeur de la propriété DateTimeFormatInfo.DateSeparator de la culture actuelle, ou instanciez un objet DateTimeFormatInfo, affectez le caractère à sa propriété DateSeparator, puis appelez une surcharge de la méthode de format qui inclut un paramètre IFormatProvider. Si le spécificateur de format "/" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard, et lève une exception FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">jour du mois (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">Le spécificateur de format personnalisé "d" représente le jour du mois sous la forme d'un nombre compris entre 1 et 31. Un jour à un chiffre est présenté dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "d" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "d".</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">jour du mois (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">La chaîne de format personnalisée "dd" représente le jour du mois sous la forme d'un nombre compris entre 01 et 31. Un jour à un chiffre est présenté dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">jour de la semaine (abrégé)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">Le spécificateur de format personnalisé "ddd" représente le nom abrégé du jour de la semaine. Le nom abrégé localisé du jour de la semaine est récupéré à partir de la propriété DateTimeFormatInfo.AbbreviatedDayNames de la culture actuelle ou spécifiée.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">jour de la semaine (complet)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">Le spécificateur de format personnalisé "dddd" (plus n'importe quel nombre de spécificateurs "d" supplémentaires) représente le nom complet du jour de la semaine. Le nom localisé du jour de la semaine est récupéré à partir de la propriété DateTimeFormatInfo.DayNames de la culture actuelle ou spécifiée.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">discard</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">à partir des métadonnées</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">date longue/heure longue (complet)</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">Le spécificateur de format standard "F" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.FullDateTimePattern actuelle. Par exemple, la chaîne de format personnalisée pour la culture invariante est "dddd, dd MMMM yyyy HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">date longue/heure courte (complet)</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Spécificateur de format complet de date longue et d'heure courte ("f") Le spécificateur de format standard "f" représente une combinaison des modèles de date longue ("D") et d'heure courte ("t"), séparés par un espace.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">date courte/heure longue (général)</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">Le spécificateur de format standard "G" représente une combinaison des modèles de date courte ("d") et d'heure longue ("T"), séparés par un espace.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">date courte/heure courte (général)</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">Le spécificateur de format standard "g" représente une combinaison des modèles de date courte ("d") et d'heure courte ("t"), séparés par un espace.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">surcharge générique</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">surcharges génériques</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">dans {0} ({1} - {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">dans la source (attribut)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">date longue</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">Le spécificateur de format standard "D" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.LongDatePattern actuelle. Par exemple, la chaîne de format personnalisée pour la culture invariante est "dddd, dd MMMM yyyy".</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">heure longue</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">Le spécificateur de format standard "T" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.LongTimePattern d'une culture spécifique. Par exemple, la chaîne de format personnalisée pour la culture invariante est "HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">minute (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">Le spécificateur de format personnalisé "m" représente les minutes sous la forme d'un nombre compris entre 0 et 59. Le résultat correspond aux minutes entières qui se sont écoulées depuis la dernière heure. Une minute à un chiffre est présentée dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "m" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "m".</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">minute (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">Le spécificateur de format personnalisé "mm" (plus n'importe quel nombre de spécificateurs "m" supplémentaires) représente les minutes sous la forme d'un nombre compris entre 00 et 59. Une minute à un chiffre est présentée dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">mois (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">Le spécificateur de format personnalisé "M" représente le mois sous la forme d'un nombre compris entre 1 et 12 (ou entre 1 et 13 pour les calendriers de 13 mois). Un mois à un chiffre est présenté dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "M" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "M".</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">mois (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">Le spécificateur de format personnalisé "MM" représente le mois sous la forme d'un nombre compris entre 01 et 12 (ou entre 01 et 13 pour les calendriers de 13 mois). Un mois à un chiffre est présenté dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">mois (abrégé)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">Le spécificateur de format personnalisé "MMM" représente le nom abrégé du mois. Le nom abrégé localisé du mois est récupéré à partir de la propriété DateTimeFormatInfo.AbbreviatedMonthNames de la culture actuelle ou spécifiée.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">jour du mois</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">Le spécificateur de format standard "M" ou "m" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.MonthDayPattern actuelle. Par exemple, la chaîne de format personnalisée pour la culture invariante est "MMMM dd".</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">mois (complet)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">Le spécificateur de format personnalisé "MMMM" représente le nom complet du mois. Le nom localisé du mois est récupéré à partir de la propriété DateTimeFormatInfo.MonthNames de la culture actuelle ou spécifiée.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">surcharge</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">surcharges</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">Mot clé {0}</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Encapsuler le champ : '{0}' (et utiliser la propriété)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Encapsuler le champ : '{0}' (mais utiliser toujours le champ)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Encapsuler les champs (et utiliser la propriété)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Encapsuler les champs (mais utiliser toujours le champ)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Impossible d'extraire l'interface : la sélection n'est pas comprise dans une classe, une interface ou un struct.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Impossible d'extraire l'interface : le type ne contient aucun élément pouvant être extrait vers une interface.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">Impossible de construire l'arborescence finale</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Le type de paramètre ou le type de retour ne peut pas être un type anonyme : [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">La sélection ne contient aucune instruction active.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">La sélection contient une erreur ou un type inconnu.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Le paramètre de type '{0}' est masqué par un autre paramètre de type '{1}'.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">L'adresse d'une variable est utilisée dans le code sélectionné.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">L'assignation à des champs en lecture seule doit se faire dans un constructeur : [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">Le code généré chevauche une partie cachée du code</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Ajouter des paramètres optionnels à '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Ajouter des paramètres à '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Générer le constructeur de délégation '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Générer le constructeur '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Générer un constructeur d'assignation de champ '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Générer Equals et GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Générer Equals(object)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Générer GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Générer un constructeur dans '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Générer tout</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Générer le membre enum '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Générer la constante '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Générer la propriété en lecture seule '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Générer la propriété '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Générer le champ en lecture seule '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Générer le champ '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Générer le '{0}' local</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Générer {0} '{1}' dans un nouveau fichier</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Générer un {0} '{1}' imbriqué</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Espace de noms global</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Implémenter l'interface abstraitement</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Implémenter l'interface via '{0}'</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Implémenter l'interface</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Introduire un champ pour '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Introduire un élément local pour '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Introduire une constante pour '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Introduire une constante locale pour '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Introduire un champ pour toutes les occurrences de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Introduire un élément local pour toutes les occurrences de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Introduire une constante pour toutes les occurrences de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Introduire une constante locale pour toutes les occurrences de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Introduire une variable de requête pour toutes les occurrences de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Introduire une variable de requête pour '{0}'</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Types anonymes :</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">est</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Représente un objet dont les opérations seront résolues au moment de l'exécution.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">constante</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">Champ</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">constante locale</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">variable locale</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">Étiquette</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">période/ère</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Les spécificateurs de format personnalisés "g" ou "gg" (plus n'importe quel nombre de spécificateurs "g" supplémentaires) représentent la période ou l'ère, par exemple après J.-C. L'opération qui consiste à appliquer un format ignore ce spécificateur si la date visée n'a pas de chaîne de période ou d'ère associée. Si le spécificateur de format "g" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "g".</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">variable de plage</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">paramètre</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">In</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Résumé :</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Variables locales et paramètres</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Paramètres de type :</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Retourne :</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Exceptions :</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Remarques :</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">La génération de code source pour les symboles de ce type n'est pas prise en charge</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">assembly</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">emplacement inconnu</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Genre de membre d'interface inattendu : {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Genre de symbole inconnu</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Générer la propriété abstraite '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Générer la méthode abstraite '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Générer la méthode '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">L'assembly demandé est déjà chargé à partir de '{0}'.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Le symbole ne possède pas d'icône.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Une méthode asynchrone ne peut pas contenir des paramètres ref/out : [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Le membre est défini dans des métadonnées.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Vous pouvez seulement modifier la signature d'un constructeur, d'un indexeur, d'une méthode ou d'un délégué.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Ce symbole possède des définitions ou des références associées dans les métadonnées. La modification de sa signature peut entraîner des erreurs de build. Voulez-vous continuer ?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Modifier la signature...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Générer un nouveau type...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Échec de l'analyseur de diagnostic utilisateur.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">L'analyseur '{0}' a levé une exception de type {1} avec le message '{2}'.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">L'analyseur '{0}' a levé l'exception suivante : '{1}'.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Simplifier les noms</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Simplifier l'accès au membre</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Supprimer une qualification</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Une erreur inconnue s'est produite</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Disponibilité</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Non disponible ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">dans la source</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">dans le fichier de suppression</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Retirer la suppression {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Retirer la suppression</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;En attente&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Remarque : appuyez deux fois sur la touche Tab pour insérer l'extrait de code '{0}'.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Implémenter l'interface explicitement avec le modèle Dispose</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Implémenter l'interface avec le modèle Dispose</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Répétition du triage {0}(actuellement '{1}')</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">L'argument ne peut pas avoir un élément null.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">L'argument ne peut pas être vide.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">Le diagnostic signalé avec l'ID '{0}' n'est pas pris en charge par l'analyseur.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Calcul de la correction de toutes les occurrences (correction du code)...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Corriger toutes les occurrences</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Document</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Projet</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Solution</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: supprimer l'état managé (objets managés)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: affecter aux grands champs une valeur null</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Compilateur</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">En direct</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">valeur enum</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">Champ const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">méthode</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">Opérateur</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">constructeur</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">auto-propriété</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">propriété</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">accesseur d'événement</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">date/heure (rfc1123)</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Le spécificateur de format standard "R" ou "r" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.RFC1123Pattern. Le modèle reflète une norme définie, et la propriété est en lecture seule. Elle est donc toujours identique, quelle que soit la culture utilisée ou le fournisseur de format indiqué. La chaîne de format personnalisée est "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". Quand ce spécificateur de format standard est utilisé, l'opération qui consiste à appliquer un format ou à exécuter une analyse utilise toujours la culture invariante.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">date/heure (aller-retour)</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">Le spécificateur de format standard "O" ou "o" représente une chaîne de format de date et d'heure personnalisée à l'aide d'un modèle qui conserve les informations de fuseau horaire et émet une chaîne de résultat conforme à la norme ISO 8601. Pour les valeurs DateTime, ce spécificateur de format permet de conserver les valeurs de date et d'heure ainsi que la propriété DateTime.Kind au format texte. La chaîne à laquelle le format a été appliqué peut être réanalysée à l'aide de la méthode DateTime.Parse(String, IFormatProvider, DateTimeStyles) ou DateTime.ParseExact si le paramètre styles a la valeur DateTimeStyles.RoundtripKind. Le spécificateur de format standard "O" ou "o" correspond à la chaîne de format personnalisée "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" pour les valeurs DateTime, et à la chaîne de format personnalisée "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" pour les valeurs DateTimeOffset. Dans cette chaîne, les paires de guillemets simples qui délimitent les caractères individuels, par exemple les tirets, les deux-points et la lettre "T", indiquent que le caractère individuel est un littéral qui ne peut pas être changé. Les apostrophes n'apparaissent pas dans la chaîne de sortie. Le spécificateur de format standard "O" ou "o" (avec la chaîne de format personnalisée "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK") tire parti des trois façons dont la norme ISO 8601 représente les informations de fuseau horaire pour conserver la propriété Kind des valeurs DateTime : Le composant de fuseau horaire des valeurs de date et d'heure de DateTimeKind.Local représente un décalage par rapport à l'heure UTC (par exemple +01:00, -07:00). Toutes les valeurs de DateTimeOffset sont également représentées dans ce format. Le composant de fuseau horaire des valeurs de date et d'heure de DateTimeKind.Utc utilise "Z" (qui signifie décalage de zéro) pour représenter l'heure UTC. Les valeurs de date et d'heure de DateTimeKind.Unspecified n'ont aucune information de fuseau horaire. Dans la mesure où le spécificateur de format standard "O" ou "o" est conforme à une norme internationale, l'opération qui consiste à appliquer un format ou à exécuter une analyse en fonction du spécificateur utilise toujours la culture invariante et le calendrier grégorien. Les chaînes passées aux méthodes Parse, TryParse, ParseExact et TryParseExact de DateTime et DateTimeOffset peuvent être analysées à l'aide du spécificateur de format "O" ou "o", si elles sont dans l'un de ces formats. Dans le cas des objets DateTime, la surcharge d'analyse que vous appelez doit également inclure un paramètre styles ayant la valeur DateTimeStyles.RoundtripKind. Notez que si vous appelez une méthode d'analyse avec la chaîne de format personnalisée qui correspond au spécificateur de format "O" ou "o", vous n'obtenez pas les mêmes résultats que "O" ou "o". Cela est dû au fait que les méthodes d'analyse qui s'appuient sur une chaîne de format personnalisée ne peuvent pas analyser la représentation sous forme de chaîne des valeurs de date et d'heure qui n'ont pas de composant de fuseau horaire ou qui utilisent "Z" pour indiquer l'heure UTC.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">seconde (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">Le spécificateur de format personnalisé "s" représente les secondes sous la forme d'un nombre compris entre 0 et 59. Le résultat correspond aux secondes entières qui se sont écoulées depuis la dernière minute. Une seconde à un chiffre est présentée dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "s" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "s".</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">seconde (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">Le spécificateur de format personnalisé "ss" (plus n'importe quel nombre de spécificateurs "s" supplémentaires) représente les secondes sous la forme d'un nombre compris entre 00 et 59. Le résultat correspond aux secondes entières qui se sont écoulées depuis la dernière minute. Une seconde à un chiffre est présentée dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">date courte</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">Le spécificateur de format standard "d" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.ShortDatePattern d'une culture spécifique. Par exemple, la chaîne de format personnalisée retournée par la propriété ShortDatePattern de la culture invariante est "MM/dd/yyyy".</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">heure courte</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">Le spécificateur de format standard "t" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.ShortTimePattern actuelle. Par exemple, la chaîne de format personnalisée pour la culture invariante est "HH:mm".</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">date/heure pouvant être triée</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Le spécificateur de format standard "s" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.SortableDateTimePattern. Le modèle reflète une norme définie (ISO 8601), et la propriété est en lecture seule. Elle est donc toujours identique, quelle que soit la culture utilisée ou le fournisseur de format indiqué. La chaîne de format personnalisée est "yyyy'-'MM'-'dd'T'HH':'mm':'ss". Le spécificateur de format "s" a pour but de produire des chaînes triées de manière cohérente dans l'ordre croissant ou décroissant en fonction des valeurs de date et d'heure. Ainsi, bien que le spécificateur de format standard "s" représente une valeur de date et d'heure dans un format cohérent, l'opération qui consiste à appliquer un format ne modifie pas la valeur de l'objet de date et d'heure visé pour refléter sa propriété DateTime.Kind ou sa valeur DateTimeOffset.Offset. Par exemple, les chaînes qui résultent de l'application du format souhaité aux valeurs de date et d'heure 2014-11-15T18:32:17+00:00 et 2014-11-15T18:32:17+08:00 sont identiques. Quand ce spécificateur de format standard est utilisé, l'opération qui consiste à appliquer un format ou à exécuter une analyse utilise toujours la culture invariante.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">constructeur statique</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'symbol' ne peut pas être un espace de noms.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">séparateur d'heure</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Le spécificateur de format personnalisé ":" représente le séparateur d'heure, qui est utilisé pour différencier les heures, les minutes et les secondes. Le séparateur d'heure localisé approprié est récupéré à partir de la propriété DateTimeFormatInfo.TimeSeparator de la culture actuelle ou spécifiée. Remarque : Pour changer le séparateur d'heure d'une chaîne de date et d'heure particulière, spécifiez le caractère de séparation dans un délimiteur de chaîne littérale. Par exemple, la chaîne de format personnalisée hh'_'dd'_'ss produit une chaîne de résultat dans laquelle "_" (trait de soulignement) est toujours utilisé en tant que séparateur d'heure. Pour changer le séparateur d'heure de toutes les heures d'une culture, changez la valeur de la propriété DateTimeFormatInfo.TimeSeparator de la culture actuelle, ou instanciez un objet DateTimeFormatInfo, affectez le caractère à sa propriété TimeSeparator, puis appelez une surcharge de la méthode de format qui inclut un paramètre IFormatProvider. Si le spécificateur de format ":" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard, et lève une exception FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">fuseau horaire</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Le spécificateur de format personnalisé "K" représente les informations de fuseau horaire d'une valeur de date et d'heure. Quand ce spécificateur de format est utilisé avec des valeurs DateTime, la chaîne résultante est définie par la valeur de la propriété DateTime.Kind : Pour le fuseau horaire local (valeur de propriété DateTime.Kind de DateTimeKind.Local), ce spécificateur est équivalent au spécificateur "zzz". Il produit une chaîne contenant le décalage local par rapport à l'heure UTC, par exemple "-07:00". Pour une heure UTC (valeur de propriété DateTime.Kind de DateTimeKind.Utc), la chaîne résultante inclut un caractère "Z" qui représente une date UTC. Pour une heure provenant d'un fuseau horaire non spécifié (heure dont la propriété DateTime.Kind est égale à DateTimeKind.Unspecified), le résultat est équivalent à String.Empty. Pour les valeurs DateTimeOffset, le spécificateur de format "K" est équivalent au spécificateur de format "zzz". Il produit une chaîne qui contient le décalage de la valeur DateTimeOffset par rapport à l'heure UTC. Si le spécificateur de format "K" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard, et lève une exception FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">contrainte de type</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">paramètre de type</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">attribut</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Remplacer '{0}' et '{1}' par une propriété</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Remplacer '{0}' par une propriété</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Méthode référencée implicitement</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Générer le type '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Générer {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Changer '{0}' en '{1}'.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Une méthode non appelée ne peut pas être remplacée par une propriété.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Seules les méthodes avec un seul argument, qui n'est pas une déclaration de variable de sortie, peuvent être remplacées par une propriété.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Impossible de créer une instance de l'analyseur {0} à partir de {1} : {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">L'assembly {0} ne contient pas d'analyseurs.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Impossible de charger l'assembly Analyseur {0} : {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Rendre la méthode synchrone</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">de {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Rechercher et installer la dernière version</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Utiliser la version locale '{0}'</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Utiliser la version installée localement '{0}' '{1}' Version utilisée dans : {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Rechercher et installer la dernière version de '{0}'</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Installer avec le gestionnaire de package...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Installer '{0} {1}'</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Installer la version '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Générer la variable '{0}'</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Classes</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Constantes</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Délégués</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Enums</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Événements</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Méthodes d'extension</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Champs</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Interfaces</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Variables locales</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Méthodes</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Modules</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Espaces de noms</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Propriétés</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Structures</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Paramètres :</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">L'élément SignatureHelpItem variadique doit avoir au moins un paramètre.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Remplacer '{0}' par une méthode</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Remplacer '{0}' par des méthodes</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Propriété référencée implicitement</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Impossible de remplacer la propriété de manière sécurisée par un appel de méthode</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Convertir en chaîne interpolée</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Déplacer le type vers {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Renommer le fichier en {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Renommer le type en {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Supprimer une étiquette</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Ajouter les nœuds de paramètre manquants</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Rendre la portée contenante async</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Rendre la portée contenante async (retourner Task)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Inconnu)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Utiliser un type d'infrastructure</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Installer le package '{0}'</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">projet {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">{0}' complet</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Supprimez la référence à '{0}'.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Mots clés</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Extraits</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Tout en minuscules</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Tout en majuscules</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Premier mot en majuscule</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Casse Pascal</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Supprimer le document '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Ajouter le document '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Ajouter le nom d'argument '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Prendre '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Prendre les deux</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Prendre le bas</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Prendre le haut</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Supprimer la variable inutilisée</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Convertir en valeur binaire</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Convertir en valeur décimale</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Convertir en hexadécimal</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Séparer les milliers</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Séparer les mots</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Séparer les quartets</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Supprimer les séparateurs</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Ajouter un paramètre à '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Générer le constructeur...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Choisir les membres à utiliser comme paramètres de constructeur</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Choisir les membres à utiliser dans Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Générer les substitutions...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Choisir les membres à substituer</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Ajouter un contrôle de valeur null</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Ajouter le contrôle 'string.IsNullOrEmpty'</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Ajouter le contrôle 'string.IsNullOrWhiteSpace'</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Initialiser le champ '{0}'</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Initialiser la propriété '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Ajouter des contrôles de valeur null</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Générer les opérateurs</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Implémenter {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">Le diagnostic signalé '{0}' a un emplacement source dans le fichier '{1}', qui ne fait pas partie de la compilation en cours d'analyse.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">Le diagnostic signalé '{0}' a un emplacement source '{1}' dans le fichier '{2}', qui se trouve en dehors du fichier donné.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">dans {0} (projet {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Ajouter des modificateurs d'accessibilité</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Déplacer la déclaration près de la référence</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Convertir en propriété complète</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Avertissement : La méthode remplace le symbole des métadonnées</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Utiliser {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Ajouter le nom d'argument '{0}' (ainsi que les arguments de fin)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">fonction locale</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">indexeur</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Alias de type ambigu : '{0}'</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Avertissement : La collection a été modifiée durant l'itération.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Avertissement : La variable d'itération a traversé la limite de fonction.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Avertissement : La collection risque d'être modifiée durant l'itération.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">date/heure complète universelle</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">Le spécificateur de format standard "U" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.FullDateTimePattern d'une culture spécifique. Le modèle est identique au modèle "F". Toutefois, la valeur DateTime est automatiquement convertie en heure UTC avant que le format souhaité ne lui soit appliqué.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">date/heure universelle pouvant être triée</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">Le spécificateur de format standard "u" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.UniversalSortableDateTimePattern. Le modèle reflète une norme définie, et la propriété est en lecture seule. Elle est donc toujours identique, quelle que soit la culture utilisée ou le fournisseur de format indiqué. La chaîne de format personnalisée est "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". Quand ce spécificateur de format standard est utilisé, l'opération qui consiste à appliquer un format ou à exécuter une analyse utilise toujours la culture invariante. Bien que la chaîne résultante soit censée exprimer une heure UTC, aucune conversion de la valeur DateTime d'origine n'est effectuée durant l'opération qui consiste à appliquer le format souhaité. Vous devez donc convertir une valeur DateTime au format UTC en appelant la méthode DateTime.ToUniversalTime avant de lui appliquer le format souhaité.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">mise à jour des utilisations dans le membre conteneur</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">mise à jour des utilisations dans le projet conteneur</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">mise à jour des utilisations dans le type conteneur</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">mise à jour des utilisations dans les projets dépendants</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">décalage des heures et des minutes UTC</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Avec les valeurs DateTime, le spécificateur de format personnalisé "zzz" représente le décalage signé du fuseau horaire du système d'exploitation local par rapport à l'heure UTC, en heures et en minutes. Il ne reflète pas la valeur de la propriété DateTime.Kind d'une instance. C'est la raison pour laquelle l'utilisation du spécificateur de format "zzz" n'est pas recommandée avec les valeurs DateTime. Avec les valeurs DateTimeOffset, ce spécificateur de format représente le décalage de la valeur DateTimeOffset par rapport à l'heure UTC, en heures et en minutes. Le décalage est toujours affiché avec un signe de début. Le signe plus (+) indique les heures d'avance par rapport à l'heure UTC, et le signe moins (-) indique les heures de retard par rapport à l'heure UTC. Un décalage à un chiffre est présenté dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">décalage des heures UTC (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Avec les valeurs DateTime, le spécificateur de format personnalisé "z" représente le décalage signé du fuseau horaire du système d'exploitation local par rapport à l'heure UTC, en heures. Il ne reflète pas la valeur de la propriété DateTime.Kind d'une instance. C'est la raison pour laquelle l'utilisation du spécificateur de format "z" n'est pas recommandée avec les valeurs DateTime. Avec les valeurs DateTimeOffset, ce spécificateur de format représente le décalage de la valeur DateTimeOffset par rapport à l'heure UTC, en heures. Le décalage est toujours affiché avec un signe de début. Le signe plus (+) indique les heures d'avance par rapport à l'heure UTC, et le signe moins (-) indique les heures de retard par rapport à l'heure UTC. Un décalage à un chiffre est présenté dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "z" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard, et lève une exception FormatException.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">décalage des heures UTC (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Avec les valeurs DateTime, le spécificateur de format personnalisé "zz" représente le décalage signé du fuseau horaire du système d'exploitation local par rapport à l'heure UTC, en heures. Il ne reflète pas la valeur de la propriété DateTime.Kind d'une instance. C'est la raison pour laquelle l'utilisation du spécificateur de format "zz" n'est pas recommandée avec les valeurs DateTime. Avec les valeurs DateTimeOffset, ce spécificateur de format représente le décalage de la valeur DateTimeOffset par rapport à l'heure UTC, en heures. Le décalage est toujours affiché avec un signe de début. Le signe plus (+) indique les heures d'avance par rapport à l'heure UTC, et le signe moins (-) indique les heures de retard par rapport à l'heure UTC. Un décalage à un chiffre est présenté dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">Intervalle [x-y] dans l'ordre inverse</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">année (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">Le spécificateur de format personnalisé "y" représente l'année sous la forme d'un nombre à un ou deux chiffres. Si l'année comporte plus de deux chiffres, seuls les deux chiffres de poids faible apparaissent dans le résultat. Si le premier chiffre d'une année à deux chiffres commence par un zéro (par exemple 2008), le nombre est présenté dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "y" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "y".</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">année (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">Le spécificateur de format personnalisé "yy" représente l'année sous la forme d'un nombre à deux chiffres. Si l'année comporte plus de deux chiffres, seuls les deux chiffres de poids faible apparaissent dans le résultat. Si l'année à deux chiffres comporte moins de deux chiffres significatifs, la valeur numérique est complétée avec des zéros de début pour produire deux chiffres. Dans une opération d'analyse, une année à deux chiffres analysée à l'aide du spécificateur de format personnalisé "yy" est interprétée en fonction de la propriété Calendar.TwoDigitYearMax du calendrier actuel du fournisseur de format. L'exemple suivant analyse la représentation sous forme de chaîne d'une date qui comporte une année à deux chiffres, à l'aide du calendrier grégorien par défaut de la culture en-US, qui, dans le cas présent, correspond à la culture actuelle. Il change ensuite l'objet CultureInfo de la culture actuelle pour utiliser un objet GregorianCalendar dont la propriété TwoDigitYearMax a été modifiée.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">année (3 à 4 chiffres)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">Le spécificateur de format personnalisé "yyy" représente l'année sous la forme d'un nombre à trois chiffres au minimum. Si l'année comporte plus de trois chiffres significatifs, ils sont inclus dans la chaîne résultante. Si l'année comporte moins de trois chiffres, la valeur numérique est complétée avec des zéros de début pour produire trois chiffres.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">année (4 chiffres)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">Le spécificateur de format personnalisé "yyyy" représente l'année sous la forme d'un nombre à quatre chiffres au minimum. Si l'année comporte plus de quatre chiffres significatifs, ils sont inclus dans la chaîne résultante. Si l'année comporte moins de quatre chiffres, la valeur numérique est complétée avec des zéros de début pour produire quatre chiffres.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">année (5 chiffres)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">Le spécificateur de format personnalisé "yyyyy" (plus n'importe quel nombre de spécificateurs "y" supplémentaires) représente l'année sous la forme d'un nombre à cinq chiffres au minimum. Si l'année comporte plus de cinq chiffres significatifs, ils sont inclus dans la chaîne résultante. Si l'année comporte moins de cinq chiffres, la valeur numérique est complétée avec des zéros de début pour produire cinq chiffres. S'il existe des spécificateurs "y" supplémentaires, la valeur numérique est complétée avec autant de zéros de début que nécessaire pour produire le nombre de spécificateurs "y".</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">année mois</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">Le spécificateur de format standard "Y" ou "y" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.YearMonthPattern de la culture spécifiée. Par exemple, la chaîne de format personnalisée pour la culture invariante est "yyyy MMMM".</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="fr" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (abrégé)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">Le spécificateur de format personnalisé "t" représente le premier caractère du désignateur AM/PM. Le désignateur localisé approprié est récupéré à partir de la propriété DateTimeFormatInfo.AMDesignator ou DateTimeFormatInfo.PMDesignator de la culture actuelle ou spécifique. Le désignateur AM est utilisé pour toutes les heures comprises entre 0:00:00 (minuit) et 11:59:59.999. Le désignateur PM est utilisé pour toutes les heures comprises entre 12:00:00 (midi) et 23:59:59.999. Si le spécificateur de format "t" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "t".</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (complet)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">Le spécificateur de format personnalisé "tt" (plus n'importe quel nombre de spécificateurs "t" supplémentaires) représente l'intégralité du désignateur AM/PM. Le désignateur localisé approprié est récupéré à partir de la propriété DateTimeFormatInfo.AMDesignator ou DateTimeFormatInfo.PMDesignator de la culture actuelle ou spécifique. Le désignateur AM est utilisé pour toutes les heures comprises entre 0:00:00 (minuit) et 11:59:59.999. Le désignateur PM est utilisé pour toutes les heures comprises entre 12:00:00 (midi) et 23:59:59.999. Veillez à utiliser le spécificateur "tt" pour les langues où il est nécessaire de maintenir la distinction entre AM et PM. Par exemple, en japonais, les désignateurs AM et PM diffèrent au niveau du second caractère au lieu du premier.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Une soustraction doit être le dernier élément dans une classe de caractères</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Ajouter l'attribut 'DebuggerDisplay'</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Ajouter un cast explicite</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Ajouter le nom du membre</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Ajouter des vérifications de valeur null pour tous les paramètres</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Ajouter un paramètre optionnel au constructeur</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Ajouter un paramètre à '{0}' (et aux remplacements/implémentations)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Ajouter un paramètre au constructeur</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Ajoutez une référence de projet à '{0}'.</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Ajoutez une référence à '{0}'.</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Les actions ne peuvent pas être vides.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Ajouter le nom d'élément tuple '{0}'</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Aligner les arguments enveloppés</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Aligner les paramètres enveloppés</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Les conditions d'alternance ne peuvent pas être des commentaires</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Les conditions d'alternance n'effectuent pas de capture et ne peuvent pas être nommées</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Appliquer les préférences d'en-tête de fichier</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Appliquer les préférences d'initialisation des objets/collections</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">La tâche attendue retourne '{0}'</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">La tâche attendue ne retourne aucune valeur</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Les classes de base contiennent des membres non implémentés inaccessibles</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Impossible d'appliquer les changements -- Erreur inattendue : '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Impossible d'inclure la classe \{0} dans la plage de caractères</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Les nombres de groupe de capture doivent être inférieurs ou égaux à Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Le nombre de captures ne peut pas être égal à zéro</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;déduire&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;omettre&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Remplacer par l'espace de noms général</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Aucun changement n'est autorisé en cas d'arrêt à la suite d'une exception</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Les changements apportés au projet '{0}' ne sont pas appliqués tant que l'application est en cours d'exécution</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application"> <source>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</source> <target state="new">Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Configurer le style de code {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Configurer la gravité {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Configurer la gravité pour tous les analyseurs '{0}'</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Configurer la gravité pour tous les analyseurs</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Convertir en LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Ajouter à '{0}'</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Convertir en classe</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Convertir en LINQ (formulaire d'appel)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Convertir en enregistrement</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Convertir en struct d’enregistrement</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Convertir en struct</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Convertir le type en '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Créer et affecter le champ '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Créer et affecter la propriété '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Créer et affecter ce qui reste en tant que champs</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Créer et affecter ce qui reste en tant que propriétés</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Ne changez pas ce code. Placez le code de nettoyage dans la méthode '{0}'</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Le contenu actuel du fichier source '{0}' ne correspond pas à la source générée. Les changements apportés à ce fichier durant le débogage ne seront pas appliqués tant que son contenu ne correspondra pas à la source générée.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Le document doit être contenu dans l'espace de travail qui a créé ce service</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Modifier et continuer</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Fonctionnalité Modifier et Continuer interdite par le module</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Les changements apportés au projet '{0}' empêchent la session de débogage de se poursuivre : {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">Modifier et continuer n’est pas pris en charge par le runtime.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Erreur durant la lecture du fichier '{0}' : {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Erreur lors de la création de l'instance de CodeFixProvider</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Erreur lors de la création de l'instance de CodeFixProvider '{0}'</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Exemple :</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Exemples :</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Les méthodes d'enregistrement implémentées explicitement doivent avoir des noms de paramètres qui correspondent à l'équivalent « {0} » généré par le compilateur.</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Extraire la classe de base...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Extraire l'interface...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Extraire la fonction locale</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Extraire une méthode</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Impossible d’analyser le flux de données pour : {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Corriger la mise en forme</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Corriger la faute de frappe '{0}'</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Mettre en forme le document</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Mise en forme du document</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Générer des opérateurs de comparaison</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Générer le constructeur dans '{0}' (avec les champs)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Générer le constructeur dans '{0}' (avec les propriétés)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Générer pour '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Générer le paramètre '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Générer le paramètre '{0}' (et les substitutions/implémentations)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Caractère \ non autorisé à la fin du modèle</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">{x,y} non autorisé avec x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Implémenter '{0}' explicitement</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Implémenter '{0}' implicitement</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Implémenter une classe abstraite</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Implémenter toutes les interfaces explicitement</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Implémenter toutes les interfaces implicitement</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Implémenter tous les membres explicitement</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Implémenter explicitement</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Implémenter implicitement</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Implémenter les membres restants explicitement</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Implémenter via '{0}'</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Caractère d'échappement \p{X} incomplet</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Mettre en retrait tous les arguments</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Mettre en retrait tous les paramètres</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Mettre en retrait les arguments enveloppés</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Mettre en retrait les paramètres enveloppés</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">Inline '{0}'</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Inline et conserver '{0}'</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Chiffres hexadécimaux insuffisants</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Introduire une constante</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Introduire le champ</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Introduire un élément local</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Introduire la variable de requête</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Nom de groupe non valide : les noms de groupe doivent commencer par un caractère alphabétique</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Rendre la classe 'abstract'</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Rendre statique</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Inverser un élément conditionnel</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">incorrecte</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Caractère d'échappement incorrect \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Référence arrière nommée \k&lt;...&gt; incorrecte</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Fusionner avec l'instruction '{0}' imbriquée</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Fusionner avec la prochaine instruction '{0}'</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Fusionner avec l'instruction '{0}' externe</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Fusionner avec la précédente instruction '{0}'</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} doit retourner un flux qui prend en charge les opérations de lecture et de recherche.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Caractère de contrôle manquant</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Déplacer le contenu vers un espace de noms...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Déplacer le fichier vers '{0}'</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Déplacer le fichier dans le dossier racine du projet</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Déplacer vers un espace de noms...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Quantificateur imbriqué {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Aucun emplacement valide pour l'insertion de l'appel de méthode.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Pas assez de )'s</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Opérateurs</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">La référence de propriété ne peut pas être mise à jour</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Tirer '{0}' vers le haut</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Tirer '{0}' jusqu'à '{1}'</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Tirer les membres jusqu'au type de base...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Tirer (pull) le ou les membres jusqu'à la nouvelle classe de base...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Le quantificateur {x,y} ne suit rien</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">référence à un groupe indéfini</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Référence au nom de groupe indéfini {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Référence à un numéro de groupe indéfini {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Tous les caractères de contrôle. Cela inclut les catégories Cc, Cf, Cs, Co et Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">tous les caractères de contrôle</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Toutes les marques diacritiques. Cela inclut les catégories Mn, Mc et Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">toutes les marques diacritiques</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Tous les caractères correspondant à des lettres. Cela inclut les caractères Lu, Ll, Lt, Lm et Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">tous les caractères correspondant à des lettres</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Tous les nombres. Cela inclut les catégories Nd, Nl et No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">tous les nombres</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Tous les caractères de ponctuation. Cela inclut les catégories Pc, Pd, Ps, Pe, Pi, Pf et Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">tous les caractères de ponctuation</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Tous les caractères de séparation. Cela inclut les catégories Zs, Zl et Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">tous les caractères de séparation</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Tous les symboles. Cela inclut les catégories Sm, Sc, Sk et So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">tous les symboles</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Vous pouvez utiliser la barre verticale (|) pour faire correspondre une série de modèles, où le caractère | sépare chaque modèle.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">alternance</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Le point (.) correspond à n'importe quel caractère sauf \n (le caractère nouvelle ligne, \u000A). Si un modèle d'expression régulière est modifié par l'option RegexOptions.Singleline, ou si la partie du modèle qui contient la classe de caractères . est modifiée par l'option 's', le . correspond à n'importe quel caractère.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">tout caractère</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Les groupes atomiques (connus dans certains moteurs d'expressions régulières comme des sous-expressions sans retour sur trace, des sous-expressions atomiques ou des sous-expressions une fois uniquement) désactivent le retour sur trace. Le moteur d'expressions régulières recherche une correspondance avec autant de caractères que possible dans la chaîne d'entrée. Quand aucune autre correspondance n'est possible, il n'effectue pas de retour sur trace pour tenter de trouver d'autres correspondances de modèles. (En d'autres termes, la sous-expression correspond uniquement aux chaînes qui correspondent à la sous-expression seule, elle ne tente pas de rechercher une chaîne basée sur la sous-expression et les sous-expressions qui la suivent.) Cette option est recommandée si vous savez que le retour sur trace va être un échec. En empêchant le moteur d'expressions régulières d'effectuer des recherches inutiles, vous améliorez les performances.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">groupe atomique</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Correspond au caractère de retour arrière, \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">caractère de retour arrière</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Une définition de groupe d'équilibrage supprime la définition d'un groupe défini et stocke, dans le groupe actuel, l'intervalle entre le groupe défini et le groupe actuel. 'nom1' est le groupe actuel facultatif, 'nom2' est un groupe défini et 'sous-expression' est un modèle d'expression régulière valide. La définition du groupe d'équilibrage supprime la définition de name2 et stocke l'intervalle entre name2 et name1 dans name1. Si aucun groupe name2 n'est défini, la correspondance fait l'objet d'une rétroaction. Dans la mesure où la suppression de la dernière définition de name2 révèle la définition précédente de name2, cette construction vous permet d'utiliser la pile de captures du groupe name2 en tant que compteur permettant d'effectuer le suivi des constructions imbriquées telles que les parenthèses ou les crochets d'ouverture et de fermeture. La définition du groupe d'équilibrage utilise 'nom2' en tant que pile. Le caractère de début de chaque construction imbriquée est placé dans le groupe et dans sa collection Group.Captures. Quand le caractère de fermeture correspond, le caractère d'ouverture correspondant est supprimé du groupe, et la collection Captures est réduite d'un élément. Une fois que les caractères d'ouverture et de fermeture de toutes les constructions imbriquées ont été mis en correspondance, 'nom1' est vide.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">groupe d'équilibrage</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">groupe de base</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Correspond au caractère de cloche (alarme), \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">caractère de cloche</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Correspond au caractère de retour chariot, \u000D. Notez que \r n'est pas équivalent au caractère nouvelle ligne, \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">caractère de retour chariot</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">La soustraction d'une classe de caractères génère un jeu de caractères qui résulte de l'exclusion des caractères d'une classe de caractères à partir d'une autre classe de caractères. 'groupe_base' est une plage ou un groupe de caractères positif ou négatif. Le composant 'groupe_exclu' est un autre groupe de caractères positif ou négatif, ou une autre expression de soustraction de classe de caractères (en d'autres termes, vous pouvez imbriquer des expressions de soustraction de classe de caractères).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">soustraction de classe de caractères</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">groupe de caractères</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">commentaire</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Cet élément de langage tente d'établir une correspondance avec l'un des deux modèles, selon qu'il peut correspondre ou non à un modèle initial. 'expression' est le modèle initial à rechercher, 'oui' est le modèle à rechercher si 'expression' retourne une correspondance, et 'non' est le modèle facultatif à rechercher si 'expression' ne retourne aucune correspondance.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">correspondance d'expression conditionnelle</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Cet élément de langage tente d'établir une correspondance avec l'un des deux modèles, selon qu'il correspond ou non à un groupe de capture spécifié. 'nom' est le nom (ou le numéro) d'un groupe de capture, 'oui' est l'expression à rechercher si 'nom' (ou 'numéro') a une correspondance, et 'non' est l'expression facultative à rechercher dans le cas contraire.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">correspondance de groupe conditionnelle</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">L'ancre \G spécifie qu'une correspondance doit exister à l'emplacement où la correspondance précédente a pris fin. Quand vous utilisez cette ancre avec la méthode Regex.Matches ou Match.NextMatch, elle vérifie que toutes les correspondances sont contiguës.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">correspondances contiguës</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Correspond au caractère de contrôle ASCII, où X est la lettre du caractère de contrôle. Exemple : \cC est CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">caractère de contrôle</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d correspond à n'importe quel chiffre décimal. Il est équivalent au modèle d'expression régulière \p{Nd}, qui inclut les chiffres décimaux standard allant de 0 à 9 ainsi que les chiffres décimaux d'un certain nombre d'autres jeux de caractères. Si vous spécifiez un comportement conforme à ECMAScript, \d équivaut à [0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">caractère de chiffre décimal</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Le signe dièse (#) marque un commentaire en mode x, qui commence au caractère # sans séquence d'échappement, à la fin du modèle d'expression régulière, et se poursuit jusqu'à la fin de la ligne. Pour utiliser cette construction, vous devez activer l'option x (via les options incluses) ou indiquer la valeur de RegexOptions.IgnorePatternWhitespace au paramètre d'option durant l'instanciation de l'objet Regex ou l'appel d'une méthode Regex statique.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">commentaire de fin de ligne</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">L'ancre \z spécifie qu'une correspondance doit exister à la fin de la chaîne d'entrée. Comme l'élément de langage $, \z ignore l'option RegexOptions.Multiline. Contrairement à l'élément de langage \Z, \z ne permet pas de rechercher une correspondance avec un \n caractère situé à la fin d'une chaîne. Il peut donc correspondre uniquement à la dernière ligne de la chaîne d'entrée.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">fin de chaîne uniquement</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">L'ancre \Z spécifie qu'une correspondance doit exister à la fin de la chaîne d'entrée ou avant \n à la fin de la chaîne d'entrée. Elle est identique à l'ancre $, à ceci près que \Z ignore l'option RegexOptions.Multiline. Ainsi, dans une chaîne multiligne, elle peut correspondre uniquement à la fin de la dernière ligne, ou à la dernière ligne située avant \n. L'ancre \Z correspond à \n mais ne correspond pas à \r\n (combinaison de caractères CR/LF). Pour rechercher une correspondance avec CR/LF, ajoutez \r?\Z au modèle d'expression régulière.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">fin de chaîne ou avant la fin d'une nouvelle ligne</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">L'ancre $ spécifie que le modèle précédent doit exister à la fin de la chaîne d'entrée ou avant \n à la fin de la chaîne d'entrée. Si vous utilisez $ avec l'option RegexOptions.Multiline, la correspondance peut également exister à la fin d'une ligne. L'ancre $ correspond à \n mais ne correspond pas à \r\n (combinaison de caractères de retour chariot et nouvelle ligne, c'est-à-dire CR/LF). Pour rechercher une correspondance avec la combinaison de caractères CR/LF, ajoutez \r?$ au modèle d'expression régulière.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">fin de chaîne ou de ligne</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Correspond au caractère d'échappement, \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">caractère d'échappement</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">groupe exclu</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">expression</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Correspond au caractère de saut de page, \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">caractère de saut de page</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Cette construction de regroupement applique ou désactive les options spécifiées dans une sous-expression. Les options à activer sont spécifiées après le point d'interrogation, et les options à désactiver après le signe moins. Les options autorisées sont les suivantes : i Utilise la correspondance sans respect de la casse. m Utilise le mode multiligne, où ^ et $ correspondent au début et à la fin de chaque ligne (au lieu du début et de la fin de la chaîne d'entrée). s Utilise le mode monoligne, où le point (.) correspond à chaque caractère (au lieu de chaque caractère sauf \n). n Ne capture pas les groupes sans nom. Les seules captures valides sont des groupes explicitement nommés ou numérotés ayant la forme (?&lt;nom&gt; sous-expression). x Exclut les espaces blancs sans séquence d'échappement du modèle, et active les commentaires après un signe dièse (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">options de groupe</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Correspond à un caractère ASCII, où ## est un code de caractère hexadécimal à deux chiffres.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">échappement hexadécimal</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">La construction (?# commentaire) vous permet d'inclure un commentaire dans une expression régulière. Le moteur d'expressions régulières n'utilise aucune partie du commentaire dans les critères spéciaux, bien que le commentaire soit inclus dans la chaîne retournée par la méthode Regex.ToString. Le commentaire finit à la première parenthèse fermante.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">commentaire inclus</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Active ou désactive des options de critères spéciaux spécifiques pour le reste d'une expression régulière. Les options à activer sont spécifiées après le point d'interrogation, et les options à désactiver après le signe moins. Les options autorisées sont les suivantes : i Utilise la correspondance sans respect de la casse. m Utilise le mode multiligne, où ^ et $ correspondent au début et à la fin de chaque ligne (au lieu du début et de la fin de la chaîne d'entrée). s Utilise le mode monoligne, où le point (.) correspond à chaque caractère (au lieu de chaque caractère sauf \n). n Ne capture pas les groupes sans nom. Les seules captures valides sont des groupes explicitement nommés ou numérotés ayant la forme (?&lt;nom&gt; sous-expression). x Exclut les espaces blancs sans séquence d'échappement du modèle, et active les commentaires après un signe dièse (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">options incluses</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Problème de regex : {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">lettre, minuscule</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">lettre, modificateur</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">lettre, autre</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">lettre, première lettre des mots en majuscule</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">lettre, majuscule</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">marque, englobante</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">marque, sans espacement</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">marque, espacement combiné</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">Le quantificateur {n,}? recherche une correspondance avec l'élément précédent au moins n fois, où n est un entier, mais de manière aussi limitée possible. Il s'agit de l'équivalent paresseux du quantificateur gourmand {n,}</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">rechercher une correspondance au moins 'n' fois (paresseux)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">Le quantificateur {n,} recherche une correspondance avec l'élément précédent au moins n fois, où n est un entier. {n,} est un quantificateur gourmand dont l'équivalent paresseux est {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">rechercher une correspondance au moins 'n' fois</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">Le quantificateur {n,m}? recherche une correspondance avec l'élément précédent entre n et m fois, où n et m sont des entiers, mais de manière aussi limitée possible. Il s'agit de l'équivalent paresseux du quantificateur gourmand {n,m}</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">rechercher une correspondance au moins 'n' fois (paresseux)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">Le quantificateur {n,m} correspond à l'élément précédent au moins n fois, mais pas plus de m fois, où n et m sont des entiers. {n,m} est un quantificateur gourmand dont l'équivalent paresseux est {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">rechercher une correspondance entre 'm' et 'n' fois</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">Le quantificateur {n}? recherche une correspondance avec l'élément précédent exactement n fois, où n est un entier. Il s'agit de l'équivalent paresseux du quantificateur gourmand {n}+</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">rechercher une correspondance exactement 'n' fois (paresseux)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">Le quantificateur {n} recherche une correspondance avec l'élément précédent exactement n fois, où n est un entier. {n} est un quantificateur gourmand dont l'équivalent paresseux est {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">rechercher une correspondance exactement 'n' fois</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">Le quantificateur recherche une correspondance avec l'élément précédent, une ou plusieurs fois, mais de manière aussi limitée possible. Il s'agit de l'équivalent paresseux du quantificateur gourmand +</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">rechercher une correspondance une ou plusieurs fois (paresseux)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">Le quantificateur + recherche une correspondance avec l'élément précédent, une ou plusieurs fois. Il est équivalent au quantificateur {1,}. + est un quantificateur gourmand dont l'équivalent paresseux est +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">rechercher une correspondance une ou plusieurs fois</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">Le quantificateur *? recherche une correspondance avec l'élément précédent, zéro ou plusieurs fois, mais de manière aussi limitée possible. Il s'agit de l'équivalent paresseux du quantificateur gourmand *</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">rechercher une correspondance zéro ou plusieurs fois (paresseux)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">Le quantificateur * recherche une correspondance avec l'élément précédent, zéro ou plusieurs fois. Il est équivalent au quantificateur {0,}. * est un quantificateur gourmand dont l'équivalent paresseux est *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">rechercher une correspondance zéro ou plusieurs fois</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">Le quantificateur ?? recherche une correspondance avec l'élément précédent, zéro ou une fois, mais de manière aussi limitée possible. Il s'agit de l'équivalent paresseux du quantificateur gourmand ?</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">rechercher une correspondance zéro ou une fois (paresseux)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">Le quantificateur ? recherche une correspondance avec l'élément précédent, zéro ou une fois. Il est équivalent au quantificateur {0,1}. ? est un quantificateur gourmand dont l'équivalent paresseux est ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">rechercher une correspondance zéro ou une fois</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Cette construction de regroupement capture une 'sous-expression' correspondante, où 'sous-expression' représente un modèle d'expression régulière valide. Les captures qui utilisent des parenthèses sont numérotées automatiquement de gauche à droite en fonction de l'ordre des parenthèses ouvrantes dans l'expression régulière, à partir de l'une d'entre elles. La capture numérotée zéro représente le texte correspondant à l'intégralité du modèle d'expression régulière.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">sous-expression correspondante</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">nom</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">nom1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">nom2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">nom-ou-numéro</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Référence arrière nommée ou numérotée. 'nom' est le nom d'un groupe de capture défini dans le modèle d'expression régulière.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">référence arrière nommée</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Capture une sous-expression correspondante et vous permet d'y accéder par le nom ou le numéro. 'nom' est un nom de groupe valide, et 'sous-expression' est un modèle d'expression régulière valide. 'nom' ne doit contenir aucun caractère de ponctuation et ne peut pas commencer par un chiffre. Si le paramètre RegexOptions d'une méthode de critères spéciaux d'expression régulière inclut l'indicateur RegexOptions.ExplicitCapture, ou si l'option n est appliquée à cette sous-expression, le seul moyen de capturer une sous-expression est de nommer explicitement les groupes de capture.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">sous-expression correspondante nommée</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Un groupe de caractères négatif spécifie une liste de caractères qui doivent être absents d'une chaîne d'entrée pour produire une correspondance. La liste des caractères est spécifiée individuellement. Vous pouvez concaténer au moins deux plages de caractères. Par exemple, pour spécifier la plage de chiffres décimaux allant de "0" à "9", la plage de lettres minuscules allant de "a" à "f" et la plage de lettres majuscules allant de "A" à "F", utilisez [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">groupe de caractères négatif</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Une plage de caractères négative spécifie une liste de caractères qui doivent être absents d'une chaîne d'entrée pour produire une correspondance. 'firstCharacter' est le caractère de début de plage, et 'lastCharacter' est le caractère de fin de plage. Vous pouvez concaténer au moins deux plages de caractères. Par exemple, pour spécifier la plage de chiffres décimaux allant de "0" à "9", la plage de lettres minuscules allant de "a" à "f" et la plage de lettres majuscules allant de "A" à "F", utilisez [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">plage de caractères négative</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">La construction d'expression régulière \P{ nom } correspond aux caractères qui n'appartiennent pas à une catégorie générale Unicode ou à un bloc nommé, nom étant l'abréviation de la catégorie ou le nom du bloc nommé.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">catégorie Unicode négative</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Correspond au caractère de nouvelle ligne, \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">caractère de nouvelle ligne</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">non</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D correspond à n'importe quel caractère non numérique. Il est équivalent au modèle d'expression régulière \P{Nd}. Si vous spécifiez un comportement conforme à ECMAScript, \D équivaut à [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">caractère non numérique</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S correspond à tout caractère autre qu'un espace blanc. Il est équivalent au modèle d'expression régulière [^\f\n\r\t\v\x85\p{Z}], ou à l'inverse du modèle d'expression régulière équivalent à \s, qui correspond aux espaces blancs. Si vous spécifiez un comportement conforme à ECMAScript, \S équivaut à [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">caractère autre qu'un espace blanc</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">L'ancre \B spécifie que la correspondance ne doit pas être effectuée sur une limite de mot. Il s'agit du contraire de l'ancre \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">limite de non-mot</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W correspond à un caractère de non-mot. Il correspond à n'importe quel caractère à l'exception de ceux des catégories Unicode suivantes : Ll Lettre, Minuscule Lu Lettre, Majuscule Lt Lettre, Première lettre des mots en majuscule Lo Lettre, Autre Lm Lettre, Modificateur Mn Marque, Sans espacement Nd Nombre, Chiffre décimal Pc Ponctuation, Connecteur Si vous spécifiez un comportement conforme à ECMAScript, \W équivaut à [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">caractère de non-mot</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Cette construction ne capture pas la sous-chaîne correspondant à une sous-expression : La construction de groupe sans capture est généralement utilisée quand un quantificateur est appliqué à un groupe, mais que les sous-chaînes capturées par le groupe ne présentent pas d'intérêt. Si une expression régulière inclut des constructions de regroupement imbriqué, une construction de groupe sans capture externe ne s'applique pas aux constructions de groupes imbriqués internes.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">groupe sans capture</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">nombre, chiffre décimal</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">nombre, lettre</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">nombre, autre</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Référence arrière numérotée, où 'nombre' représente la position ordinale du groupe de capture dans l'expression régulière. Par exemple, \4 correspond au contenu du quatrième groupe de capture. Il existe une ambiguïté entre les codes d'échappement octaux (par exemple \16) et les références arrière \nnumérotées qui utilisent la même notation. Si l'ambiguïté pose un problème, vous pouvez utiliser la notation \k&lt;nom&gt;, qui est plus claire et qui ne peut pas être confondue avec les codes de caractère octaux. De même, les codes hexadécimaux tels que \xdd ne sont pas ambigus et ne peuvent pas être confondus avec les références arrière.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">référence arrière numérotée</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">autre, contrôle</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">autre, format</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">autre, non affecté</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">autre, usage privé</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">autre, substitution</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Un groupe de caractères positif spécifie une liste de caractères, dont l'un d'entre eux peut apparaître dans une chaîne d'entrée pour produire une correspondance.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">groupe de caractères positif</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Une plage de caractères positive spécifie une plage de caractères, dont l'un d'entre eux peut apparaître dans une chaîne d'entrée pour produire une correspondance. 'firstCharacter' est le caractère de début de plage, et 'lastCharacter' est le caractère de fin de plage. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">plage de caractères positive</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">ponctuation, fermeture</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">ponctuation, connecteur</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">ponctuation, tiret</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">ponctuation, guillemet final</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">ponctuation, guillemet initial</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">ponctuation, ouverture</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">ponctuation, autre</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">séparateur, ligne</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">séparateur, paragraphe</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">séparateur, espace</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">L'ancre \A spécifie qu'une correspondance doit exister au début de la chaîne d'entrée. Elle est identique à l'ancre ^, à ceci près que \A ignore l'option RegexOptions.Multiline. Ainsi, elle correspond uniquement au début de la première ligne d'une chaîne d'entrée multiligne.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">début de chaîne uniquement</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">L'ancre ^ spécifie que le modèle suivant doit commencer à la position du premier caractère de la chaîne. Si vous utilisez ^ avec l'option RegexOptions.Multiline, la correspondance doit exister au début de chaque ligne.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">début de chaîne ou de ligne</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">sous-expression</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">symbole, devise</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">symbole, math</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">symbole, modificateur</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">symbole, autre</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Correspond au caractère de tabulation, \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">caractère de tabulation</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">La construction d'expression régulière \p{ nom } correspond aux caractères qui appartiennent à une catégorie générale Unicode ou à un bloc nommé, nom étant l'abréviation de la catégorie ou le nom du bloc nommé.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">catégorie Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Correspond à une unité de code UTF-16 dont la valeur est au format hexadécimal ####.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">échappement Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Catégorie générale Unicode : {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Correspond au caractère de tabulation verticale, \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">caractère de tabulation verticale</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s correspond à un caractère représentant un espace blanc. Il équivaut aux séquences d'échappement et aux catégories Unicode suivantes : \f Caractère de saut de page, \u000C \n Caractère nouvelle ligne, \u000A \r Caractère de retour chariot, \u000D \t Caractère de tabulation, \u0009 \v Caractère de tabulation verticale, \u000B \x85 Caractère des points de suspension ou NEL (NEXT LINE) (…), \u0085 \p{Z} Correspond à un caractère de séparation Si vous spécifiez un comportement conforme à ECMAScript, \s équivaut à [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">caractère d'espace blanc</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">L'ancre \b spécifie que la correspondance doit se trouver à la limite située entre un caractère de mot (élément de langage \w) et un caractère de non-mot (élément de langage \W). Les caractères de mots sont constitués de caractères alphanumériques et de traits de soulignement. Un caractère de non-mot est un caractère qui n'est pas alphanumérique ou qui n'est pas un trait de soulignement. La correspondance peut également se produire à une limite de mot, au début ou à la fin de la chaîne. L'ancre \b est fréquemment utilisée pour vérifier qu'une sous-expression correspond à un mot entier, et non simplement au début ou à la fin d'un mot.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">limite de mot</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w correspond à n'importe quel caractère de mot. Un caractère de mot appartient à l'une des catégories Unicode suivantes : Ll Lettre, Minuscule Lu Lettre, Majuscule Lt Lettre, Première lettre des mots en majuscule Lo Lettre, Autre Lm Lettre, Modificateur Mn Marque, Sans espacement Nd Nombre, Chiffre décimal Pc Ponctuation, Connecteur Si vous spécifiez un comportement conforme à ECMAScript, \w équivaut à [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">caractère de mot</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">oui</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Assertion avant négative de largeur nulle, où, pour que la correspondance soit réussie, la chaîne d'entrée ne doit pas correspondre au modèle d'expression régulière de la sous-expression. La chaîne correspondante n'est pas incluse dans le résultat de la correspondance. Une assertion avant négative de largeur nulle est généralement utilisée au début ou à la fin d'une expression régulière. Au début d'une expression régulière, elle peut définir un modèle spécifique à ne pas mettre en correspondance quand le début de l'expression régulière définit un modèle similaire, mais plus général, à mettre en correspondance. Dans ce cas, elle est souvent utilisée pour limiter le retour sur trace. À la fin d'une expression régulière, elle peut définir une sous-expression qui ne peut pas se produire à la fin d'une correspondance.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">assertion avant négative de largeur nulle</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Assertion arrière négative de largeur nulle, où, pour qu'une correspondance soit réussie, la 'sous-expression' ne doit pas apparaître dans la chaîne d'entrée à gauche de la position actuelle. Les sous-chaînes qui ne correspondent pas à la 'sous-expression' ne sont pas incluses dans le résultat de la correspondance. Les assertions arrière négatives de largeur nulle sont généralement utilisées au début des expressions régulières. Le modèle qu'elles définissent empêche toute correspondance dans la chaîne qui suit. Elles sont également utilisées pour limiter le retour sur trace quand le ou les derniers caractères d'un groupe capturé ne doivent pas représenter un ou plusieurs des caractères qui correspondent au modèle d'expression régulière de ce groupe.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">assertion arrière négative de largeur nulle</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Assertion avant positive de largeur nulle, où, pour qu'une correspondance soit réussie, la chaîne d'entrée doit correspondre au modèle d'expression régulière de la 'sous-expression'. La sous-chaîne correspondante n'est pas incluse dans le résultat de la correspondance. Une assertion avant positive de largeur nulle n'effectue pas de rétroaction. En règle générale, une assertion avant positive de largeur nulle se trouve à la fin d'un modèle d'expression régulière. Elle définit une sous-chaîne qui doit se trouver à la fin d'une chaîne pour qu'une correspondance se produise mais qui ne doit pas être incluse dans la correspondance. Elle permet également d'empêcher un retour sur trace excessif. Vous pouvez utiliser une assertion avant positive de largeur nulle pour vérifier qu'un groupe capturé particulier commence par un texte correspondant à un sous-ensemble du modèle défini pour ce groupe capturé.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">assertion avant positive de largeur nulle</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Assertion arrière positive de largeur nulle, où, pour qu'une correspondance soit réussie, la 'sous-expression' doit apparaître dans la chaîne d'entrée à gauche de la position actuelle. La 'sous-expression' n'est pas incluse dans le résultat de la correspondance. Une assertion arrière positive de largeur nulle n'effectue pas de rétroaction. Les assertions arrière positives de largeur nulle sont généralement utilisées au début des expressions régulières. Le modèle qu'elles définissent est une condition préalable à une correspondance, bien qu'il ne fasse pas partie du résultat de la correspondance.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">assertion arrière positive de largeur nulle</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Les signatures de méthode associées dans les métadonnées ne sont pas mises à jour.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Suppression du document non prise en charge</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Supprimer le modificateur 'async'</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Supprimer les casts inutiles</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Supprimer les variables inutilisées</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Remplacer '{0}' par '{1}'</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Résoudre les marqueurs de conflit</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Modification non applicable</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Trier les modificateurs d'accessibilité</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Diviser en instructions '{0}' consécutives</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Diviser en instructions '{0}' imbriquées</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Le flux doit prendre en charge les opérations de lecture et de recherche.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Supprimer {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: libérer les ressources non managées (objets non managés) et substituer le finaliseur</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: substituer le finaliseur uniquement si '{0}' a du code pour libérer les ressources non managées</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Cibler les correspondances de types</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">L'assembly '{0}' contenant le type '{1}' référence le .NET Framework, ce qui n'est pas pris en charge.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">La sélection contient un appel de fonction locale sans sa déclaration.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Trop de | dans (?()|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Trop de )'s</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Impossible de lire le fichier source '{0}' ou le PDB généré pour le projet conteneur. Les changements apportés à ce fichier durant le débogage ne seront pas appliqués tant que son contenu ne correspondra pas à la source générée.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Propriété inconnue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Propriété inconnue '{0}'</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Caractère de contrôle non reconnu</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Séquence d'échappement non reconnue \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Construction de regroupement non reconnue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Ensemble [] inachevé</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Commentaire (?#...) non terminé</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Désenvelopper tous les arguments</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Désenvelopper tous les paramètres</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Désenvelopper et mettre en retrait tous les arguments</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Désenvelopper et mettre en retrait tous les paramètres</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Désenvelopper la liste d'arguments</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Désenvelopper la chaîne d'appels</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Désenvelopper l'expression</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Désenvelopper la liste de paramètres</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Utiliser le corps de bloc pour les expressions lambda</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Utiliser le corps d'expression pour les expressions lambda</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Utiliser une chaîne verbatim interpolée</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Valeur :</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Avertissement : La sémantique peut changer durant la conversion d'une instruction.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Envelopper et aligner la chaîne d'appels</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Envelopper et aligner l'expression</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Envelopper et aligner la longue chaîne d'appels</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Envelopper la chaîne d'appels</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Envelopper chaque argument</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Envelopper chaque paramètre</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Envelopper l'expression</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Envelopper la longue liste d'arguments</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Envelopper la longue chaîne d'appels</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Envelopper la longue liste de paramètres</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Enveloppement</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Vous pouvez utiliser la barre de navigation pour changer de contexte.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">« {0} » ne peut pas être vide ou avoir la valeur Null.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}' ne peut pas avoir une valeur null ou être un espace blanc.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">'{0}' n'a pas une valeur null ici.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">'{0}' a peut-être une valeur null ici.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">10 000 000es de seconde</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "fffffff" représente les sept chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les dix millionièmes de seconde d'une valeur de date et d'heure. Bien qu'il soit possible d'afficher les dix millionièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">10 000 000es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "FFFFFFF" représente les sept chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les dix millionièmes de seconde d'une valeur de date et d'heure. Toutefois, les zéros de fin ou les sept chiffres correspondant à des zéros ne sont pas affichés. Bien qu'il soit possible d'afficher les dix millionièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1 000 000es de seconde</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "ffffff" représente les six chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les millionièmes de seconde d'une valeur de date et d'heure. Bien qu'il soit possible d'afficher les millionièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1 000 000es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "FFFFFF" représente les six chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les millionièmes de seconde d'une valeur de date et d'heure. Toutefois, les zéros de fin ou les six chiffres correspondant à des zéros ne sont pas affichés. Bien qu'il soit possible d'afficher les millionièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">100 000es de seconde</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "fffff" représente les cinq chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les cents millièmes de seconde d'une valeur de date et d'heure. Bien qu'il soit possible d'afficher les cents millièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">100 000es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "FFFFF" représente les cinq chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les cents millièmes de seconde d'une valeur de date et d'heure. Toutefois, les zéros de fin ou les cinq chiffres correspondant à des zéros ne sont pas affichés. Bien qu'il soit possible d'afficher les cents millièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">10 000es de seconde</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "ffff" représente les quatre chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les dix millièmes de seconde d'une valeur de date et d'heure. Bien qu'il soit possible d'afficher les dix millièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT version 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">10 000es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Le spécificateur de format personnalisé "FFFF" représente les quatre chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les dix millièmes de seconde d'une valeur de date et d'heure. Toutefois, les zéros de fin ou les quatre chiffres correspondant à des zéros ne sont pas affichés. Bien qu'il soit possible d'afficher les dix millièmes d'un deuxième composant d'une valeur de temps, cette valeur risque de ne pas être significative. La précision des valeurs de date et d'heure dépend de la résolution de l'horloge système. Sur les systèmes d'exploitation Windows NT 3.5 (et versions ultérieures) et Windows Vista, la résolution de l'horloge est d'environ 10 à 15 millisecondes.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1 000es de seconde</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">Le spécificateur de format personnalisé "fff" représente les trois chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les millisecondes d'une valeur de date et d'heure.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1 000es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">Le spécificateur de format personnalisé "FFF" représente les trois chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les millisecondes d'une valeur de date et d'heure. Toutefois, les zéros de fin ou les trois chiffres correspondant à des zéros ne sont pas affichés.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">100es de seconde</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">Le spécificateur de format personnalisé "ff" représente les deux chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les centièmes de seconde d'une valeur de date et d'heure.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">100es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">Le spécificateur de format personnalisé "FF" représente les deux chiffres les plus significatifs de la fraction de seconde. En d'autres termes, il représente les centièmes de seconde d'une valeur de date et d'heure. Toutefois, les zéros de fin ou les deux chiffres correspondant à des zéros ne sont pas affichés.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">10es de seconde</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">10es de seconde (non nul)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">Le spécificateur de format personnalisé "F" représente le chiffre le plus significatif de la fraction de seconde. En d'autres termes, il représente les dixièmes de seconde d'une valeur de date et d'heure. Rien ne s'affiche si le chiffre est zéro. Si le spécificateur de format "F" est utilisé sans autres spécificateurs de format, il est interprété en tant que spécificateur de format de date et d'heure standard : "F". Le nombre de spécificateurs de format "F" utilisés avec la méthode ParseExact, TryParseExact, ParseExact ou TryParseExact indique le nombre maximal de chiffres les plus significatifs de la fraction de seconde qui peuvent être présents pour permettre une analyse correcte de la chaîne.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">Horloge de 12 heures (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Le spécificateur de format personnalisé "h" représente l'heure sous la forme d'un nombre compris entre 1 et 12. En d'autres termes, l'heure est représentée par une horloge de 12 heures qui compte les heures entières depuis minuit ou midi. Vous ne pouvez pas différencier une heure particulière après minuit et la même heure après midi. L'heure n'est pas arrondie, et une heure à un chiffre est présentée dans un format qui ne comporte aucun zéro de début. Par exemple, s'il est 5:43 du matin ou de l'après-midi, le spécificateur de format personnalisé affiche "5". Si le spécificateur de format "h" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard, et lève une exception FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">Horloge de 12 heures (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">Le spécificateur de format personnalisé "hh" (plus n'importe quel nombre de spécificateurs "h" supplémentaires) représente les heures sous la forme d'un nombre compris entre 01 et 12. En d'autres termes, les heures sont représentées par une horloge de 12 heures qui compte les heures entières écoulées depuis minuit ou midi. Vous ne pouvez pas différencier une heure particulière après minuit et la même heure après midi. L'heure n'est pas arrondie, et une heure à un chiffre est présentée dans un format qui comporte un zéro de début. Par exemple, s'il est 5:43 du matin ou de l'après-midi, le spécificateur de format personnalisé affiche "05".</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">Horloge de 24 heures (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Le spécificateur de format personnalisé "H" représente l'heure sous la forme d'un nombre compris entre 0 et 23. En d'autres termes, l'heure est représentée par une horloge de 24 heures de base zéro, qui compte les heures entières depuis minuit. Une heure à un chiffre est présentée dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "H" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard, et lève une exception FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">Horloge de 24 heures (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">Le spécificateur de format personnalisé "HH" (plus n'importe quel nombre de spécificateurs "H" supplémentaires) représente les heures sous la forme d'un nombre compris entre 00 et 23. En d'autres termes, les heures sont représentées par une horloge de 24 heures de base zéro, qui compte les heures écoulées depuis minuit. Une heure à un chiffre est présentée dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">code</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">séparateur de date</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Le spécificateur de format personnalisé "/" représente le séparateur de date, qui est utilisé pour différencier les années, les mois et les jours. Le séparateur de date localisé approprié est récupéré à partir de la propriété DateTimeFormatInfo.DateSeparator de la culture actuelle ou spécifiée. Remarque : Pour changer le séparateur de date d'une chaîne de date et d'heure particulière, spécifiez le caractère de séparation dans un délimiteur de chaîne littérale. Par exemple, la chaîne de format personnalisée mm'/'dd'/'yyyy produit une chaîne de résultat dans laquelle "/" est toujours utilisé en tant que séparateur de date. Pour changer le séparateur de date de toutes les dates d'une culture, changez la valeur de la propriété DateTimeFormatInfo.DateSeparator de la culture actuelle, ou instanciez un objet DateTimeFormatInfo, affectez le caractère à sa propriété DateSeparator, puis appelez une surcharge de la méthode de format qui inclut un paramètre IFormatProvider. Si le spécificateur de format "/" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard, et lève une exception FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">jour du mois (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">Le spécificateur de format personnalisé "d" représente le jour du mois sous la forme d'un nombre compris entre 1 et 31. Un jour à un chiffre est présenté dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "d" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "d".</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">jour du mois (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">La chaîne de format personnalisée "dd" représente le jour du mois sous la forme d'un nombre compris entre 01 et 31. Un jour à un chiffre est présenté dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">jour de la semaine (abrégé)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">Le spécificateur de format personnalisé "ddd" représente le nom abrégé du jour de la semaine. Le nom abrégé localisé du jour de la semaine est récupéré à partir de la propriété DateTimeFormatInfo.AbbreviatedDayNames de la culture actuelle ou spécifiée.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">jour de la semaine (complet)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">Le spécificateur de format personnalisé "dddd" (plus n'importe quel nombre de spécificateurs "d" supplémentaires) représente le nom complet du jour de la semaine. Le nom localisé du jour de la semaine est récupéré à partir de la propriété DateTimeFormatInfo.DayNames de la culture actuelle ou spécifiée.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">discard</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">à partir des métadonnées</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">date longue/heure longue (complet)</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">Le spécificateur de format standard "F" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.FullDateTimePattern actuelle. Par exemple, la chaîne de format personnalisée pour la culture invariante est "dddd, dd MMMM yyyy HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">date longue/heure courte (complet)</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Spécificateur de format complet de date longue et d'heure courte ("f") Le spécificateur de format standard "f" représente une combinaison des modèles de date longue ("D") et d'heure courte ("t"), séparés par un espace.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">date courte/heure longue (général)</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">Le spécificateur de format standard "G" représente une combinaison des modèles de date courte ("d") et d'heure longue ("T"), séparés par un espace.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">date courte/heure courte (général)</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">Le spécificateur de format standard "g" représente une combinaison des modèles de date courte ("d") et d'heure courte ("t"), séparés par un espace.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">surcharge générique</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">surcharges génériques</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">dans {0} ({1} - {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">dans la source (attribut)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">date longue</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">Le spécificateur de format standard "D" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.LongDatePattern actuelle. Par exemple, la chaîne de format personnalisée pour la culture invariante est "dddd, dd MMMM yyyy".</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">heure longue</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">Le spécificateur de format standard "T" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.LongTimePattern d'une culture spécifique. Par exemple, la chaîne de format personnalisée pour la culture invariante est "HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">minute (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">Le spécificateur de format personnalisé "m" représente les minutes sous la forme d'un nombre compris entre 0 et 59. Le résultat correspond aux minutes entières qui se sont écoulées depuis la dernière heure. Une minute à un chiffre est présentée dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "m" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "m".</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">minute (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">Le spécificateur de format personnalisé "mm" (plus n'importe quel nombre de spécificateurs "m" supplémentaires) représente les minutes sous la forme d'un nombre compris entre 00 et 59. Une minute à un chiffre est présentée dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">mois (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">Le spécificateur de format personnalisé "M" représente le mois sous la forme d'un nombre compris entre 1 et 12 (ou entre 1 et 13 pour les calendriers de 13 mois). Un mois à un chiffre est présenté dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "M" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "M".</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">mois (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">Le spécificateur de format personnalisé "MM" représente le mois sous la forme d'un nombre compris entre 01 et 12 (ou entre 01 et 13 pour les calendriers de 13 mois). Un mois à un chiffre est présenté dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">mois (abrégé)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">Le spécificateur de format personnalisé "MMM" représente le nom abrégé du mois. Le nom abrégé localisé du mois est récupéré à partir de la propriété DateTimeFormatInfo.AbbreviatedMonthNames de la culture actuelle ou spécifiée.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">jour du mois</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">Le spécificateur de format standard "M" ou "m" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.MonthDayPattern actuelle. Par exemple, la chaîne de format personnalisée pour la culture invariante est "MMMM dd".</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">mois (complet)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">Le spécificateur de format personnalisé "MMMM" représente le nom complet du mois. Le nom localisé du mois est récupéré à partir de la propriété DateTimeFormatInfo.MonthNames de la culture actuelle ou spécifiée.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">surcharge</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">surcharges</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">Mot clé {0}</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Encapsuler le champ : '{0}' (et utiliser la propriété)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Encapsuler le champ : '{0}' (mais utiliser toujours le champ)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Encapsuler les champs (et utiliser la propriété)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Encapsuler les champs (mais utiliser toujours le champ)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Impossible d'extraire l'interface : la sélection n'est pas comprise dans une classe, une interface ou un struct.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Impossible d'extraire l'interface : le type ne contient aucun élément pouvant être extrait vers une interface.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">Impossible de construire l'arborescence finale</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Le type de paramètre ou le type de retour ne peut pas être un type anonyme : [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">La sélection ne contient aucune instruction active.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">La sélection contient une erreur ou un type inconnu.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Le paramètre de type '{0}' est masqué par un autre paramètre de type '{1}'.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">L'adresse d'une variable est utilisée dans le code sélectionné.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">L'assignation à des champs en lecture seule doit se faire dans un constructeur : [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">Le code généré chevauche une partie cachée du code</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Ajouter des paramètres optionnels à '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Ajouter des paramètres à '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Générer le constructeur de délégation '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Générer le constructeur '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Générer un constructeur d'assignation de champ '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Générer Equals et GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Générer Equals(object)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Générer GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Générer un constructeur dans '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Générer tout</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Générer le membre enum '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Générer la constante '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Générer la propriété en lecture seule '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Générer la propriété '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Générer le champ en lecture seule '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Générer le champ '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Générer le '{0}' local</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Générer {0} '{1}' dans un nouveau fichier</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Générer un {0} '{1}' imbriqué</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Espace de noms global</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Implémenter l'interface abstraitement</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Implémenter l'interface via '{0}'</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Implémenter l'interface</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Introduire un champ pour '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Introduire un élément local pour '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Introduire une constante pour '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Introduire une constante locale pour '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Introduire un champ pour toutes les occurrences de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Introduire un élément local pour toutes les occurrences de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Introduire une constante pour toutes les occurrences de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Introduire une constante locale pour toutes les occurrences de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Introduire une variable de requête pour toutes les occurrences de '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Introduire une variable de requête pour '{0}'</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Types anonymes :</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">est</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Représente un objet dont les opérations seront résolues au moment de l'exécution.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">constante</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">Champ</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">constante locale</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">variable locale</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">Étiquette</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">période/ère</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Les spécificateurs de format personnalisés "g" ou "gg" (plus n'importe quel nombre de spécificateurs "g" supplémentaires) représentent la période ou l'ère, par exemple après J.-C. L'opération qui consiste à appliquer un format ignore ce spécificateur si la date visée n'a pas de chaîne de période ou d'ère associée. Si le spécificateur de format "g" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "g".</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">variable de plage</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">paramètre</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">In</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Résumé :</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Variables locales et paramètres</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Paramètres de type :</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Retourne :</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Exceptions :</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Remarques :</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">La génération de code source pour les symboles de ce type n'est pas prise en charge</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">assembly</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">emplacement inconnu</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Genre de membre d'interface inattendu : {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Genre de symbole inconnu</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Générer la propriété abstraite '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Générer la méthode abstraite '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Générer la méthode '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">L'assembly demandé est déjà chargé à partir de '{0}'.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Le symbole ne possède pas d'icône.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Une méthode asynchrone ne peut pas contenir des paramètres ref/out : [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Le membre est défini dans des métadonnées.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Vous pouvez seulement modifier la signature d'un constructeur, d'un indexeur, d'une méthode ou d'un délégué.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Ce symbole possède des définitions ou des références associées dans les métadonnées. La modification de sa signature peut entraîner des erreurs de build. Voulez-vous continuer ?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Modifier la signature...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Générer un nouveau type...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Échec de l'analyseur de diagnostic utilisateur.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">L'analyseur '{0}' a levé une exception de type {1} avec le message '{2}'.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">L'analyseur '{0}' a levé l'exception suivante : '{1}'.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Simplifier les noms</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Simplifier l'accès au membre</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Supprimer une qualification</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Une erreur inconnue s'est produite</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Disponibilité</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Non disponible ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">dans la source</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">dans le fichier de suppression</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Retirer la suppression {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Retirer la suppression</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;En attente&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Remarque : appuyez deux fois sur la touche Tab pour insérer l'extrait de code '{0}'.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Implémenter l'interface explicitement avec le modèle Dispose</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Implémenter l'interface avec le modèle Dispose</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Répétition du triage {0}(actuellement '{1}')</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">L'argument ne peut pas avoir un élément null.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">L'argument ne peut pas être vide.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">Le diagnostic signalé avec l'ID '{0}' n'est pas pris en charge par l'analyseur.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Calcul de la correction de toutes les occurrences (correction du code)...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Corriger toutes les occurrences</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Document</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Projet</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Solution</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: supprimer l'état managé (objets managés)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: affecter aux grands champs une valeur null</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Compilateur</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">En direct</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">valeur enum</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">Champ const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">méthode</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">Opérateur</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">constructeur</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">auto-propriété</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">propriété</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">accesseur d'événement</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">date/heure (rfc1123)</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Le spécificateur de format standard "R" ou "r" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.RFC1123Pattern. Le modèle reflète une norme définie, et la propriété est en lecture seule. Elle est donc toujours identique, quelle que soit la culture utilisée ou le fournisseur de format indiqué. La chaîne de format personnalisée est "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". Quand ce spécificateur de format standard est utilisé, l'opération qui consiste à appliquer un format ou à exécuter une analyse utilise toujours la culture invariante.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">date/heure (aller-retour)</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">Le spécificateur de format standard "O" ou "o" représente une chaîne de format de date et d'heure personnalisée à l'aide d'un modèle qui conserve les informations de fuseau horaire et émet une chaîne de résultat conforme à la norme ISO 8601. Pour les valeurs DateTime, ce spécificateur de format permet de conserver les valeurs de date et d'heure ainsi que la propriété DateTime.Kind au format texte. La chaîne à laquelle le format a été appliqué peut être réanalysée à l'aide de la méthode DateTime.Parse(String, IFormatProvider, DateTimeStyles) ou DateTime.ParseExact si le paramètre styles a la valeur DateTimeStyles.RoundtripKind. Le spécificateur de format standard "O" ou "o" correspond à la chaîne de format personnalisée "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" pour les valeurs DateTime, et à la chaîne de format personnalisée "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" pour les valeurs DateTimeOffset. Dans cette chaîne, les paires de guillemets simples qui délimitent les caractères individuels, par exemple les tirets, les deux-points et la lettre "T", indiquent que le caractère individuel est un littéral qui ne peut pas être changé. Les apostrophes n'apparaissent pas dans la chaîne de sortie. Le spécificateur de format standard "O" ou "o" (avec la chaîne de format personnalisée "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK") tire parti des trois façons dont la norme ISO 8601 représente les informations de fuseau horaire pour conserver la propriété Kind des valeurs DateTime : Le composant de fuseau horaire des valeurs de date et d'heure de DateTimeKind.Local représente un décalage par rapport à l'heure UTC (par exemple +01:00, -07:00). Toutes les valeurs de DateTimeOffset sont également représentées dans ce format. Le composant de fuseau horaire des valeurs de date et d'heure de DateTimeKind.Utc utilise "Z" (qui signifie décalage de zéro) pour représenter l'heure UTC. Les valeurs de date et d'heure de DateTimeKind.Unspecified n'ont aucune information de fuseau horaire. Dans la mesure où le spécificateur de format standard "O" ou "o" est conforme à une norme internationale, l'opération qui consiste à appliquer un format ou à exécuter une analyse en fonction du spécificateur utilise toujours la culture invariante et le calendrier grégorien. Les chaînes passées aux méthodes Parse, TryParse, ParseExact et TryParseExact de DateTime et DateTimeOffset peuvent être analysées à l'aide du spécificateur de format "O" ou "o", si elles sont dans l'un de ces formats. Dans le cas des objets DateTime, la surcharge d'analyse que vous appelez doit également inclure un paramètre styles ayant la valeur DateTimeStyles.RoundtripKind. Notez que si vous appelez une méthode d'analyse avec la chaîne de format personnalisée qui correspond au spécificateur de format "O" ou "o", vous n'obtenez pas les mêmes résultats que "O" ou "o". Cela est dû au fait que les méthodes d'analyse qui s'appuient sur une chaîne de format personnalisée ne peuvent pas analyser la représentation sous forme de chaîne des valeurs de date et d'heure qui n'ont pas de composant de fuseau horaire ou qui utilisent "Z" pour indiquer l'heure UTC.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">seconde (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">Le spécificateur de format personnalisé "s" représente les secondes sous la forme d'un nombre compris entre 0 et 59. Le résultat correspond aux secondes entières qui se sont écoulées depuis la dernière minute. Une seconde à un chiffre est présentée dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "s" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "s".</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">seconde (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">Le spécificateur de format personnalisé "ss" (plus n'importe quel nombre de spécificateurs "s" supplémentaires) représente les secondes sous la forme d'un nombre compris entre 00 et 59. Le résultat correspond aux secondes entières qui se sont écoulées depuis la dernière minute. Une seconde à un chiffre est présentée dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">date courte</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">Le spécificateur de format standard "d" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.ShortDatePattern d'une culture spécifique. Par exemple, la chaîne de format personnalisée retournée par la propriété ShortDatePattern de la culture invariante est "MM/dd/yyyy".</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">heure courte</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">Le spécificateur de format standard "t" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.ShortTimePattern actuelle. Par exemple, la chaîne de format personnalisée pour la culture invariante est "HH:mm".</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">date/heure pouvant être triée</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Le spécificateur de format standard "s" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.SortableDateTimePattern. Le modèle reflète une norme définie (ISO 8601), et la propriété est en lecture seule. Elle est donc toujours identique, quelle que soit la culture utilisée ou le fournisseur de format indiqué. La chaîne de format personnalisée est "yyyy'-'MM'-'dd'T'HH':'mm':'ss". Le spécificateur de format "s" a pour but de produire des chaînes triées de manière cohérente dans l'ordre croissant ou décroissant en fonction des valeurs de date et d'heure. Ainsi, bien que le spécificateur de format standard "s" représente une valeur de date et d'heure dans un format cohérent, l'opération qui consiste à appliquer un format ne modifie pas la valeur de l'objet de date et d'heure visé pour refléter sa propriété DateTime.Kind ou sa valeur DateTimeOffset.Offset. Par exemple, les chaînes qui résultent de l'application du format souhaité aux valeurs de date et d'heure 2014-11-15T18:32:17+00:00 et 2014-11-15T18:32:17+08:00 sont identiques. Quand ce spécificateur de format standard est utilisé, l'opération qui consiste à appliquer un format ou à exécuter une analyse utilise toujours la culture invariante.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">constructeur statique</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'symbol' ne peut pas être un espace de noms.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">séparateur d'heure</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Le spécificateur de format personnalisé ":" représente le séparateur d'heure, qui est utilisé pour différencier les heures, les minutes et les secondes. Le séparateur d'heure localisé approprié est récupéré à partir de la propriété DateTimeFormatInfo.TimeSeparator de la culture actuelle ou spécifiée. Remarque : Pour changer le séparateur d'heure d'une chaîne de date et d'heure particulière, spécifiez le caractère de séparation dans un délimiteur de chaîne littérale. Par exemple, la chaîne de format personnalisée hh'_'dd'_'ss produit une chaîne de résultat dans laquelle "_" (trait de soulignement) est toujours utilisé en tant que séparateur d'heure. Pour changer le séparateur d'heure de toutes les heures d'une culture, changez la valeur de la propriété DateTimeFormatInfo.TimeSeparator de la culture actuelle, ou instanciez un objet DateTimeFormatInfo, affectez le caractère à sa propriété TimeSeparator, puis appelez une surcharge de la méthode de format qui inclut un paramètre IFormatProvider. Si le spécificateur de format ":" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard, et lève une exception FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">fuseau horaire</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Le spécificateur de format personnalisé "K" représente les informations de fuseau horaire d'une valeur de date et d'heure. Quand ce spécificateur de format est utilisé avec des valeurs DateTime, la chaîne résultante est définie par la valeur de la propriété DateTime.Kind : Pour le fuseau horaire local (valeur de propriété DateTime.Kind de DateTimeKind.Local), ce spécificateur est équivalent au spécificateur "zzz". Il produit une chaîne contenant le décalage local par rapport à l'heure UTC, par exemple "-07:00". Pour une heure UTC (valeur de propriété DateTime.Kind de DateTimeKind.Utc), la chaîne résultante inclut un caractère "Z" qui représente une date UTC. Pour une heure provenant d'un fuseau horaire non spécifié (heure dont la propriété DateTime.Kind est égale à DateTimeKind.Unspecified), le résultat est équivalent à String.Empty. Pour les valeurs DateTimeOffset, le spécificateur de format "K" est équivalent au spécificateur de format "zzz". Il produit une chaîne qui contient le décalage de la valeur DateTimeOffset par rapport à l'heure UTC. Si le spécificateur de format "K" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard, et lève une exception FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">contrainte de type</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">paramètre de type</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">attribut</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Remplacer '{0}' et '{1}' par une propriété</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Remplacer '{0}' par une propriété</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Méthode référencée implicitement</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Générer le type '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Générer {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Changer '{0}' en '{1}'.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Une méthode non appelée ne peut pas être remplacée par une propriété.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Seules les méthodes avec un seul argument, qui n'est pas une déclaration de variable de sortie, peuvent être remplacées par une propriété.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Impossible de créer une instance de l'analyseur {0} à partir de {1} : {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">L'assembly {0} ne contient pas d'analyseurs.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Impossible de charger l'assembly Analyseur {0} : {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Rendre la méthode synchrone</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">de {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Rechercher et installer la dernière version</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Utiliser la version locale '{0}'</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Utiliser la version installée localement '{0}' '{1}' Version utilisée dans : {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Rechercher et installer la dernière version de '{0}'</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Installer avec le gestionnaire de package...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Installer '{0} {1}'</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Installer la version '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Générer la variable '{0}'</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Classes</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Constantes</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Délégués</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Enums</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Événements</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Méthodes d'extension</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Champs</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Interfaces</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Variables locales</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Méthodes</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Modules</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Espaces de noms</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Propriétés</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Structures</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Paramètres :</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">L'élément SignatureHelpItem variadique doit avoir au moins un paramètre.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Remplacer '{0}' par une méthode</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Remplacer '{0}' par des méthodes</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Propriété référencée implicitement</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Impossible de remplacer la propriété de manière sécurisée par un appel de méthode</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Convertir en chaîne interpolée</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Déplacer le type vers {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Renommer le fichier en {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Renommer le type en {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Supprimer une étiquette</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Ajouter les nœuds de paramètre manquants</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Rendre la portée contenante async</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Rendre la portée contenante async (retourner Task)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Inconnu)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Utiliser un type d'infrastructure</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Installer le package '{0}'</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">projet {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">{0}' complet</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Supprimez la référence à '{0}'.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Mots clés</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Extraits</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Tout en minuscules</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Tout en majuscules</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Premier mot en majuscule</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Casse Pascal</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Supprimer le document '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Ajouter le document '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Ajouter le nom d'argument '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Prendre '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Prendre les deux</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Prendre le bas</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Prendre le haut</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Supprimer la variable inutilisée</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Convertir en valeur binaire</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Convertir en valeur décimale</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Convertir en hexadécimal</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Séparer les milliers</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Séparer les mots</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Séparer les quartets</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Supprimer les séparateurs</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Ajouter un paramètre à '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Générer le constructeur...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Choisir les membres à utiliser comme paramètres de constructeur</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Choisir les membres à utiliser dans Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Générer les substitutions...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Choisir les membres à substituer</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Ajouter un contrôle de valeur null</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Ajouter le contrôle 'string.IsNullOrEmpty'</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Ajouter le contrôle 'string.IsNullOrWhiteSpace'</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Initialiser le champ '{0}'</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Initialiser la propriété '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Ajouter des contrôles de valeur null</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Générer les opérateurs</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Implémenter {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">Le diagnostic signalé '{0}' a un emplacement source dans le fichier '{1}', qui ne fait pas partie de la compilation en cours d'analyse.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">Le diagnostic signalé '{0}' a un emplacement source '{1}' dans le fichier '{2}', qui se trouve en dehors du fichier donné.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">dans {0} (projet {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Ajouter des modificateurs d'accessibilité</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Déplacer la déclaration près de la référence</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Convertir en propriété complète</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Avertissement : La méthode remplace le symbole des métadonnées</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Utiliser {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Ajouter le nom d'argument '{0}' (ainsi que les arguments de fin)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">fonction locale</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">indexeur</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Alias de type ambigu : '{0}'</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Avertissement : La collection a été modifiée durant l'itération.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Avertissement : La variable d'itération a traversé la limite de fonction.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Avertissement : La collection risque d'être modifiée durant l'itération.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">date/heure complète universelle</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">Le spécificateur de format standard "U" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.FullDateTimePattern d'une culture spécifique. Le modèle est identique au modèle "F". Toutefois, la valeur DateTime est automatiquement convertie en heure UTC avant que le format souhaité ne lui soit appliqué.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">date/heure universelle pouvant être triée</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">Le spécificateur de format standard "u" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.UniversalSortableDateTimePattern. Le modèle reflète une norme définie, et la propriété est en lecture seule. Elle est donc toujours identique, quelle que soit la culture utilisée ou le fournisseur de format indiqué. La chaîne de format personnalisée est "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". Quand ce spécificateur de format standard est utilisé, l'opération qui consiste à appliquer un format ou à exécuter une analyse utilise toujours la culture invariante. Bien que la chaîne résultante soit censée exprimer une heure UTC, aucune conversion de la valeur DateTime d'origine n'est effectuée durant l'opération qui consiste à appliquer le format souhaité. Vous devez donc convertir une valeur DateTime au format UTC en appelant la méthode DateTime.ToUniversalTime avant de lui appliquer le format souhaité.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">mise à jour des utilisations dans le membre conteneur</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">mise à jour des utilisations dans le projet conteneur</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">mise à jour des utilisations dans le type conteneur</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">mise à jour des utilisations dans les projets dépendants</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">décalage des heures et des minutes UTC</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Avec les valeurs DateTime, le spécificateur de format personnalisé "zzz" représente le décalage signé du fuseau horaire du système d'exploitation local par rapport à l'heure UTC, en heures et en minutes. Il ne reflète pas la valeur de la propriété DateTime.Kind d'une instance. C'est la raison pour laquelle l'utilisation du spécificateur de format "zzz" n'est pas recommandée avec les valeurs DateTime. Avec les valeurs DateTimeOffset, ce spécificateur de format représente le décalage de la valeur DateTimeOffset par rapport à l'heure UTC, en heures et en minutes. Le décalage est toujours affiché avec un signe de début. Le signe plus (+) indique les heures d'avance par rapport à l'heure UTC, et le signe moins (-) indique les heures de retard par rapport à l'heure UTC. Un décalage à un chiffre est présenté dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">décalage des heures UTC (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Avec les valeurs DateTime, le spécificateur de format personnalisé "z" représente le décalage signé du fuseau horaire du système d'exploitation local par rapport à l'heure UTC, en heures. Il ne reflète pas la valeur de la propriété DateTime.Kind d'une instance. C'est la raison pour laquelle l'utilisation du spécificateur de format "z" n'est pas recommandée avec les valeurs DateTime. Avec les valeurs DateTimeOffset, ce spécificateur de format représente le décalage de la valeur DateTimeOffset par rapport à l'heure UTC, en heures. Le décalage est toujours affiché avec un signe de début. Le signe plus (+) indique les heures d'avance par rapport à l'heure UTC, et le signe moins (-) indique les heures de retard par rapport à l'heure UTC. Un décalage à un chiffre est présenté dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "z" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard, et lève une exception FormatException.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">décalage des heures UTC (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Avec les valeurs DateTime, le spécificateur de format personnalisé "zz" représente le décalage signé du fuseau horaire du système d'exploitation local par rapport à l'heure UTC, en heures. Il ne reflète pas la valeur de la propriété DateTime.Kind d'une instance. C'est la raison pour laquelle l'utilisation du spécificateur de format "zz" n'est pas recommandée avec les valeurs DateTime. Avec les valeurs DateTimeOffset, ce spécificateur de format représente le décalage de la valeur DateTimeOffset par rapport à l'heure UTC, en heures. Le décalage est toujours affiché avec un signe de début. Le signe plus (+) indique les heures d'avance par rapport à l'heure UTC, et le signe moins (-) indique les heures de retard par rapport à l'heure UTC. Un décalage à un chiffre est présenté dans un format qui comporte un zéro de début.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">Intervalle [x-y] dans l'ordre inverse</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">année (1 à 2 chiffres)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">Le spécificateur de format personnalisé "y" représente l'année sous la forme d'un nombre à un ou deux chiffres. Si l'année comporte plus de deux chiffres, seuls les deux chiffres de poids faible apparaissent dans le résultat. Si le premier chiffre d'une année à deux chiffres commence par un zéro (par exemple 2008), le nombre est présenté dans un format qui ne comporte aucun zéro de début. Si le spécificateur de format "y" est utilisé sans autres spécificateurs de format personnalisés, il est interprété en tant que spécificateur de format de date et d'heure standard : "y".</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">année (2 chiffres)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">Le spécificateur de format personnalisé "yy" représente l'année sous la forme d'un nombre à deux chiffres. Si l'année comporte plus de deux chiffres, seuls les deux chiffres de poids faible apparaissent dans le résultat. Si l'année à deux chiffres comporte moins de deux chiffres significatifs, la valeur numérique est complétée avec des zéros de début pour produire deux chiffres. Dans une opération d'analyse, une année à deux chiffres analysée à l'aide du spécificateur de format personnalisé "yy" est interprétée en fonction de la propriété Calendar.TwoDigitYearMax du calendrier actuel du fournisseur de format. L'exemple suivant analyse la représentation sous forme de chaîne d'une date qui comporte une année à deux chiffres, à l'aide du calendrier grégorien par défaut de la culture en-US, qui, dans le cas présent, correspond à la culture actuelle. Il change ensuite l'objet CultureInfo de la culture actuelle pour utiliser un objet GregorianCalendar dont la propriété TwoDigitYearMax a été modifiée.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">année (3 à 4 chiffres)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">Le spécificateur de format personnalisé "yyy" représente l'année sous la forme d'un nombre à trois chiffres au minimum. Si l'année comporte plus de trois chiffres significatifs, ils sont inclus dans la chaîne résultante. Si l'année comporte moins de trois chiffres, la valeur numérique est complétée avec des zéros de début pour produire trois chiffres.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">année (4 chiffres)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">Le spécificateur de format personnalisé "yyyy" représente l'année sous la forme d'un nombre à quatre chiffres au minimum. Si l'année comporte plus de quatre chiffres significatifs, ils sont inclus dans la chaîne résultante. Si l'année comporte moins de quatre chiffres, la valeur numérique est complétée avec des zéros de début pour produire quatre chiffres.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">année (5 chiffres)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">Le spécificateur de format personnalisé "yyyyy" (plus n'importe quel nombre de spécificateurs "y" supplémentaires) représente l'année sous la forme d'un nombre à cinq chiffres au minimum. Si l'année comporte plus de cinq chiffres significatifs, ils sont inclus dans la chaîne résultante. Si l'année comporte moins de cinq chiffres, la valeur numérique est complétée avec des zéros de début pour produire cinq chiffres. S'il existe des spécificateurs "y" supplémentaires, la valeur numérique est complétée avec autant de zéros de début que nécessaire pour produire le nombre de spécificateurs "y".</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">année mois</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">Le spécificateur de format standard "Y" ou "y" représente une chaîne de format de date et d'heure personnalisée, qui est définie par la propriété DateTimeFormatInfo.YearMonthPattern de la culture spécifiée. Par exemple, la chaîne de format personnalisée pour la culture invariante est "yyyy MMMM".</target> <note /> </trans-unit> </body> </file> </xliff>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/xlf/FeaturesResources.it.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="it" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (abbreviato)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">L'identificatore di formato personalizzato "t" rappresenta il primo carattere dell'indicatore AM/PM. L'indicatore localizzato appropriato viene recuperato dalla proprietà DateTimeFormatInfo.AMDesignator o DateTimeFormatInfo.PMDesignator delle impostazioni cultura correnti o specificate. L'indicatore AM viene usato per tutti gli orari compresi tra 0:00:00 (mezzanotte) e 11:59:59.999. L'indicatore PM viene usato per tutti gli orari compresi tra 12:00:00 (mezzogiorno) e 23:59:59.999. Se l'identificatore di formato "t" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato data e ora standard "t".</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (esteso)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">L'identificatore di formato personalizzato "tt" (più qualsiasi numero di identificatori "t" aggiuntivi) rappresenta l'indicatore AM/PM completo. L'indicatore localizzato appropriato viene recuperato dalla proprietà DateTimeFormatInfo.AMDesignator o DateTimeFormatInfo.PMDesignator delle impostazioni cultura correnti o specificate. L'indicatore AM viene usato per tutti gli orari compresi tra 0:00:00 (mezzanotte) e 11:59:59.999. L'indicatore PM viene usato per tutti gli orari compresi tra 12:00:00 (mezzogiorno) e 23:59:59.999. Assicurarsi di usare l'identificatore "tt" per le lingue per le quali è necessario mantenere la distinzione tra AM e PM. Un esempio è la lingua giapponese, in cui gli indicatori AM e PM sono diversi nel secondo carattere anziché nel primo.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">L'ultimo elemento di una classe di caratteri deve essere una sottrazione</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Aggiungi l'attributo 'DebuggerDisplay'</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Aggiungi cast esplicito</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Aggiungi nome del membro</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Aggiungi controlli Null per tutti i parametri</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Aggiungi il parametro facoltativo al costruttore</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Aggiungi il parametro a '{0}' (e override/implementazioni)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Aggiungi il parametro al costruttore</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Aggiunge il riferimento al progetto a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Aggiunge il riferimento a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Il campo Azioni non può essere vuoto.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Aggiungi il nome dell'elemento tupla '{0}'</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Allinea gli argomenti con ritorno a capo</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Allinea i parametri con ritorno a capo</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Le condizioni di alternanza non possono essere commenti</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Le condizioni di alternanza non consentono l'acquisizione e non possono essere denominate</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Applica le preferenze relative alle intestazioni di file</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Applica le preferenze di inizializzazione di oggetti/raccolte</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">L'attività attesa restituisce '{0}'</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">L'attività attesa non restituisce alcun valore</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Le classi di base contengono membri non implementati inaccessibili</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Non è possibile applicare le modifiche. Errore imprevisto: '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Non è possibile includere la classe \{0} nell'intervallo di caratteri</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">I numeri del gruppo Capture devono essere minori o uguali a Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Il numero di acquisizioni non può essere zero</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;deduci&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;ometti&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Passa allo spazio dei nomi globale</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Le modifiche non sono consentite in caso di arresto in corrispondenza dell'eccezione</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Le modifiche apportate al progetto '{0}' non verranno applicate mentre l'applicazione è in esecuzione</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Configura lo stile del codice di {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Configura la gravità di {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Configura la gravità per tutti gli analizzatori di '{0}'</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Configura la gravità per tutti gli analizzatori</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Converti in LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Aggiungi a '{0}'</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Converti in classe</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Converti in LINQ (form di chiamata)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Converti in record</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Converti in struct di record</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Converti in struct</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Converti il tipo in '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Crea e assegna il campo '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Crea e assegna la proprietà '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Crea e assegna rimanenti come campi</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Crea e assegna rimanenti come proprietà</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Non modificare questo codice. Inserire il codice di pulizia nel metodo '{0}'</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Il contenuto corrente del file di origine '{0}' non corrisponde al codice sorgente compilato. Tutte le modifiche apportate a questo file durante il debug non verranno applicate finché il relativo contenuto non corrisponde al codice sorgente compilato.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Il documento deve essere contenuto nell'area di lavoro che ha creato il servizio</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Modifica e continuazione</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Modifica e continuazione non consentito dal modulo</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Le modifiche apportate al progetto '{0}' impediranno la continuazione della sessione di debug: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">La funzione Modifica e continuazione non è supportata dal runtime.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Si è verificato un errore durante la lettura del file '{0}': {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Si è verificato un errore durante la creazione dell'istanza di CodeFixProvider</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Si è verificato un errore durante la creazione dell'istanza di CodeFixProvider '{0}'</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Esempio:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Esempi:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">I metodi dei record implementati in modo esplicito devono avere nomi di parametro corrispondenti all'equivalente generato dal compilatore '{0}'</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Estrai classe di base...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Estrai interfaccia...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Estrai funzione locale</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Estrai il metodo</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Non è stato possibile analizzare il flusso di dati per: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Correggi formattazione</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Correggi l'errore di ortografia '{0}'</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Formatta documento</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Formattazione del documento</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Genera gli operatori di confronto</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Genera il costruttore in '{0}' (con campi)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Genera il costruttore in '{0}' (con proprietà)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Genera per '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Generare il parametro '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Generare il parametro '{0}' (e override/implementazioni)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Carattere \ non valido alla fine del criterio</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">{x,y} non valido con x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Implementa '{0}' in modo esplicito</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Implementa '{0}' in modo implicito</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Implementa la classe astratta</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Implementa tutte le interfacce in modo esplicito</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Implementa tutte le interfacce in modo implicito</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Implementare tutti i membri in modo esplicito</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Implementa in modo esplicito</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Implementa in modo implicito</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Implementare i membri rimanenti in modo esplicito</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Implementa tramite '{0}'</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Sequenza di caratteri di escape \p{X} incompleta</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Imposta rientro per tutti gli argomenti</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Imposta rientro per tutti i parametri</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Imposta rientro per argomenti con ritorno a capo</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Imposta rientro per parametri con ritorno a capo</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">Imposta '{0}' come inline</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Imposta come inline e mantieni '{0}'</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Cifre esadecimali insufficienti</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Introduci costante</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Introduci campo</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Introduci variabile locale</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Introduci la variabile di query</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Nome di gruppo non valido: i nomi di gruppo devono iniziare con un carattere alfanumerico</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Rendi la classe 'abstract'</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Imposta come statici</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Inverti espressione condizionale</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">non valido</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Sequenza di caratteri di escape \\p{X} non valida</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Backreference denominato \k&lt;...&gt; in formato non corretto</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Unisci con istruzione '{0}' nidificata</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Unisci con istruzione '{0}' successiva</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Unisci con istruzione '{0}' esterna</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Unisci con istruzione '{0}' precedente</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} deve restituire un flusso che supporta operazioni di lettura e ricerca.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Carattere di controllo mancante</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Sposta contenuto nello spazio dei nomi...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Sposta il file in '{0}'</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Sposta il file nella cartella radice del progetto</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Sposta nello spazio dei nomi...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Quantificatore nidificato {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Non ci sono posizioni valide per inserire la chiamata a un metodo.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Parentesi chiuse insufficienti</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operatori</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">Non è possibile aggiornare il riferimento alla proprietà</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Esegui pull '{0}' al livello superiore</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Esegui pull di '{0}' fino a '{1}'</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Esegui pull dei membri fino al tipo di base...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Esegui pull dei membri fino alla nuova classe di base...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Il quantificatore {x,y} non segue alcun elemento</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">riferimento a gruppo indefinito</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Riferimento a nome di gruppo indefinito: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Riferimento a numero di gruppo indefinito: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Tutti i caratteri di controllo. Sono incluse le categorie Cc, Cf, Cs, Co e Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">tutti i caratteri di controllo</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Tutti i contrassegni diacritici. Sono incluse le categorie Mn, Mc e Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">tutti i contrassegni diacritici</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Tutti i caratteri alfanumerici. Sono incluse le categorie Lu, Ll, Lt, Lm e Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">tutti i caratteri alfanumerici</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Tutti i numeri. Sono incluse le categorie Nd, Nl e No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">tutti i numeri</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Tutti i caratteri di punteggiatura. Sono incluse le categorie Pc, Pd, Ps, Pe, Pi, Pf e Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">tutti i caratteri di punteggiatura</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Tutti i caratteri separatori. Sono incluse le categorie Zs, Zl e Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">tutti i caratteri separatori</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Tutti i simboli. Sono incluse le categorie Sm, Sc, Sk e So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">tutti i simboli</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">È possibile usare la barra verticale (|) per trovare la corrispondenza con uno qualsiasi di una serie di criteri, dove i singoli criteri sono separati dal carattere |.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">alternanza</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Il carattere punto (.) corrisponde a qualsiasi carattere tranne \n (carattere di nuova riga \u000A). Se un criterio di ricerca di espressioni regolari viene modificato dall'opzione RegexOptions.Singleline o se la parte del criterio contenente la classe di caratteri . viene modificata dall'opzione 's', . corrisponde a qualsiasi carattere.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">qualsiasi carattere</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">I gruppi atomici (noti in alcuni motori delle espressioni regolari come sottoespressione di non backtracking, sottoespressione atomica o sottoespressione once-only) disabilitano il backtracking. Il motore delle espressioni regolari troverà la corrispondenza con il numero massimo possibile di caratteri nella stringa di input. Quando non sarà più possibile trovare altre corrispondenze, non eseguirà il backtracking per trovare corrispondenze alternative con i criteri. Viene quindi trovata la corrispondenza della sottoespressione solo con stringhe corrispondenti esclusivamente alla sottoespressione; non viene effettuato alcun tentativo per trovare la corrispondenza per una stringa in base alla sottoespressione e a qualsiasi sottoespressione successiva. Questa opzione è consigliata solo se si è certi che il backtracking avrà esito negativo. Impedendo al motore delle espressioni regolari di eseguire ricerche non necessarie è possibile notare un miglioramento delle prestazioni.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">gruppo atomico</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Trova la corrispondenza di un carattere backspace \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">carattere backspace</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Una definizione di gruppo di bilanciamento elimina la definizione di un gruppo precedentemente definito e archivia nel gruppo corrente l'intervallo tra il gruppo precedentemente definito e il gruppo corrente. 'name1' è il gruppo corrente (facoltativo), 'name2' è un gruppo precedentemente definito e 'subexpression' è qualsiasi criterio di ricerca di espressioni regolari valido. La definizione di gruppo di bilanciamento elimina la definizione di name2 e archivia l'intervallo tra name2 e name1 in name1. Se non è definito alcun gruppo name2, viene eseguito il backtracking della corrispondenza. Dal momento che l'eliminazione dell'ultima definizione di name2 rivela la definizione precedente di name2, questo costrutto consente di usare lo stack di acquisizioni per il gruppo name2 come contatore per tenere traccia dei costrutti annidati, come ad esempio le parentesi o le parentesi quadre di apertura e chiusura. La definizione del gruppo di bilanciamento usa 'name2' come uno stack. Il carattere iniziale di ogni costrutto annidato viene posizionato nel gruppo e nella relativa raccolta Group.Captures. Quando viene trovata la corrispondenza con il carattere di chiusura, il carattere di apertura associato viene rimosso dal gruppo e la raccolta Captures viene ridotta di uno. Dopo che la corrispondenza dei caratteri di apertura e chiusura di tutti i costrutti annidati è stata trovata, 'name1' è vuoto.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">gruppo di bilanciamento</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">gruppo di base</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Trova la corrispondenza di un carattere di controllo del segnale acustico di avviso \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">carattere di controllo del segnale acustico di avviso</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Trova la corrispondenza di un carattere di ritorno a capo \u000D. Si noti che \r non equivale al carattere di nuova riga \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">carattere di ritorno a capo</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">La sottrazione di classi di caratteri produce un set di caratteri che è il risultato dell'esclusione dei caratteri di una classe di caratteri da un'altra classe di caratteri. 'base_group' è un gruppo o un intervallo di caratteri positivi o negativi. Il componente 'excluded_group' è un altro gruppo di caratteri positivi o negativi o un'altra espressione di sottrazione di classi di caratteri, ovvero è possibile annidare espressioni di sottrazione di classi di caratteri.</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">sottrazione di classi di caratteri</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">gruppo di caratteri</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">commento</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Questo elemento del linguaggio effettua un tentativo per trovare una corrispondenza con uno di due criteri, a seconda della possibilità di trovare una corrispondenza con un criterio iniziale. dove 'expression' è il criterio iniziale per la corrispondenza, 'yes' è il criterio di corrispondenza se viene trovata una corrispondenza per l'espressione e 'no' è il criterio facoltativo di corrispondenza se non viene trovata una corrispondenza per l'espressione.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">corrispondenza di espressione condizionale</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Questo elemento del linguaggio effettua un tentativo per trovare una corrispondenza con uno di due criteri, a seconda dell'effettiva corrispondenza con un gruppo di acquisizione specificato. 'name' è il nome (o il numero) di un gruppo di acquisizione, 'yes' è l'espressione di cui trovare la corrispondenza se per 'name' (o 'number') è disponibile una corrispondenza e 'no' è l'espressione facoltativa di cui trovare la corrispondenza in caso contrario.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">corrispondenza di gruppo condizionale</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">L'ancoraggio \G specifica che la corrispondenza deve verificarsi nel punto in cui è terminata la corrispondenza precedente. Se usato con il metodo Regex.Matches o Match.NextMatch, questo ancoraggio garantisce che tutte le corrispondenze siano contigue.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">corrispondenze contigue</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Trova la corrispondenza di un carattere di controllo ASCII, dove X è la lettera del carattere di controllo. Ad esempio, \cC corrisponde a CTRL+C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">carattere di controllo</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d trova la corrispondenza di qualsiasi cifra decimale. Equivale al criterio di ricerca di espressioni regolari \p{Nd}, che include le cifre decimali standard da 0 a 9 e le cifre decimali di altri set di caratteri. Se viene specificato il comportamento conforme a ECMAScript, \d equivale a [0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">carattere di cifra decimale</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Un cancelletto (#) contrassegna un commento in modalità x, che inizia in corrispondenza del carattere senza escape # alla fine del criterio di ricerca di espressioni regolari e continua fino alla fine della riga. Per usare questo costrutto, è necessario abilitare l'opzione x (con opzioni inline) o specificare il valore RegexOptions.IgnorePatternWhitespace per il parametro option quando si crea l'istanza dell'oggetto Regex o si chiama un metodo statico Regex.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">commento di fine riga</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">L'ancoraggio \z specifica che la corrispondenza deve verificarsi alla fine della stringa di input. Come per l'elemento del linguaggio $, \z ignora l'opzione RegexOptions.Multiline. Diversamente dall'elemento del linguaggio \Z, \z non trova un carattere \n alla fine di una stringa. Di conseguenza, può trovare solo l'ultima riga della stringa di input.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">solo fine di stringa</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">L'ancoraggio \Z specifica che la corrispondenza deve verificarsi alla fine della stringa di input oppure prima di \n alla fine della stringa di input. L'ancoraggio è identico a $, ad eccezione del fatto che \Z ignora l'opzione RegexOptions.Multiline. Di conseguenza, in una stringa con più righe può trovare solo la fine dell'ultima riga oppure l'ultima riga prima di \n. L'ancoraggio \Z corrisponde a \n, ma non a \r\n (combinazione di caratteri CR/LF). Per trovare la combinazione di caratteri CR/LF, includere \r?\Z nel criterio di ricerca di espressioni regolari.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">fine di stringa o prima di terminare una nuova riga</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">L'ancoraggio $ specifica che il criterio precedente deve verificarsi alla fine della stringa di input oppure prima di \n alla fine della stringa di input. Se si usa $ con l'opzione RegexOptions.Multiline, la corrispondenza può verificarsi anche alla fine di una riga. L'ancoraggio $ corrisponde a \n, ma non a \r\n (combinazione di ritorno a capo e caratteri di nuova riga o CR/LF). Per trovare la combinazione di caratteri CR/LF, includere \r?$ nel criterio di ricerca di espressioni regolari.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">fine di stringa o riga</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Trova la corrispondenza di un carattere di escape \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">carattere di escape</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">gruppo escluso</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">espressione</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Trova la corrispondenza di un carattere di avanzamento carta \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">carattere di avanzamento carta</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Questo costrutto di raggruppamento applica o disabilita le opzioni specificate all'interno di una sottoespressione. Le opzioni da abilitare vengono specificate dopo il punto interrogativo, mentre quelle da disabilitare vengono specificate dopo il segno meno. Le opzioni consentite sono: i Usa la corrispondenza che non fa distinzione tra maiuscole e minuscole. m Usa la modalità multiriga, in cui ^ e $ corrispondono all'inizio e alla fine di ogni riga anziché all'inizio e alla fine della stringa di input. s Usa la modalità a riga singola, in cui il punto (.) corrisponde a qualsiasi carattere anziché a ogni carattere eccetto \n. n Non acquisisce gruppi senza nome. Le uniche acquisizioni valide sono i gruppi denominati o numerati in modo esplicito in formato (?&lt;nome&gt; sottoespressione). x Esclude gli spazi vuoti senza caratteri di escape nel criterio e abilita i commenti dopo un simbolo di cancelletto (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">opzioni di raggruppamento</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Trova la corrispondenza di un carattere ASCII dove nn è un codice carattere esadecimale a due cifre.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">carattere di escape esadecimale</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">Il costrutto (?# comment) consente di includere un commento inline in un'espressione regolare. Il motore delle espressioni regolari non usa una parte del commento nei criteri di ricerca, anche se il commento è incluso nella stringa restituita dal metodo Regex.ToString. Il commento termina in corrispondenza della prima parentesi chiusa.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">commento inline</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Abilita o disabilita opzioni specifiche dei criteri di ricerca per il resto di un'espressione regolare. Le opzioni da abilitare vengono specificate dopo il punto interrogativo, mentre quelle da disabilitare vengono specificate dopo il segno meno. Le opzioni consentite sono: i Usa la corrispondenza che non fa distinzione tra maiuscole e minuscole. m Usa la modalità multiriga, in cui ^ e $ corrispondono all'inizio e alla fine di ogni riga anziché all'inizio e alla fine della stringa di input. s Usa la modalità a riga singola, in cui il punto (.) corrisponde a qualsiasi carattere anziché a ogni carattere eccetto \n. n Non acquisisce gruppi senza nome. Le uniche acquisizioni valide sono gruppi denominati o numerati in modo esplicito nel formato (?&lt;nome&gt; sottoespressione). x Esclude gli spazi vuoti senza caratteri di escape nel criterio e abilita i commenti dopo un simbolo di cancelletto (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">opzioni inline</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Problema di regex: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">alfanumerico, minuscolo</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">alfanumerico, modificatore</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">alfanumerico, altro</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">alfanumerico, titolo</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">alfanumerico, maiuscolo</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">contrassegno, chiusura</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">contrassegno, non spaziatura</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">contrassegno, spaziatura combinata</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">Il quantificatore {n,}? trova la corrispondenza con l'elemento precedente almeno n volte, dove n è qualsiasi numero intero, ma il minor numero di volte possibile. Si tratta della controparte lazy del quantificatore greedy {n,}</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">trova la corrispondenza almeno 'n' volte (corrispondenza lazy)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">Il quantificatore {n,} trova la corrispondenza con l'elemento precedente almeno n volte, dove n è qualsiasi numero intero. {n,} è un quantificatore greedy il cui equivalente lazy è {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">trova la corrispondenza almeno 'n' volte</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">Il quantificatore {n,m}? trova la corrispondenza con l'elemento precedente tra n e m volte, dove n e m sono numeri interi, ma il minor numero di volte possibile. Si tratta della controparte lazy del quantificatore greedy {n,m}</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">trova la corrispondenza almeno 'n' volte (corrispondenza lazy)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">Il quantificatore {n,m} trova la corrispondenza con l'elemento precedente almeno n volte, ma non più di m volte, dove n e m sono numeri interi. {n,m} è un quantificatore greedy il cui equivalente lazy è {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">trova la corrispondenza tra 'n' e 'm' volte</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">Il quantificatore {n}? trova la corrispondenza con l'elemento precedente esattamente n volte, dove n è qualsiasi numero intero. Si tratta della controparte lazy del quantificatore greedy {n}+</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">trova la corrispondenza esatta 'n' volte (corrispondenza lazy)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">Il quantificatore {n} trova la corrispondenza con l'elemento precedente esattamente n volte, dove n è qualsiasi numero intero. {n} è un quantificatore greedy il cui equivalente lazy è {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">trova la corrispondenza esatta 'n' volte</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">Il quantificatore +? trova la corrispondenza con l'elemento precedente una o più volte, ma il minor numero di volte possibile. Si tratta della controparte lazy del quantificatore greedy +</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">trova la corrispondenza una o più volte (corrispondenza lazy)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">Il quantificatore + trova la corrispondenza con l'elemento precedente una o più volte. Equivale al quantificatore {1,}. + è un quantificatore greedy il cui equivalente lazy è +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">trova la corrispondenza una o più volte</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">Il quantificatore *? trova la corrispondenza con l'elemento precedente zero o più volte, ma il minor numero di volte possibile. Si tratta della controparte lazy del quantificatore greedy *</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">trova la corrispondenza zero o più volte (corrispondenza lazy)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">Il quantificatore * trova la corrispondenza con l'elemento precedente zero o più volte. Equivale al quantificatore {0,}. * è un quantificatore greedy il cui equivalente lazy è *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">trova la corrispondenza zero o più volte</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">Il quantificatore ?? trova la corrispondenza con l'elemento precedente zero o una volta, ma il minor numero di volte possibile. Si tratta della controparte lazy del quantificatore greedy ?</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">trova la corrispondenza zero o una volta (corrispondenza lazy)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">Il quantificatore ? trova la corrispondenza con l'elemento precedente zero o una volta. Equivale al quantificatore {0,1}. ? è un quantificatore greedy il cui equivalente lazy è ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">trova la corrispondenza zero o una volta</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Questo costrutto di raggruppamento acquisisce una 'subexpression' corrispondente, in cui 'subexpression' è qualsiasi criterio di ricerca di espressioni regolari valido. Le acquisizioni che usano parentesi sono numerate automaticamente da sinistra verso destra in base all'ordine delle parentesi di apertura nell'espressione regolare, a partire da uno. L'acquisizione che viene numerata zero è il testo corrispondente all'intero criterio di ricerca di espressioni regolari.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">sottoespressione corrispondente</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">nome</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">nome o numero</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Backreference denominato o numerato. 'name' è il nome di un gruppo di acquisizione definito nel criterio di ricerca di espressioni regolari.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">backreference denominato</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Acquisisce una sottoespressione corrispondente e consente di accedervi tramite nome o numero. 'name' è un nome di gruppo valido e 'subexpression' è un qualsiasi criterio di ricerca di espressioni regolari valido. 'name' non deve contenere alcun simbolo di punteggiatura e non può iniziare con un numero. Se il parametro RegexOptions di un criterio di ricerca di espressioni regolari include il flag RegexOptions.ExplicitCapture o se l'opzione n viene applicata a questa sottoespressione, l'unico modo per acquisire una sottoespressione consiste nell'assegnare esplicitamente un nome ai gruppi di acquisizione.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">sottoespressione corrispondente denominate</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Un gruppo di caratteri negativi specifica un elenco di caratteri che non devono essere presenti in una stringa di input per trovare una corrispondenza. L'elenco di caratteri viene specificato singolarmente. Due o più intervalli di caratteri possono essere concatenati. Ad esempio, per specificare l'intervallo di cifre decimali comprese tra "0" e "9", l'intervallo di lettere minuscole comprese tra "a" e "f" e l'intervallo di lettere maiuscole comprese tra "A" e "F", usare [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">gruppo di caratteri negativi</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Un intervallo di caratteri negativi specifica un elenco di caratteri che non devono essere presenti in una stringa di input per trovare una corrispondenza. 'firstCharacter' è il carattere che inizia l'intervallo e 'lastCharacter' è il carattere che lo termina. Due o più intervalli di caratteri possono essere concatenati. Ad esempio, per specificare l'intervallo di cifre decimali comprese tra "0" e "9", l'intervallo di lettere minuscole comprese tra "a" e "f" e l'intervallo di lettere maiuscole comprese tra "A" e "F", usare [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">intervallo di caratteri negativi</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Il costrutto di espressione regolare \P{ name } corrisponde a qualsiasi carattere non appartenente a una categoria generale Unicode o a un blocco denominato, dove name è l'abbreviazione della categoria o il nome del blocco denominato.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">categoria Unicode negativa</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Trova la corrispondenza di un carattere di nuova riga \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">carattere di nuova riga</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">no</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D trova la corrispondenza con qualsiasi carattere non numerico. Equivale al criterio di ricerca di espressioni regolari \P{Nd}. Se viene specificato il comportamento conforme a ECMAScript, \D equivale a [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">carattere non numerico</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S trova la corrispondenza di qualsiasi carattere diverso da uno spazio. Equivale al criterio di ricerca di espressioni regolari [^\f\n\r\t\v\x85\p{Z}] o è il contrario del criterio di ricerca di espressioni regolari equivalente a \s, che corrisponde a spazi vuoti. Se viene specificato il comportamento conforme a ECMAScript, \S equivale a [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">carattere diverso da uno spazio vuoto</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">L'ancoraggio \B specifica che la corrispondenza non deve verificarsi in un confine di parola. Si tratta dell'effetto contrario rispetto all'ancoraggio \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">carattere che non costituisce un confine di parola</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W trova la corrispondenza di qualsiasi carattere non alfabetico. Corrisponde a tutti i caratteri, ad eccezione di quelli inclusi nelle categorie Unicode seguenti: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector Se viene specificato il comportamento conforme a ECMAScript, \W equivale a [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">carattere non alfanumerico</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Questo costrutto non acquisisce la sottostringa corrispondente a una sottoespressione: Il costrutto del gruppo non di acquisizione viene generalmente usato quando un quantificatore è applicato a un gruppo, ma le sottostringhe acquisite dal gruppo non sono di alcun interesse. Se un'espressione regolare include costrutti di raggruppamento annidati, un costrutto del gruppo di non acquisizione esterno non si applica ai costrutti del gruppo annidati interni.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">gruppo di non acquisizione</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">numerico, cifra decimale</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">numerico, alfanumerico</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">numerico, altro</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Backreference numerato, in cui 'number' è la posizione ordinale del gruppo di acquisizione nell'espressione regolare. Ad esempio, \4 corrisponde al contenuto del quarto gruppo di acquisizione. È presente un'ambiguità tra i codici di escape ottale, ad esempio \16, e i backreference \number che usano la stessa notazione. Se il problema è dovuto all'ambiguità, è possibile usare la notazione \k&lt;name&gt; che, non essendo ambigua, non può essere confusa con codici di caratteri ottali. Analogamente, i codici esadecimale come \xdd non sono ambigui e non possono essere confusi con backreference.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">backreference numerato</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">altro, controllo</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">altro, formato</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">altro, non assegnato</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">altro, uso privato</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">altro, surrogato</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Un gruppo di caratteri positivi specifica un elenco di caratteri che possono essere presenti in una stringa di input per trovare una corrispondenza.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">gruppo di caratteri positivi</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Un intervallo di caratteri positivi specifica un intervallo di caratteri che possono essere presenti in una stringa di input per trovare una corrispondenza. 'firstCharacter' è il carattere che inizia l'intervallo e 'lastCharacter' è il carattere che lo termina. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">intervallo di caratteri positivi</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">punteggiatura, chiusura</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">punteggiatura, connettore</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">punteggiatura, trattino</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">punteggiatura, virgoletta finale</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">punteggiatura, virgoletta iniziale</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">punteggiatura, apertura</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">punteggiatura, altro</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">separatore, riga</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">separatore, paragrafo</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">separatore, spazio</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">L'ancoraggio \A specifica che la corrispondenza deve verificarsi all'inizio della stringa di input. L'ancoraggio è identico a ^, ad eccezione del fatto che \A ignora l'opzione RegexOptions.Multiline. Di conseguenza, può trovare solo l'inizio della prima riga in una stringa di input con più righe.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">solo inizio di stringa</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">L'ancoraggio ^ specifica che il criterio seguente deve iniziare in corrispondenza della posizione del primo carattere della stringa. Se si usa ^ con l'opzione RegexOptions.Multiline, la corrispondenza deve verificarsi all'inizio di ogni riga.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">inizio di stringa o riga</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">sottoespressione</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">simbolo, valuta</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">simbolo, matematica</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">simbolo, modificatore</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">simbolo, altro</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Trova la corrispondenza di un carattere di tabulazione \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">carattere di tabulazione</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Il costrutto di espressione regolare \p{ name } corrisponde a qualsiasi carattere appartenente a una categoria generale Unicode o a un blocco denominato, dove name è l'abbreviazione della categoria o il nome del blocco denominato.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">categoria Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Trova la corrispondenza di un'unità di codice UTF-16 il cui valore è l'esadecimale ####.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">carattere di escape Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Categoria generale Unicode: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Trova la corrispondenza di un carattere di tabulazione verticale \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">carattere di tabulazione verticale</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s trova la corrispondenza di qualsiasi carattere di spazio. Equivale alle sequenze di escape e alle categorie Unicode seguenti: \f Carattere di avanzamento modulo \u000C \n Carattere di nuova riga \u000A \r Carattere di ritorno a capo \u000D \t Carattere di tabulazione \u0009 \v Carattere di tabulazione verticale \u000B \x85 Puntini di sospensione o carattere NEXT LINE (NEL) (…) \u0085 \p{Z} Trova la corrispondenza di un qualsiasi carattere separatore Se viene specificato il comportamento conforme a ECMAScript, \s equivale a [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">spazio vuoto</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">L'ancoraggio \b specifica che la corrispondenza deve verificarsi in un confine tra un carattere alfanumerico (elemento del linguaggio \w) e uno non alfanumerico (elemento del linguaggio \W). I caratteri alfanumerici sono costituiti da lettere, cifre e caratteri di sottolineatura. Un carattere non alfanumerico è qualsiasi carattere diverso da lettere, cifre e carattere di sottolineatura. La corrispondenza può verificarsi anche in un confine di parola all'inizio o alla fine della stringa. L'ancoraggio \b viene usato di frequente per garantire che una sottoespressione corrisponda a un'intera parola anziché solo all'inizio o alla fine di una parola.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">confine di parola</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w trova la corrispondenza di qualsiasi carattere alfanumerico. Un carattere alfanumerico è un membro di una delle categorie Unicode seguenti: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector Se viene specificato il comportamento conforme a ECMAScript, \w equivale a [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">carattere alfanumerico</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">sì</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Asserzione lookahead negativa di larghezza zero, in cui per trovare una corrispondenza, la stringa di input non deve corrispondere al criterio di ricerca di espressioni regolari in subexpression. La stringa corrispondente non è inclusa nei risultati della corrispondenza. Un'asserzione lookahead negativa di larghezza zero viene usata in genere all'inizio o alla fine di un'espressione regolare. All'inizio di un'espressione regolare, può definire un criterio specifico per il quale non deve essere trovata una corrispondenza quando l'inizio dell'espressione regolare definisce un criterio simile, ma più generale, per cui stabilire la corrispondenza. In questo caso, viene spesso usata per limitare il backtracking. Alla fine di un'espressione regolare, può definire una sottoespressione che non può verificarsi alla fine di una corrispondenza.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">asserzione lookahead negativa di larghezza zero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Asserzione lookbehind negativa di larghezza zero, in cui per trovare una corrispondenza, 'subexpression' non deve trovarsi nella stringa di input a sinistra della posizione corrente. Qualsiasi sottostringa che non corrisponde a 'subexpression' non viene inclusa nel risultato della corrispondenza. Le asserzioni lookbehind negative di larghezza zero vengono usate in genere all'inizio delle espressioni regolari. Il criterio definito preclude una corrispondenza nella stringa che segue. Queste asserzioni vengono usate anche per limitare il backtracking quando l'ultimo carattere o gli ultimi caratteri in un gruppo acquisito non devono essere costituiti da uno o più caratteri corrispondenti al criterio di ricerca di espressioni regolari di tale gruppo.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">asserzione lookbehind negativa di larghezza zero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Asserzione lookahead positiva di larghezza zero, in cui per trovare una corrispondenza, la stringa di input deve corrispondere al criterio di ricerca di espressioni regolari in 'subexpression'. La sottostringa corrispondente non è inclusa nei risultati della corrispondenza. Un'asserzione lookahead positiva di larghezza zero non esegue il backtracking. In genere, un'asserzione lookahead positiva di larghezza zero viene trovata alla fine di un criterio di ricerca di espressioni regolari. Definisce una sottostringa che deve trovarsi alla fine di una stringa per stabilire una corrispondenza, ma che non deve essere inclusa nella corrispondenza. È anche utile per impedire un backtracking eccessivo. È possibile usare un'asserzione lookahead positiva di larghezza zero per assicurarsi che un particolare gruppo acquisito inizi con il testo che corrisponde a un subset del criterio definito per tale gruppo acquisito.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">asserzione lookahead positiva di larghezza zero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Asserzione lookbehind positiva di larghezza zero, in cui per trovare una corrispondenza, 'subexpression' deve trovarsi nella stringa di input a sinistra della posizione corrente. 'subexpression' non è incluso nei risultati della corrispondenza. Un'asserzione lookbehind positiva di larghezza zero non esegue il backtracking. Le asserzioni lookbehind positive di larghezza zero vengono usate in genere all'inizio delle espressioni regolari. Il criterio definito è una precondizione per una corrispondenza, anche se non fa parte del risultato della corrispondenza.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">asserzione lookbehind positiva di larghezza zero</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Le firme del metodo correlate trovate nei metadati non verranno aggiornate.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">La rimozione del documento non è supportata</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Rimuovi il modificatore 'async'</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Rimuovi i cast non necessari</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Rimuovi le variabili non usate</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Sostituisci '{0}' con '{1}'</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Risolvi gli indicatori di conflitto</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Modifica non applicabile</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Ordina i modificatori di accessibilità</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Dividi in istruzioni '{0}' consecutive</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Dividi in istruzioni '{0}' nidificate</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Il flusso deve supportare operazioni di lettura e ricerca.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Elimina {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: liberare risorse non gestite (oggetti non gestiti) ed eseguire l'override del finalizzatore</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: eseguire l'override del finalizzatore solo se '{0}' contiene codice per liberare risorse non gestite</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Imposta destinazione per corrispondenze di tipo</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">L'assembly '{0}' che contiene il tipo '{1}' fa riferimento a .NET Framework, che non è supportato.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">La selezione contiene una chiamata di funzione locale senza la relativa dichiarazione.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Troppi | in (?()|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Troppe parentesi di chiusura</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Non è possibile leggere il file di origine '{0}' o il file PDB compilato per il progetto contenitore. Tutte le modifiche apportate a questo file durante il debug non verranno applicate finché il relativo contenuto non corrisponde al codice sorgente compilato.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Proprietà sconosciuta</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Proprietà sconosciuta '{0}'</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Carattere di controllo non riconosciuto</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Sequenza di escape non riconosciuta: \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Costrutto di raggruppamento non riconosciuto</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Set di [] senza terminazione</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Commento (?#...) senza terminazione</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Annulla il ritorno a capo per tutti gli argomenti</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Annulla il ritorno a capo per tutti i parametri</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Annulla il ritorno a capo e imposta il rientro per tutti gli argomenti</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Annulla il ritorno a capo e imposta rientro per tutti i parametri</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Annulla il ritorno a capo per l'elenco di argomenti</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Annulla il ritorno a capo per la catena di chiamate</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Annulla il ritorno a capo per l'espressione</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Annulla il ritorno a capo per l'elenco di parametri</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Usa il corpo del blocco per le espressioni lambda</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Usa il corpo dell'espressione per le espressioni lambda</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Usa stringa verbatim interpolata</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Valore:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Avviso: durante la conversione dell'istruzione la semantica può cambiare.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Imposta il ritorno a capo e allinea la catena di chiamate</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Imposta il ritorno a capo e allinea l'espressione</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Imposta il ritorno a capo e allinea la catena di chiamate lunga</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Imposta il ritorno a capo alla catena di chiamate</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Imposta il ritorno a capo a ogni argomento</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Imposta il ritorno a capo a ogni parametro</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Imposta il ritorno a capo all'espressione</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Imposta il ritorno a capo all'elenco di argomenti lungo</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Imposta il ritorno a capo alla catena di chiamate lunga</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Imposta il ritorno a capo all'elenco di parametri lungo</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Ritorno a capo</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Per cambiare contesto, si può usare la barra di spostamento.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}' non può essere null o vuoto.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}' non può essere Null o uno spazio vuoto.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">'{0}' non è Null in questo punto.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">'{0}' può essere Null in questo punto.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">Decimilionesimi di secondo</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "fffffff" rappresenta le sette cifre più significative della frazione di secondi, ovvero i decimilionesimi di secondo in un valore di data e ora. Anche se è possibile visualizzare i decimilionesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">Decimilionesimi di secondo (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "FFFFFFF" rappresenta le sette cifre più significative della frazione di secondi, ovvero i decimilionesimi di secondo in un valore di data e ora. Gli zeri finali o le cifre con sette zeri non vengono tuttavia visualizzati. Anche se è possibile visualizzare i decimilionesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">Milionesimi di secondo</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "ffffff" rappresenta le sei cifre più significative della frazione di secondi, ovvero i milionesimi di secondo in un valore di data e ora. Anche se è possibile visualizzare i milionesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">Milionesimi di secondo (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "FFFFFF" rappresenta le sei cifre più significative della frazione di secondi, ovvero i milionesimi di secondo in un valore di data e ora. Gli zeri finali o le cifre con sei zeri non vengono tuttavia visualizzati. Anche se è possibile visualizzare i milionesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">Centomillesimi di secondo</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "fffff" rappresenta le cinque cifre più significative della frazione di secondi, ovvero i centomillesimi di secondo in un valore di data e ora. Anche se è possibile visualizzare i centomillesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">Centomillesimi di secondo (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "FFFFF" rappresenta le cinque cifre più significative della frazione di secondi, ovvero i centomillesimi di secondo in un valore di data e ora. Gli zeri finali o le cifre con cinque zeri non vengono tuttavia visualizzati. Anche se è possibile visualizzare i centomillesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">Decimillesimi di secondo</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "ffff" rappresenta le quattro cifre più significative della frazione di secondi, ovvero i decimillesimi di secondo in un valore di data e ora. Anche se è possibile visualizzare i decimillesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">Decimillesimi di secondo (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "FFFF" rappresenta le quattro cifre più significative della frazione di secondi, ovvero i decimillesimi di secondo in un valore di data e ora. Gli zeri finali o le cifre con quattro zeri non vengono tuttavia visualizzati. Anche se è possibile visualizzare i decimillesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">Millisecondi</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">L'identificatore di formato personalizzato "fff" rappresenta le tre cifre più significative della frazione di secondi, ovvero i millisecondi in un valore di data e ora.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">Millisecondi (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">L'identificatore di formato personalizzato "FFF" rappresenta le tre cifre più significative della frazione di secondi, ovvero i millisecondi in un valore di data e ora. Gli zeri finali o le cifre con tre zeri non vengono tuttavia visualizzati.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">Centesimi di secondo</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">L'identificatore di formato personalizzato "ff" rappresenta le due cifre più significative della frazione di secondi, ovvero i centesimi di secondo in un valore di data e ora.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">Centesimi di secondo (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">L'identificatore di formato personalizzato "FF" rappresenta le due cifre più significative della frazione di secondi, ovvero i centesimi di secondo in un valore di data e ora. Gli zeri finali o le cifre con due zeri non vengono tuttavia visualizzati.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">Decimi di secondo</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">Decimi di secondo (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">L'identificatore di formato personalizzato "F" rappresenta la cifra più significativa della frazione di secondi, ovvero i decimi di secondo in un valore di data e ora. Se la cifra è zero, non viene visualizzato nulla. Se l'identificatore di formato "F" viene usato senza altri identificatori di formato, viene interpretato come l'identificatore di formato di data e ora standard "F". Il numero di identificatoti di formato "F" usati con il metodo ParseExact, TryParseExact, ParseExact o TryParseExact indica il numero massimo di cifre più significative della frazione di secondi che possono essere presenti per analizzare correttamente la stringa.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">Orario in formato 12 ore (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">L'identificatore di formato personalizzato "h" rappresenta l'ora come numero compreso tra 1 e 12, ovvero l'ora rappresentata nell'orario in formato 12 ore in base al quale il conteggio riparte da mezzanotte o da mezzogiorno. Una particolare ora dopo mezzanotte non è distinguibile dalla stessa ora dopo mezzogiorno. L'ora non viene arrotondata e se è costituita da una singola cifra viene formattata senza zero iniziale. Se viene, ad esempio, specificata un'ora equivalente alle 5:43 della mattina o del pomeriggio, tramite questo identificatore di formato personalizzato viene visualizzato "5". Se l'identificatore di formato "h" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard e viene generato un evento FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">Orario in formato 12 ore (2 cifre)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">L'identificatore di formato personalizzato "hh" (più qualsiasi numero di identificatori "h" aggiuntivi) rappresenta l'ora come numero compreso tra 01 e 12, ovvero l'ora rappresentata nell'orario in formato 12 ore in base al quale il conteggio riparte da mezzanotte o da mezzogiorno. Una particolare ora dopo mezzanotte non è distinguibile dalla stessa ora dopo mezzogiorno. L'ora non viene arrotondata e se è costituita da una singola cifra viene formattata con uno zero iniziale. Se viene, ad esempio, specificata un'ora equivalente alle 5:43 della mattina o del pomeriggio, tramite questo identificatore di formato viene visualizzato "05".</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">Orario in formato 24 ore (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">L'identificatore di formato personalizzato "H" rappresenta l'ora come numero compreso tra 0 e 23, ovvero l'ora rappresentata nell'orario in formato 24 ore a base zero in base al quale il conteggio riparte da mezzanotte. Un'ora costituita da una singola cifra viene formattata senza zero iniziale. Se l'identificatore di formato "H" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard e viene generato un evento FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">Orario in formato 24 ore (2 cifre)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">L'identificatore di formato personalizzato "HH" (più qualsiasi numero di identificatori "H" aggiuntivi) rappresenta l'ora come numero compreso tra 00 e 23, ovvero l'ora rappresentata nell'orario in formato 24 ore a base zero in base al quale il conteggio riparte da mezzanotte. Un'ora costituita da una singola cifra viene formattata con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">codice</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">Separatore di data</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">L'identificatore di formato personalizzato "/" rappresenta il separatore di data usato per distinguere anni, mesi e giorni. Il separatore di data localizzato appropriato viene recuperato dalla proprietà DateTimeFormatInfo.DateSeparator delle impostazioni cultura correnti o specificate. Nota: per modificare il separatore di data per una particolare stringa di data e ora, specificare il carattere separatore all'interno di un delimitatore di stringa letterale. La stringa con formato personalizzato mm'/'dd'/'yyyy, ad esempio, produce una stringa in cui come separatore di data viene sempre usato "/". Per cambiare il separatore di data per tutte le date per le impostazioni cultura, modificare il valore della proprietà DateTimeFormatInfo.DateSeparator per le impostazioni cultura correnti oppure creare un'istanza di un oggetto DateTimeFormatInfo, assegnare il carattere alla relativa proprietà DateSeparator e chiamare un overload del metodo di formattazione che include un parametro IFormatProvider. Se l'identificatore di formato "/" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard e viene generato un evento FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">Giorno del mese (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">L'identificatore di formato personalizzato "d" rappresenta il giorno del mese come numero compreso tra 1 e 31. Un giorno a una sola cifra viene formattato senza uno zero iniziale. Se l'identificatore di formato "d" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard "d".</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">Giorno del mese (2 cifre)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">La stringa di formato personalizzata "dd" rappresenta il giorno del mese come numero compreso tra 01 e 31. Un giorno a una sola cifra viene formattato con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">Giorno della settimana (abbreviato)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">L'identificatore di formato personalizzato "ddd" rappresenta il nome abbreviato del giorno della settimana. Il nome abbreviato localizzato del giorno della settimana viene recuperato dalla proprietà DateTimeFormatInfo.AbbreviatedDayNames delle impostazioni cultura correnti o specificate.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">Giorno della settimana (esteso)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">L'identificatore di formato personalizzato "dddd" (più qualsiasi numero di identificatori "d" aggiuntivi) rappresenta il nome esteso del giorno della settimana. Il nome localizzato del giorno della settimana viene recuperato dalla proprietà DateTimeFormatInfo.DayNames delle impostazioni cultura correnti o specificate.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">variabile discard</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">da metadati</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">Ora estesa e data completa</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">L'identificatore di formato standard "F" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.FullDateTimePattern corrente. Ad esempio, la stringa di formato personalizzata per le impostazioni cultura inglese non dipendenti da paese/area geografica è "dddd, dd MMMM yyyy HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">Ora breve e data estesa</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Identificatore di formato di ora breve e data estesa ("f") L'identificatore di formato standard "f" rappresenta una combinazione degli schemi di data estesa ("D") e ora breve ("t"), separati da uno spazio.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">Ora estesa e data generale</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">L'identificatore di formato standard "G" rappresenta una combinazione degli schemi di data breve ("d") e ora estesa ("T"), separati da uno spazio.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">Ora breve e data generale</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">L'identificatore di formato standard "g" rappresenta una combinazione degli schemi di data breve ("d") e ora breve ("t"), separati da uno spazio.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">overload generico</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">overload generici</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">in {0} ({1} - {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">nell'origine (attributo)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">Data estesa</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">L'identificatore di formato standard "D" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.LongDatePattern corrente. Ad esempio, la stringa di formato personalizzata per le impostazioni cultura inglese non dipendenti da paese/area geografica è "dddd, dd MMMM yyyy".</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">Ora estesa</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">L'identificatore di formato standard "T" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.LongTimePattern di impostazioni cultura specifiche. Ad esempio, la stringa di formato personalizzata per le impostazioni cultura inglese non dipendenti da paese/area geografica è "HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">Minuto (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">L'identificatore di formato personalizzato "m" rappresenta i minuti come numero compreso tra 0 e 59. Tali minuti rappresentano il numero intero di minuti passati dall'ultima ora. Un minuto costituito da una singola cifra viene formattato senza zero iniziale. Se l'identificatore di formato "m" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard "m".</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">Minuto (2 cifre)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">L'identificatore di formato personalizzato "mm" (più qualsiasi numero di identificatori "m" aggiuntivi) rappresenta i minuti come numero compreso tra 00 e 59. Tali minuti rappresentano il numero intero di minuti passati dall'ultima ora. Un minuto costituito da una singola cifra viene formattato con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">Mese (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">L'identificatore di formato personalizzato "M" rappresenta il mese come numero compreso tra 1 e 12 (o tra 1 e 13 per i calendari con 13 mesi). Un mese a una sola cifra viene formattato senza zero iniziale. Se l'identificatore di formato "M" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard "M".</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">Mese (2 cifre)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">L'identificatore di formato personalizzato "MM" rappresenta il mese come numero compreso tra 01 e 12 (o tra 1 e 13 per i calendari con 13 mesi). Un mese a una sola cifra viene formattato con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">Mese (abbreviato)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">L'identificatore di formato personalizzato "MMM" rappresenta il nome abbreviato del mese. Il nome abbreviato localizzato del mese viene recuperato dalla proprietà DateTimeFormatInfo.AbbreviatedMonthNames delle impostazioni cultura correnti o specificate.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">Giorno del mese</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">L'identificatore di formato standard "M" o "m" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.MonthDayPattern corrente. Ad esempio, la stringa di formato personalizzata per le impostazioni cultura inglese non dipendenti da paese/area geografica è "MMMM dd".</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">Mese (esteso)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">L'identificatore di formato personalizzato "MMMM" rappresenta il nome esteso del mese. Il nome localizzato del mese viene recuperato dalla proprietà DateTimeFormatInfo.MonthNames delle impostazioni cultura correnti o specificate.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">overload</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">overload</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">Parola chiave di {0}</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Incapsula il campo '{0}' (e usa la proprietà)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Incapsula il campo '{0}' (ma continua a usarlo)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Incapsula i campi (e usa la proprietà)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Incapsula i campi (ma continua a usarli)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Non è possibile estrarre l'interfaccia: la selezione non si trova all'interno di una classe/interfaccia/struct.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Non è possibile estrarre l'interfaccia: il tipo non contiene membri che possono essere estratti in un'interfaccia.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">non è possibile costruire l'albero finale</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Il tipo o il tipo restituito dei parametri non può essere un tipo anonimo: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">La selezione non contiene istruzioni attive.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">La selezione contiene un errore o un tipo sconosciuto.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Il parametro di tipo '{0}' è nascosto da un altro parametro di tipo '{1}'.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">Nel codice selezionato viene usato l'indirizzo di una variabile.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">L'assegnazione a campi di sola lettura deve essere effettuata in un costruttore: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">il codice generato si sovrappone alla parte nascosta del codice</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Aggiungi i parametri facoltativi a '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Aggiungi i parametri a '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Genera il costruttore delegante '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Genera il costruttore '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Genera il costruttore per l'assegnazione dei campi '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Genera Equals e GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Genera Equals(oggetto)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Genera GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Genera il costruttore in '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Genera tutto</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Genera il membro di enumerazione '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Genera la costante '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Genera la proprietà di sola lettura '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Genera la proprietà '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Genera il campo di sola lettura '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Genera il campo '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Genera l'elemento '{0}' locale</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Genera l'elemento {0} '{1}' nel nuovo file</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Genera l'elemento {0} '{1}' annidato</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Spazio dei nomi globale</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Implementa l'interfaccia in modo astratto</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Implementa l'interfaccia tramite '{0}'</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Implementa l'interfaccia</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Introduce il campo per '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Introduce l'elemento locale per '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Introduce la costante per '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Introduce la costante locale per '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Introduce il campo per tutte le occorrenze di '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Introduce l'elemento locale per tutte le occorrenze di '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Introduce la costante per tutte le occorrenze di '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Introduce la costante locale per tutte le occorrenze di '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Introduce la variabile di query per tutte le occorrenze di '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Introduce la variabile di query per '{0}'</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Tipi anonimi:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">è</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Rappresenta un oggetto le cui operazioni verranno risolte in fase di esecuzione.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">costante</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">campo</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">costante locale</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">variabile locale</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">Etichetta</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">Periodo/era</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Gli identificatori di formato personalizzati "g" o "gg" (più qualsiasi numero di identificatori "g" aggiuntivi) rappresentano il periodo o l'era, ad esempio D.C. Questo identificatore viene ignorato dall'operazione di formattazione se la data da formattare non è associata a una stringa di periodo o di era. Se l'identificatore di formato "g" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard "g".</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">variabile di intervallo</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">parametro</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">in</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Riepilogo:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Variabili locali e parametri</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Parametri di tipo:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Valori restituiti:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Eccezioni:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Commenti:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">la generazione dell'origine per i simboli di questo tipo non è supportata</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">assembly</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">percorso sconosciuto</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Tipo di membro di interfaccia imprevisto: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Tipo di simbolo sconosciuto</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Genera la proprietà astratta '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Genera il metodo astratto '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Genera il metodo '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">L'assembly richiesto è già stato caricato da '{0}'.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Per il simbolo non esiste un'icona.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Il metodo asincrono non può contenere parametri ref/out: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Il membro è definito nei metadati.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">È possibile modificare solo la firma di un costruttore, un indicizzatore, un metodo o un delegato.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Nei metadati di questo simbolo sono presenti definizioni o riferimenti correlati. Se si modifica la firma, potrebbero verificarsi errori di compilazione. Continuare?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Modifica firma...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Genera nuovo tipo...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Errore dell'analizzatore diagnostico utente.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">L'analizzatore '{0}' ha generato un'eccezione di tipo '{1}'. Messaggio: '{2}'.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">L'analizzatore '{0}' ha generato l'eccezione seguente: '{1}'.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Semplifica nomi</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Semplifica accesso membri</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Rimuovi qualificazione</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Si è verificato un errore sconosciuto</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Disponibile</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Non disponibile ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">nell'origine</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">nel file di eliminazione</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Rimuovi eliminazione {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Rimuovi eliminazione</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;In sospeso&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Nota: premere due volte TAB per inserire il frammento di codice '{0}'.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Implementa l'interfaccia in modo esplicito con il criterio Dispose</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Implementa l'interfaccia con il criterio Dispose</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Valuta di nuovo {0} (attualmente '{1}')</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">L'argomento non può contenere un elemento Null.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">L'argomento non può essere vuoto.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">La diagnostica restituita con ID '{0}' non è supportata dall'analizzatore.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Calcolo di tutte le occorrenze da correggere nel codice...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Correggi tutte le occorrenze</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Documento</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">PROGETTO</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Soluzione</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: eliminare lo stato gestito (oggetti gestiti)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: impostare campi di grandi dimensioni su Null</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Compilatore</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">In tempo reale</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">valore di enumerazione</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">campo const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">metodo</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">operatore</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">costruttore</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">proprietà automatica</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">proprietà</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">funzione di accesso eventi</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">Data/ora RFC 1123</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">L'identificatore di formato standard "R" o "r" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.RFC1123Pattern corrente. Lo schema rispecchia uno standard definito e la proprietà è di sola lettura. Sarà quindi sempre lo stesso, indipendentemente dalle impostazioni cultura usate o dal provider di formato specificato. La stringa di formato personalizzata è "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". Quando si usa questo identificatore di formato standard, la formattazione o l'operazione di analisi usa sempre le impostazioni cultura inglese non dipendenti da paese/area geografica.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">Data/ora round trip</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">L'identificatore di formato standard "O" o "o" rappresenta una stringa di formato di data e ora personalizzata con uno schema che mantiene le informazioni sul fuso orario e crea una stringa di risultato conforme allo standard ISO 8601. Per i valori DateTime, questo identificatore di formato è progettato in modo da mantenere i valori di data e ora insieme alla proprietà DateTime.Kind nel testo. È possibile analizzare di nuovo la stringa formattata usando il metodo DateTime.Parse(String, IFormatProvider, DateTimeStyles) o DateTime.ParseExact se il parametro styles è impostato su DateTimeStyles.RoundtripKind. L'identificatore di formato standard "O" o "o" corrisponde alla stringa di formato personalizzata "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" per valori DateTime e alla stringa di formato personalizzata "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" per valori DateTimeOffset. In questa stringa le coppie di virgolette singole che delimitano singoli caratteri, ad esempio trattini, due punti e la lettera "T", indicano che il singolo carattere è un valore letterale che non può essere modificato. Gli apostrofi non vengono visualizzati nella stringa di output. L'identificatore di formato standard "O" o "o" (e la stringa di formato personalizzata "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK") sfrutta i tre modi in cui lo standard ISO 8601 rappresenta le informazioni sul fuso orario per mantenere la proprietà Kind dei valori DateTime: Il componente relativo al fuso orario dei valori di data e ora DateTimeKind.Local rappresenta la differenza dall'ora UTC (ad esempio +01:00, -07:00). Anche tutti i valori DateTimeOffset sono rappresentati in questo formato. Il componente relativo al fuso orario dei valori di data e ora DateTimeKind.Utc usa "Z" (che corrisponde alla differenza zero) per rappresentare l'ora UTC. I valori di data e ora DateTimeKind.Unspecified non includono informazioni sul fuso orario. Dal momento che l'identificatore di formato standard "O" o "o" è conforme a uno standard internazionale, per l'operazione di formattazione o di analisi che usa l'identificatore vengono usate sempre le impostazioni cultura inglese non dipendenti da paese/area geografica e il calendario gregoriano. Le stringhe passate ai metodi Parse, TryParse, ParseExact e TryParseExact di DateTime e DateTimeOffset possono essere analizzate usando l'identificatore di formato "O" o "o" se sono in uno di questi formati. Nel caso degli oggetti DateTime, l'overload di analisi chiamato deve anche includere un parametro styles con un valore DateTimeStyles.RoundtripKind. Tenere presente che se si chiama un metodo di analisi con la stringa di formato personalizzata che corrisponde all'identificatore di formato "O" o "o", non si otterranno gli stessi risultati di "O" o "o". Il motivo è che i metodi di analisi che usano una stringa di formato personalizzata non possono analizzare la rappresentazione in formato stringa di valori di data e ora in cui manca un componente di fuso orario o che usano "Z" per indicare l'ora UTC.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">Secondo (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">L'identificatore di formato personalizzato "s" rappresenta i secondi come numero compreso tra 0 e 59. Il risultato rappresenta il numero intero di secondi passati dall'ultimo minuto. Un secondo costituito da una singola cifra viene formattato senza zero iniziale. Se l'identificatore di formato "s" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard "s".</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">Secondo (2 cifre)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">L'identificatore di formato personalizzato "ss" (più qualsiasi numero di identificatori "s" aggiuntivi) rappresenta i secondi come numero compreso tra 00 e 59. Il risultato rappresenta il numero intero di secondi passati dall'ultimo minuto. Un secondo costituito da una singola cifra viene formattato con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">Data breve</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">L'identificatore di formato standard "d" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.ShortDatePattern di impostazioni cultura specifiche. Ad esempio, la stringa di formato personalizzata restituita dalla proprietà ShortDatePattern delle impostazioni cultura inglese non dipendenti da paese/area geografica è "MM/dd/yyyy".</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">Ora breve</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">L'identificatore di formato standard "t" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.ShortTimePattern corrente. Ad esempio, la stringa di formato personalizzata per le impostazioni cultura inglese non dipendenti da paese/area geografica è "HH:mm".</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">Data/ora ordinabile</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">L'identificatore di formato standard "s" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.SortableDateTimePattern corrente. Lo schema rispecchia uno standard definito (ISO 8601) e la proprietà è di sola lettura. Sarà quindi sempre lo stesso, indipendentemente dalle impostazioni cultura usate o dal provider di formato specificato. La stringa di formato personalizzata è "yyyy'-'MM'-'dd'T'HH':'mm':'ss". L'identificatore di formato "s" ha lo scopo di produrre stringhe di risultati organizzate coerentemente in ordine crescente o decrescente, in base ai valori di data e ora. Di conseguenza, anche se l'identificatore di formato standard "s" rappresenta un valore di data e ora in un formato coerente, l'operazione di formattazione non modifica il valore dell'oggetto data e ora che viene formattato per rispecchiare la proprietà DateTime.Kind o il valore DateTimeOffset.Offset corrispondente. Ad esempio, le stringhe di risultati generate dalla formattazione dei valori di data e ora 2014-11-15T18:32:17+00:00 e 2014-11-15T18:32:17+08:00 sono identiche. Quando si usa questo identificatore di formato standard, la formattazione o l'operazione di analisi usa sempre le impostazioni cultura inglese non dipendenti da paese/area geografica.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">costruttore statico</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'L'elemento 'symbol' non può essere uno spazio dei nomi.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">Separatore di ora</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">L'identificatore di formato personalizzato ":" rappresenta il separatore di ora che viene usato per distinguere ore, minuti e secondi. Il separatore di ora localizzato appropriato viene recuperato dalla proprietà DateTimeFormatInfo.TimeSeparator delle impostazioni cultura correnti o specificate. Nota: per modificare il separatore di ora per una particolare stringa di data e ora, specificare il carattere separatore all'interno di un delimitatore di stringa letterale. La stringa con formato personalizzato hh'_'dd'_'ss, ad esempio, produce una stringa in cui come separatore di ora viene sempre usato "_" (carattere di sottolineatura). Per cambiare il separatore di ora per tutte le date per impostazioni cultura, modificare il valore della proprietà DateTimeFormatInfo.TimeSeparator per le impostazioni cultura correnti oppure creare un'istanza di un oggetto DateTimeFormatInfo, assegnare il carattere alla relativa proprietà TimeSeparator e chiamare un overload del metodo di formattazione che include un parametro IFormatProvider. Se l'identificatore di formato ":" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard e viene generato un evento FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">Fuso orario</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">L'identificatore di formato personalizzato "K" rappresenta le informazioni sul fuso orario di un valore di data e ora. Quando questo identificatore di formato viene usato con valori DateTime, la stringa di risultato viene definita dal valore della proprietà DateTime.Kind: Per il fuso orario locale (un valore della proprietà DateTime.Kind uguale a DateTimeKind.Local) questo identificatore è equivalente all'identificatore "zzz" e genera una stringa di risultato che contiene la differenza locale dall'ora UTC (Coordinated Universal Time), ad esempio "-07.00". Per un'ora UTC (un valore della proprietà DateTime.Kind uguale a DateTimeKind.Utc) la stringa di risultato include un carattere "Z" per rappresentare una data UTC. Per un'ora di un fuso orario non specificato (un'ora la cui proprietà DateTime.Kind è uguale a DateTimeKind.Unspecified) il risultato è equivalente a String.Empty. Per i valori DateTimeOffset, l'identificatore di formato "K" è equivalente all'identificatore di formato "zzz" e genera una stringa di risultato che contiene la diffenza dall'ora UTC del valore DateTimeOffset. Se l'identificatore di formato "K" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard e viene generato un evento FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">vincolo di tipo</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">parametro di tipo</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">attributo</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Sostituisci '{0}' e '{1}' con la proprietà</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Sostituisci '{0}' con la proprietà</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Metodo con riferimenti impliciti</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Genera il tipo '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Genera l'elemento {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Cambia '{0}' in '{1}'.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Non è possibile sostituire il metodo non richiamato con la proprietà.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">È possibile sostituire con una proprietà solo i metodi con un singolo argomento non corrispondente a una dichiarazione di variabile out.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Non è possibile creare un'istanza dell'analizzatore {0} da {1}: {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">L'assembly {0} non contiene analizzatori.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Non è possibile caricare l'assembly dell'analizzatore {0}: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Imposta il metodo come sincrono</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">da {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Trova e installa l'ultima versione</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Usa la versione locale '{0}'</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Usa la versione '{1}' di '{0}' installata in locale Questa versione è usata {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Trova e installa l'ultima versione di '{0}'</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Installa con Gestione pacchetti...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Installa '{0} {1}'</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Installa la versione '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Genera la variabile '{0}'</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Classi</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Costanti</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Delegati</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Enumerazioni</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Eventi</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Metodi di estensione</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Campi</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Interfacce</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Variabili locali</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Metodi</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Moduli</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Spazi dei nomi</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Proprietà</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Strutture</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parametri:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">L'elemento SignatureHelpItem variadic deve avere almeno un parametro.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Sostituisci '{0}' con il metodo</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Sostituisci '{0}' con i metodi</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Proprietà con riferimenti impliciti</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Non è possibile sostituire in modo sicuro la proprietà con una chiamata a un metodo</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Converti in stringa interpolata</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Sposta il tipo in {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Rinomina il file in {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Rinomina il tipo in {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Rimuovi tag</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Aggiungi nodi di parametro mancanti</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Rendi asincrono l'ambito contenitore</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Rendi asincrono l'ambito contenitore (restituisci Task)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Sconosciuto)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Usa il tipo di framework</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Installa il pacchetto '{0}'</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">progetto {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">Qualifica completamente '{0}'</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Rimuove il riferimento a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Parole chiave</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Frammenti</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Tutto minuscole</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Tutto maiuscole</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Prima lettera maiuscola</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Notazione Pascal</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Rimuovi il documento '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Aggiungi il documento '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Aggiungi il nome di argomento '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Accetta '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Accetta entrambi</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Accetta inferiore</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Accetta superiore</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Rimuovi la variabile non usata</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Converti in binario</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Converti in decimale</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Converti in hex</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Separa le migliaia</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Separa le parole</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Separa i nibble</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Rimuovi i separatori</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Aggiungi il parametro a '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Genera il costruttore...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Selezionare i membri da usare come parametri del costruttore</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Selezionare i membri da usare in Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Genera gli override...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Selezionare i membri di cui eseguire l'override</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Aggiungi il controllo Null</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Aggiungi il controllo 'string.IsNullOrEmpty'</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Aggiungi il controllo 'string.IsNullOrWhiteSpace'</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Inizializza il campo '{0}'</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Inizializza la proprietà '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Aggiungi i controlli Null</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Genera gli operatori</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Implementa {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">Il percorso di origine della diagnostica restituita '{0}' è incluso nel file '{1}', che non fa parte della compilazione da analizzare.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">Il percorso di origine '{1}' della diagnostica restituita '{0}' è incluso nel file '{2}', che non è presente nel file specificato.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">in {0} (progetto {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Aggiungi i modificatori di accessibilità</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Sposta la dichiarazione accanto al riferimento</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Converti in proprietà completa</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Avviso: il metodo esegue l'override del simbolo dei metadati</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Usa {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Aggiungi il nome di argomento '{0}' (inclusi gli argomenti finali)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">funzione locale</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">indicizzatore</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Tipo di alias '{0}' ambiguo</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Avviso: la raccolta è stata modificata durante l'iterazione.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Avviso: la variabile di iterazione ha superato il limite della funzione.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Avviso: è possibile che la raccolta venga modificata durante l'iterazione.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">Data/ora estesa universale</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">L'identificatore di formato standard "U" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.FullDateTimePattern di impostazioni cultura specifiche. Lo schema è uguale a quello di "F". Il valore DateTime, tuttavia, viene convertito automaticamente in formato UTC prima di essere formattato.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">Data/ora ordinabile universale</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">L'identificatore di formato standard "u" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.UniversalSortableDateTimePattern corrente. Lo schema rispecchia uno standard definito e la proprietà è di sola lettura. Sarà quindi sempre lo stesso, indipendentemente dalle impostazioni cultura usate o dal provider di formato specificato. La stringa di formato personalizzata è "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". Quando si usa questo identificatore di formato standard, la formattazione o l'operazione di analisi usa sempre le impostazioni cultura inglese non dipendenti da paese/area geografica. Anche se la stringa di risultato deve esprimere un'ora in formato UTC (Coordinated Universal Time), non viene eseguita alcuna conversione del valore DateTime originale durante l'operazione di formattazione. È quindi necessario convertire un valore DateTime in formato UTC chiamando il metodo DateTime.ToUniversalTime prima di eseguire l'operazione di formattazione.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">aggiornamento degli utilizzi nel membro contenitore</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">aggiornamento degli utilizzi nel progetto contenitore</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">aggiornamento degli utilizzi nel tipo contenitore</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">aggiornamento degli utilizzi nei progetti dipendenti</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">Differenza dall'ora UTC in ore e minuti</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Con valori DateTime, l'identificatore di formato personalizzato "zzz" rappresenta la differenza dall'ora UTC con segno del fuso orario del sistema operativo locale, misurata in ore e minuti. Non rispecchia il valore della proprietà DateTime.Kind di un'istanza. Per questo motivo, non è consigliabile usare l'identificatore di formato "zzz" con valori DateTime. Con valori DateTimeOffset, questo identificatore di formato rappresenta la differenza dall'ora UTC del valore DateTimeOffset in ore e minuti. La differenza viene sempre visualizzata con un segno iniziale. Un segno più (+) indica le ore in più e un segno meno (-) le ore in meno rispetto all'ora UTC. Un valore di differenza a una sola cifra viene formattato con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">Differenza dall'ora UTC in ore (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Con valori DateTime, l'identificatore di formato personalizzato "z" rappresenta la differenza dall'ora UTC (Coordinated Universal Time) con segno del fuso orario del sistema operativo locale, misurata in ore. Non rispecchia il valore della proprietà DateTime.Kind di un'istanza. Per questo motivo, non è consigliabile usare l'identificatore di formato "z" con valori DateTime. Con valori DateTimeOffset, questo identificatore di formato rappresenta la differenza dall'ora UTC del valore DateTimeOffset in ore. La differenza viene sempre visualizzata con un segno iniziale. Un segno più (+) indica le ore in più e un segno meno (-) le ore in meno rispetto all'ora UTC. Un valore di differenza a una sola cifra viene formattato senza zero iniziale. Se l'identificatore di formato "z" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard e viene generato un evento FormatException.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">Differenza dall'ora UTC in ore (2 cifre)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Con valori DateTime, l'identificatore di formato personalizzato "zz" rappresenta la differenza dall'ora UTC con segno del fuso orario del sistema operativo locale, misurata in ore. Non rispecchia il valore della proprietà DateTime.Kind di un'istanza. Per questo motivo, non è consigliabile usare l'identificatore di formato "zz" con valori DateTime. Con valori DateTimeOffset, questo identificatore di formato rappresenta la differenza dall'ora UTC del valore DateTimeOffset in ore. La differenza viene sempre visualizzata con un segno iniziale. Un segno più (+) indica le ore in più e un segno meno (-) le ore in meno rispetto all'ora UTC. Un valore di differenza a una sola cifra viene formattato con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">Intervallo [x-y] in ordine inverso</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">Anno (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">L'identificatore di formato personalizzato "y" rappresenta l'anno come numero a una cifra o a due cifre. Se l'anno ha più di due cifre, nel risultato vengono visualizzate solo le due cifre di ordine inferiore. Se la prima cifra di un anno a due cifre inizia con zero (ad esempio, 2008), il numero viene formattato senza zero iniziale. Se l'identificatore di formato "y" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard "y".</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">Anno (2 cifre)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">L'identificatore di formato personalizzato "yy" rappresenta l'anno come numero a due cifre. Se l'anno ha più di due cifre, nel risultato vengono visualizzate solo le due cifre di ordine inferiore. Se l'anno a due cifre ha meno di due cifre significative, prima del numero vengono aggiunti gli zeri necessari per ottenere due cifre. In un'operazione di analisi un anno a due cifre analizzato usando l'identificatore di formato personalizzato "yy" viene interpretato in base alla proprietà Calendar.TwoDigitYearMax del calendario corrente del provider di formato. Nell'esempio seguente viene analizzata la rappresentazione di stringa di una data con un anno a due cifre usando il calendario gregoriano predefinito delle impostazioni cultura en-US, che, in questo caso, sono le impostazioni cultura correnti. Modifica quindi l'oggetto CultureInfo delle impostazioni cultura correnti per usare un oggetto GregorianCalendar la cui proprietà TwoDigitYearMax è stata modificata.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">Anno (3-4 cifre)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">L'identificatore di formato personalizzato "yyy" rappresenta l'anno con un minimo di tre cifre. Se l'anno ha più di tre cifre significative, queste vengono incluse nella stringa di risultato. Se l'anno ha meno di tre cifre, prima del numero vengono aggiunti gli zeri necessari per ottenere tre cifre.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">Anno (4 cifre)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">L'identificatore di formato personalizzato "yyyy" rappresenta l'anno con un minimo di quattro cifre. Se l'anno ha più di quattro cifre significative, queste vengono incluse nella stringa di risultato. Se l'anno ha meno di quattro cifre, prima del numero vengono aggiunti gli zeri necessari per ottenere quattro cifre.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">Anno (5 cifre)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">L'identificatore di formato personalizzato "yyyyy" (più qualsiasi numero di identificatori "y" aggiuntivi) rappresenta l'anno con un minimo di cinque cifre. Se l'anno ha più di cinque cifre significative, queste vengono incluse nella stringa di risultato. Se l'anno ha meno di cinque cifre, prima del numero vengono aggiunti gli zeri necessari per ottenere cinque cifre. Se sono presenti identificatori "y" aggiuntivi, prima del numero vengono aggiunti gli zeri necessari per ottenere il numero di identificatori "y".</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">Anno e mese</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">L'identificatore di formato standard "Y" o "y" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.YearMonthPattern di impostazioni cultura specifiche. Ad esempio, la stringa di formato personalizzata per le impostazioni cultura inglese non dipendenti da paese/area geografica è "yyyy MMMM".</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="it" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (abbreviato)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">L'identificatore di formato personalizzato "t" rappresenta il primo carattere dell'indicatore AM/PM. L'indicatore localizzato appropriato viene recuperato dalla proprietà DateTimeFormatInfo.AMDesignator o DateTimeFormatInfo.PMDesignator delle impostazioni cultura correnti o specificate. L'indicatore AM viene usato per tutti gli orari compresi tra 0:00:00 (mezzanotte) e 11:59:59.999. L'indicatore PM viene usato per tutti gli orari compresi tra 12:00:00 (mezzogiorno) e 23:59:59.999. Se l'identificatore di formato "t" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato data e ora standard "t".</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (esteso)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">L'identificatore di formato personalizzato "tt" (più qualsiasi numero di identificatori "t" aggiuntivi) rappresenta l'indicatore AM/PM completo. L'indicatore localizzato appropriato viene recuperato dalla proprietà DateTimeFormatInfo.AMDesignator o DateTimeFormatInfo.PMDesignator delle impostazioni cultura correnti o specificate. L'indicatore AM viene usato per tutti gli orari compresi tra 0:00:00 (mezzanotte) e 11:59:59.999. L'indicatore PM viene usato per tutti gli orari compresi tra 12:00:00 (mezzogiorno) e 23:59:59.999. Assicurarsi di usare l'identificatore "tt" per le lingue per le quali è necessario mantenere la distinzione tra AM e PM. Un esempio è la lingua giapponese, in cui gli indicatori AM e PM sono diversi nel secondo carattere anziché nel primo.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">L'ultimo elemento di una classe di caratteri deve essere una sottrazione</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Aggiungi l'attributo 'DebuggerDisplay'</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Aggiungi cast esplicito</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Aggiungi nome del membro</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Aggiungi controlli Null per tutti i parametri</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Aggiungi il parametro facoltativo al costruttore</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Aggiungi il parametro a '{0}' (e override/implementazioni)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Aggiungi il parametro al costruttore</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Aggiunge il riferimento al progetto a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Aggiunge il riferimento a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Il campo Azioni non può essere vuoto.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Aggiungi il nome dell'elemento tupla '{0}'</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Allinea gli argomenti con ritorno a capo</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Allinea i parametri con ritorno a capo</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Le condizioni di alternanza non possono essere commenti</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Le condizioni di alternanza non consentono l'acquisizione e non possono essere denominate</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Applica le preferenze relative alle intestazioni di file</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Applica le preferenze di inizializzazione di oggetti/raccolte</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">L'attività attesa restituisce '{0}'</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">L'attività attesa non restituisce alcun valore</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Le classi di base contengono membri non implementati inaccessibili</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Non è possibile applicare le modifiche. Errore imprevisto: '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Non è possibile includere la classe \{0} nell'intervallo di caratteri</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">I numeri del gruppo Capture devono essere minori o uguali a Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Il numero di acquisizioni non può essere zero</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;deduci&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;ometti&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Passa allo spazio dei nomi globale</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Le modifiche non sono consentite in caso di arresto in corrispondenza dell'eccezione</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Le modifiche apportate al progetto '{0}' non verranno applicate mentre l'applicazione è in esecuzione</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application"> <source>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</source> <target state="new">Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Configura lo stile del codice di {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Configura la gravità di {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Configura la gravità per tutti gli analizzatori di '{0}'</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Configura la gravità per tutti gli analizzatori</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Converti in LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Aggiungi a '{0}'</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Converti in classe</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Converti in LINQ (form di chiamata)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Converti in record</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Converti in struct di record</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Converti in struct</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Converti il tipo in '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Crea e assegna il campo '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Crea e assegna la proprietà '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Crea e assegna rimanenti come campi</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Crea e assegna rimanenti come proprietà</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Non modificare questo codice. Inserire il codice di pulizia nel metodo '{0}'</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Il contenuto corrente del file di origine '{0}' non corrisponde al codice sorgente compilato. Tutte le modifiche apportate a questo file durante il debug non verranno applicate finché il relativo contenuto non corrisponde al codice sorgente compilato.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Il documento deve essere contenuto nell'area di lavoro che ha creato il servizio</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Modifica e continuazione</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Modifica e continuazione non consentito dal modulo</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Le modifiche apportate al progetto '{0}' impediranno la continuazione della sessione di debug: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">La funzione Modifica e continuazione non è supportata dal runtime.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Si è verificato un errore durante la lettura del file '{0}': {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Si è verificato un errore durante la creazione dell'istanza di CodeFixProvider</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Si è verificato un errore durante la creazione dell'istanza di CodeFixProvider '{0}'</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Esempio:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Esempi:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">I metodi dei record implementati in modo esplicito devono avere nomi di parametro corrispondenti all'equivalente generato dal compilatore '{0}'</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Estrai classe di base...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Estrai interfaccia...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Estrai funzione locale</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Estrai il metodo</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Non è stato possibile analizzare il flusso di dati per: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Correggi formattazione</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Correggi l'errore di ortografia '{0}'</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Formatta documento</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Formattazione del documento</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Genera gli operatori di confronto</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Genera il costruttore in '{0}' (con campi)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Genera il costruttore in '{0}' (con proprietà)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Genera per '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Generare il parametro '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Generare il parametro '{0}' (e override/implementazioni)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Carattere \ non valido alla fine del criterio</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">{x,y} non valido con x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Implementa '{0}' in modo esplicito</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Implementa '{0}' in modo implicito</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Implementa la classe astratta</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Implementa tutte le interfacce in modo esplicito</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Implementa tutte le interfacce in modo implicito</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Implementare tutti i membri in modo esplicito</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Implementa in modo esplicito</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Implementa in modo implicito</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Implementare i membri rimanenti in modo esplicito</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Implementa tramite '{0}'</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Sequenza di caratteri di escape \p{X} incompleta</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Imposta rientro per tutti gli argomenti</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Imposta rientro per tutti i parametri</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Imposta rientro per argomenti con ritorno a capo</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Imposta rientro per parametri con ritorno a capo</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">Imposta '{0}' come inline</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Imposta come inline e mantieni '{0}'</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Cifre esadecimali insufficienti</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Introduci costante</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Introduci campo</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Introduci variabile locale</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Introduci la variabile di query</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Nome di gruppo non valido: i nomi di gruppo devono iniziare con un carattere alfanumerico</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Rendi la classe 'abstract'</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Imposta come statici</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Inverti espressione condizionale</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">non valido</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Sequenza di caratteri di escape \\p{X} non valida</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Backreference denominato \k&lt;...&gt; in formato non corretto</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Unisci con istruzione '{0}' nidificata</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Unisci con istruzione '{0}' successiva</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Unisci con istruzione '{0}' esterna</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Unisci con istruzione '{0}' precedente</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} deve restituire un flusso che supporta operazioni di lettura e ricerca.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Carattere di controllo mancante</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Sposta contenuto nello spazio dei nomi...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Sposta il file in '{0}'</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Sposta il file nella cartella radice del progetto</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Sposta nello spazio dei nomi...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Quantificatore nidificato {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Non ci sono posizioni valide per inserire la chiamata a un metodo.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Parentesi chiuse insufficienti</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operatori</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">Non è possibile aggiornare il riferimento alla proprietà</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Esegui pull '{0}' al livello superiore</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Esegui pull di '{0}' fino a '{1}'</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Esegui pull dei membri fino al tipo di base...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Esegui pull dei membri fino alla nuova classe di base...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Il quantificatore {x,y} non segue alcun elemento</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">riferimento a gruppo indefinito</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Riferimento a nome di gruppo indefinito: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Riferimento a numero di gruppo indefinito: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Tutti i caratteri di controllo. Sono incluse le categorie Cc, Cf, Cs, Co e Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">tutti i caratteri di controllo</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Tutti i contrassegni diacritici. Sono incluse le categorie Mn, Mc e Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">tutti i contrassegni diacritici</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Tutti i caratteri alfanumerici. Sono incluse le categorie Lu, Ll, Lt, Lm e Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">tutti i caratteri alfanumerici</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Tutti i numeri. Sono incluse le categorie Nd, Nl e No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">tutti i numeri</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Tutti i caratteri di punteggiatura. Sono incluse le categorie Pc, Pd, Ps, Pe, Pi, Pf e Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">tutti i caratteri di punteggiatura</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Tutti i caratteri separatori. Sono incluse le categorie Zs, Zl e Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">tutti i caratteri separatori</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Tutti i simboli. Sono incluse le categorie Sm, Sc, Sk e So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">tutti i simboli</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">È possibile usare la barra verticale (|) per trovare la corrispondenza con uno qualsiasi di una serie di criteri, dove i singoli criteri sono separati dal carattere |.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">alternanza</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Il carattere punto (.) corrisponde a qualsiasi carattere tranne \n (carattere di nuova riga \u000A). Se un criterio di ricerca di espressioni regolari viene modificato dall'opzione RegexOptions.Singleline o se la parte del criterio contenente la classe di caratteri . viene modificata dall'opzione 's', . corrisponde a qualsiasi carattere.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">qualsiasi carattere</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">I gruppi atomici (noti in alcuni motori delle espressioni regolari come sottoespressione di non backtracking, sottoespressione atomica o sottoespressione once-only) disabilitano il backtracking. Il motore delle espressioni regolari troverà la corrispondenza con il numero massimo possibile di caratteri nella stringa di input. Quando non sarà più possibile trovare altre corrispondenze, non eseguirà il backtracking per trovare corrispondenze alternative con i criteri. Viene quindi trovata la corrispondenza della sottoespressione solo con stringhe corrispondenti esclusivamente alla sottoespressione; non viene effettuato alcun tentativo per trovare la corrispondenza per una stringa in base alla sottoespressione e a qualsiasi sottoespressione successiva. Questa opzione è consigliata solo se si è certi che il backtracking avrà esito negativo. Impedendo al motore delle espressioni regolari di eseguire ricerche non necessarie è possibile notare un miglioramento delle prestazioni.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">gruppo atomico</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Trova la corrispondenza di un carattere backspace \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">carattere backspace</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Una definizione di gruppo di bilanciamento elimina la definizione di un gruppo precedentemente definito e archivia nel gruppo corrente l'intervallo tra il gruppo precedentemente definito e il gruppo corrente. 'name1' è il gruppo corrente (facoltativo), 'name2' è un gruppo precedentemente definito e 'subexpression' è qualsiasi criterio di ricerca di espressioni regolari valido. La definizione di gruppo di bilanciamento elimina la definizione di name2 e archivia l'intervallo tra name2 e name1 in name1. Se non è definito alcun gruppo name2, viene eseguito il backtracking della corrispondenza. Dal momento che l'eliminazione dell'ultima definizione di name2 rivela la definizione precedente di name2, questo costrutto consente di usare lo stack di acquisizioni per il gruppo name2 come contatore per tenere traccia dei costrutti annidati, come ad esempio le parentesi o le parentesi quadre di apertura e chiusura. La definizione del gruppo di bilanciamento usa 'name2' come uno stack. Il carattere iniziale di ogni costrutto annidato viene posizionato nel gruppo e nella relativa raccolta Group.Captures. Quando viene trovata la corrispondenza con il carattere di chiusura, il carattere di apertura associato viene rimosso dal gruppo e la raccolta Captures viene ridotta di uno. Dopo che la corrispondenza dei caratteri di apertura e chiusura di tutti i costrutti annidati è stata trovata, 'name1' è vuoto.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">gruppo di bilanciamento</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">gruppo di base</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Trova la corrispondenza di un carattere di controllo del segnale acustico di avviso \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">carattere di controllo del segnale acustico di avviso</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Trova la corrispondenza di un carattere di ritorno a capo \u000D. Si noti che \r non equivale al carattere di nuova riga \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">carattere di ritorno a capo</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">La sottrazione di classi di caratteri produce un set di caratteri che è il risultato dell'esclusione dei caratteri di una classe di caratteri da un'altra classe di caratteri. 'base_group' è un gruppo o un intervallo di caratteri positivi o negativi. Il componente 'excluded_group' è un altro gruppo di caratteri positivi o negativi o un'altra espressione di sottrazione di classi di caratteri, ovvero è possibile annidare espressioni di sottrazione di classi di caratteri.</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">sottrazione di classi di caratteri</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">gruppo di caratteri</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">commento</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Questo elemento del linguaggio effettua un tentativo per trovare una corrispondenza con uno di due criteri, a seconda della possibilità di trovare una corrispondenza con un criterio iniziale. dove 'expression' è il criterio iniziale per la corrispondenza, 'yes' è il criterio di corrispondenza se viene trovata una corrispondenza per l'espressione e 'no' è il criterio facoltativo di corrispondenza se non viene trovata una corrispondenza per l'espressione.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">corrispondenza di espressione condizionale</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Questo elemento del linguaggio effettua un tentativo per trovare una corrispondenza con uno di due criteri, a seconda dell'effettiva corrispondenza con un gruppo di acquisizione specificato. 'name' è il nome (o il numero) di un gruppo di acquisizione, 'yes' è l'espressione di cui trovare la corrispondenza se per 'name' (o 'number') è disponibile una corrispondenza e 'no' è l'espressione facoltativa di cui trovare la corrispondenza in caso contrario.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">corrispondenza di gruppo condizionale</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">L'ancoraggio \G specifica che la corrispondenza deve verificarsi nel punto in cui è terminata la corrispondenza precedente. Se usato con il metodo Regex.Matches o Match.NextMatch, questo ancoraggio garantisce che tutte le corrispondenze siano contigue.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">corrispondenze contigue</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Trova la corrispondenza di un carattere di controllo ASCII, dove X è la lettera del carattere di controllo. Ad esempio, \cC corrisponde a CTRL+C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">carattere di controllo</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d trova la corrispondenza di qualsiasi cifra decimale. Equivale al criterio di ricerca di espressioni regolari \p{Nd}, che include le cifre decimali standard da 0 a 9 e le cifre decimali di altri set di caratteri. Se viene specificato il comportamento conforme a ECMAScript, \d equivale a [0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">carattere di cifra decimale</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Un cancelletto (#) contrassegna un commento in modalità x, che inizia in corrispondenza del carattere senza escape # alla fine del criterio di ricerca di espressioni regolari e continua fino alla fine della riga. Per usare questo costrutto, è necessario abilitare l'opzione x (con opzioni inline) o specificare il valore RegexOptions.IgnorePatternWhitespace per il parametro option quando si crea l'istanza dell'oggetto Regex o si chiama un metodo statico Regex.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">commento di fine riga</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">L'ancoraggio \z specifica che la corrispondenza deve verificarsi alla fine della stringa di input. Come per l'elemento del linguaggio $, \z ignora l'opzione RegexOptions.Multiline. Diversamente dall'elemento del linguaggio \Z, \z non trova un carattere \n alla fine di una stringa. Di conseguenza, può trovare solo l'ultima riga della stringa di input.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">solo fine di stringa</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">L'ancoraggio \Z specifica che la corrispondenza deve verificarsi alla fine della stringa di input oppure prima di \n alla fine della stringa di input. L'ancoraggio è identico a $, ad eccezione del fatto che \Z ignora l'opzione RegexOptions.Multiline. Di conseguenza, in una stringa con più righe può trovare solo la fine dell'ultima riga oppure l'ultima riga prima di \n. L'ancoraggio \Z corrisponde a \n, ma non a \r\n (combinazione di caratteri CR/LF). Per trovare la combinazione di caratteri CR/LF, includere \r?\Z nel criterio di ricerca di espressioni regolari.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">fine di stringa o prima di terminare una nuova riga</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">L'ancoraggio $ specifica che il criterio precedente deve verificarsi alla fine della stringa di input oppure prima di \n alla fine della stringa di input. Se si usa $ con l'opzione RegexOptions.Multiline, la corrispondenza può verificarsi anche alla fine di una riga. L'ancoraggio $ corrisponde a \n, ma non a \r\n (combinazione di ritorno a capo e caratteri di nuova riga o CR/LF). Per trovare la combinazione di caratteri CR/LF, includere \r?$ nel criterio di ricerca di espressioni regolari.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">fine di stringa o riga</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Trova la corrispondenza di un carattere di escape \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">carattere di escape</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">gruppo escluso</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">espressione</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Trova la corrispondenza di un carattere di avanzamento carta \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">carattere di avanzamento carta</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Questo costrutto di raggruppamento applica o disabilita le opzioni specificate all'interno di una sottoespressione. Le opzioni da abilitare vengono specificate dopo il punto interrogativo, mentre quelle da disabilitare vengono specificate dopo il segno meno. Le opzioni consentite sono: i Usa la corrispondenza che non fa distinzione tra maiuscole e minuscole. m Usa la modalità multiriga, in cui ^ e $ corrispondono all'inizio e alla fine di ogni riga anziché all'inizio e alla fine della stringa di input. s Usa la modalità a riga singola, in cui il punto (.) corrisponde a qualsiasi carattere anziché a ogni carattere eccetto \n. n Non acquisisce gruppi senza nome. Le uniche acquisizioni valide sono i gruppi denominati o numerati in modo esplicito in formato (?&lt;nome&gt; sottoespressione). x Esclude gli spazi vuoti senza caratteri di escape nel criterio e abilita i commenti dopo un simbolo di cancelletto (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">opzioni di raggruppamento</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Trova la corrispondenza di un carattere ASCII dove nn è un codice carattere esadecimale a due cifre.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">carattere di escape esadecimale</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">Il costrutto (?# comment) consente di includere un commento inline in un'espressione regolare. Il motore delle espressioni regolari non usa una parte del commento nei criteri di ricerca, anche se il commento è incluso nella stringa restituita dal metodo Regex.ToString. Il commento termina in corrispondenza della prima parentesi chiusa.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">commento inline</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Abilita o disabilita opzioni specifiche dei criteri di ricerca per il resto di un'espressione regolare. Le opzioni da abilitare vengono specificate dopo il punto interrogativo, mentre quelle da disabilitare vengono specificate dopo il segno meno. Le opzioni consentite sono: i Usa la corrispondenza che non fa distinzione tra maiuscole e minuscole. m Usa la modalità multiriga, in cui ^ e $ corrispondono all'inizio e alla fine di ogni riga anziché all'inizio e alla fine della stringa di input. s Usa la modalità a riga singola, in cui il punto (.) corrisponde a qualsiasi carattere anziché a ogni carattere eccetto \n. n Non acquisisce gruppi senza nome. Le uniche acquisizioni valide sono gruppi denominati o numerati in modo esplicito nel formato (?&lt;nome&gt; sottoespressione). x Esclude gli spazi vuoti senza caratteri di escape nel criterio e abilita i commenti dopo un simbolo di cancelletto (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">opzioni inline</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Problema di regex: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">alfanumerico, minuscolo</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">alfanumerico, modificatore</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">alfanumerico, altro</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">alfanumerico, titolo</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">alfanumerico, maiuscolo</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">contrassegno, chiusura</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">contrassegno, non spaziatura</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">contrassegno, spaziatura combinata</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">Il quantificatore {n,}? trova la corrispondenza con l'elemento precedente almeno n volte, dove n è qualsiasi numero intero, ma il minor numero di volte possibile. Si tratta della controparte lazy del quantificatore greedy {n,}</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">trova la corrispondenza almeno 'n' volte (corrispondenza lazy)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">Il quantificatore {n,} trova la corrispondenza con l'elemento precedente almeno n volte, dove n è qualsiasi numero intero. {n,} è un quantificatore greedy il cui equivalente lazy è {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">trova la corrispondenza almeno 'n' volte</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">Il quantificatore {n,m}? trova la corrispondenza con l'elemento precedente tra n e m volte, dove n e m sono numeri interi, ma il minor numero di volte possibile. Si tratta della controparte lazy del quantificatore greedy {n,m}</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">trova la corrispondenza almeno 'n' volte (corrispondenza lazy)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">Il quantificatore {n,m} trova la corrispondenza con l'elemento precedente almeno n volte, ma non più di m volte, dove n e m sono numeri interi. {n,m} è un quantificatore greedy il cui equivalente lazy è {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">trova la corrispondenza tra 'n' e 'm' volte</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">Il quantificatore {n}? trova la corrispondenza con l'elemento precedente esattamente n volte, dove n è qualsiasi numero intero. Si tratta della controparte lazy del quantificatore greedy {n}+</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">trova la corrispondenza esatta 'n' volte (corrispondenza lazy)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">Il quantificatore {n} trova la corrispondenza con l'elemento precedente esattamente n volte, dove n è qualsiasi numero intero. {n} è un quantificatore greedy il cui equivalente lazy è {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">trova la corrispondenza esatta 'n' volte</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">Il quantificatore +? trova la corrispondenza con l'elemento precedente una o più volte, ma il minor numero di volte possibile. Si tratta della controparte lazy del quantificatore greedy +</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">trova la corrispondenza una o più volte (corrispondenza lazy)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">Il quantificatore + trova la corrispondenza con l'elemento precedente una o più volte. Equivale al quantificatore {1,}. + è un quantificatore greedy il cui equivalente lazy è +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">trova la corrispondenza una o più volte</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">Il quantificatore *? trova la corrispondenza con l'elemento precedente zero o più volte, ma il minor numero di volte possibile. Si tratta della controparte lazy del quantificatore greedy *</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">trova la corrispondenza zero o più volte (corrispondenza lazy)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">Il quantificatore * trova la corrispondenza con l'elemento precedente zero o più volte. Equivale al quantificatore {0,}. * è un quantificatore greedy il cui equivalente lazy è *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">trova la corrispondenza zero o più volte</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">Il quantificatore ?? trova la corrispondenza con l'elemento precedente zero o una volta, ma il minor numero di volte possibile. Si tratta della controparte lazy del quantificatore greedy ?</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">trova la corrispondenza zero o una volta (corrispondenza lazy)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">Il quantificatore ? trova la corrispondenza con l'elemento precedente zero o una volta. Equivale al quantificatore {0,1}. ? è un quantificatore greedy il cui equivalente lazy è ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">trova la corrispondenza zero o una volta</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Questo costrutto di raggruppamento acquisisce una 'subexpression' corrispondente, in cui 'subexpression' è qualsiasi criterio di ricerca di espressioni regolari valido. Le acquisizioni che usano parentesi sono numerate automaticamente da sinistra verso destra in base all'ordine delle parentesi di apertura nell'espressione regolare, a partire da uno. L'acquisizione che viene numerata zero è il testo corrispondente all'intero criterio di ricerca di espressioni regolari.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">sottoespressione corrispondente</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">nome</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">nome o numero</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Backreference denominato o numerato. 'name' è il nome di un gruppo di acquisizione definito nel criterio di ricerca di espressioni regolari.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">backreference denominato</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Acquisisce una sottoespressione corrispondente e consente di accedervi tramite nome o numero. 'name' è un nome di gruppo valido e 'subexpression' è un qualsiasi criterio di ricerca di espressioni regolari valido. 'name' non deve contenere alcun simbolo di punteggiatura e non può iniziare con un numero. Se il parametro RegexOptions di un criterio di ricerca di espressioni regolari include il flag RegexOptions.ExplicitCapture o se l'opzione n viene applicata a questa sottoespressione, l'unico modo per acquisire una sottoespressione consiste nell'assegnare esplicitamente un nome ai gruppi di acquisizione.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">sottoespressione corrispondente denominate</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Un gruppo di caratteri negativi specifica un elenco di caratteri che non devono essere presenti in una stringa di input per trovare una corrispondenza. L'elenco di caratteri viene specificato singolarmente. Due o più intervalli di caratteri possono essere concatenati. Ad esempio, per specificare l'intervallo di cifre decimali comprese tra "0" e "9", l'intervallo di lettere minuscole comprese tra "a" e "f" e l'intervallo di lettere maiuscole comprese tra "A" e "F", usare [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">gruppo di caratteri negativi</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Un intervallo di caratteri negativi specifica un elenco di caratteri che non devono essere presenti in una stringa di input per trovare una corrispondenza. 'firstCharacter' è il carattere che inizia l'intervallo e 'lastCharacter' è il carattere che lo termina. Due o più intervalli di caratteri possono essere concatenati. Ad esempio, per specificare l'intervallo di cifre decimali comprese tra "0" e "9", l'intervallo di lettere minuscole comprese tra "a" e "f" e l'intervallo di lettere maiuscole comprese tra "A" e "F", usare [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">intervallo di caratteri negativi</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Il costrutto di espressione regolare \P{ name } corrisponde a qualsiasi carattere non appartenente a una categoria generale Unicode o a un blocco denominato, dove name è l'abbreviazione della categoria o il nome del blocco denominato.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">categoria Unicode negativa</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Trova la corrispondenza di un carattere di nuova riga \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">carattere di nuova riga</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">no</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D trova la corrispondenza con qualsiasi carattere non numerico. Equivale al criterio di ricerca di espressioni regolari \P{Nd}. Se viene specificato il comportamento conforme a ECMAScript, \D equivale a [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">carattere non numerico</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S trova la corrispondenza di qualsiasi carattere diverso da uno spazio. Equivale al criterio di ricerca di espressioni regolari [^\f\n\r\t\v\x85\p{Z}] o è il contrario del criterio di ricerca di espressioni regolari equivalente a \s, che corrisponde a spazi vuoti. Se viene specificato il comportamento conforme a ECMAScript, \S equivale a [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">carattere diverso da uno spazio vuoto</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">L'ancoraggio \B specifica che la corrispondenza non deve verificarsi in un confine di parola. Si tratta dell'effetto contrario rispetto all'ancoraggio \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">carattere che non costituisce un confine di parola</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W trova la corrispondenza di qualsiasi carattere non alfabetico. Corrisponde a tutti i caratteri, ad eccezione di quelli inclusi nelle categorie Unicode seguenti: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector Se viene specificato il comportamento conforme a ECMAScript, \W equivale a [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">carattere non alfanumerico</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Questo costrutto non acquisisce la sottostringa corrispondente a una sottoespressione: Il costrutto del gruppo non di acquisizione viene generalmente usato quando un quantificatore è applicato a un gruppo, ma le sottostringhe acquisite dal gruppo non sono di alcun interesse. Se un'espressione regolare include costrutti di raggruppamento annidati, un costrutto del gruppo di non acquisizione esterno non si applica ai costrutti del gruppo annidati interni.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">gruppo di non acquisizione</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">numerico, cifra decimale</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">numerico, alfanumerico</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">numerico, altro</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Backreference numerato, in cui 'number' è la posizione ordinale del gruppo di acquisizione nell'espressione regolare. Ad esempio, \4 corrisponde al contenuto del quarto gruppo di acquisizione. È presente un'ambiguità tra i codici di escape ottale, ad esempio \16, e i backreference \number che usano la stessa notazione. Se il problema è dovuto all'ambiguità, è possibile usare la notazione \k&lt;name&gt; che, non essendo ambigua, non può essere confusa con codici di caratteri ottali. Analogamente, i codici esadecimale come \xdd non sono ambigui e non possono essere confusi con backreference.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">backreference numerato</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">altro, controllo</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">altro, formato</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">altro, non assegnato</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">altro, uso privato</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">altro, surrogato</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Un gruppo di caratteri positivi specifica un elenco di caratteri che possono essere presenti in una stringa di input per trovare una corrispondenza.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">gruppo di caratteri positivi</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Un intervallo di caratteri positivi specifica un intervallo di caratteri che possono essere presenti in una stringa di input per trovare una corrispondenza. 'firstCharacter' è il carattere che inizia l'intervallo e 'lastCharacter' è il carattere che lo termina. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">intervallo di caratteri positivi</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">punteggiatura, chiusura</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">punteggiatura, connettore</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">punteggiatura, trattino</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">punteggiatura, virgoletta finale</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">punteggiatura, virgoletta iniziale</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">punteggiatura, apertura</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">punteggiatura, altro</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">separatore, riga</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">separatore, paragrafo</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">separatore, spazio</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">L'ancoraggio \A specifica che la corrispondenza deve verificarsi all'inizio della stringa di input. L'ancoraggio è identico a ^, ad eccezione del fatto che \A ignora l'opzione RegexOptions.Multiline. Di conseguenza, può trovare solo l'inizio della prima riga in una stringa di input con più righe.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">solo inizio di stringa</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">L'ancoraggio ^ specifica che il criterio seguente deve iniziare in corrispondenza della posizione del primo carattere della stringa. Se si usa ^ con l'opzione RegexOptions.Multiline, la corrispondenza deve verificarsi all'inizio di ogni riga.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">inizio di stringa o riga</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">sottoespressione</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">simbolo, valuta</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">simbolo, matematica</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">simbolo, modificatore</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">simbolo, altro</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Trova la corrispondenza di un carattere di tabulazione \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">carattere di tabulazione</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Il costrutto di espressione regolare \p{ name } corrisponde a qualsiasi carattere appartenente a una categoria generale Unicode o a un blocco denominato, dove name è l'abbreviazione della categoria o il nome del blocco denominato.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">categoria Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Trova la corrispondenza di un'unità di codice UTF-16 il cui valore è l'esadecimale ####.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">carattere di escape Unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Categoria generale Unicode: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Trova la corrispondenza di un carattere di tabulazione verticale \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">carattere di tabulazione verticale</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s trova la corrispondenza di qualsiasi carattere di spazio. Equivale alle sequenze di escape e alle categorie Unicode seguenti: \f Carattere di avanzamento modulo \u000C \n Carattere di nuova riga \u000A \r Carattere di ritorno a capo \u000D \t Carattere di tabulazione \u0009 \v Carattere di tabulazione verticale \u000B \x85 Puntini di sospensione o carattere NEXT LINE (NEL) (…) \u0085 \p{Z} Trova la corrispondenza di un qualsiasi carattere separatore Se viene specificato il comportamento conforme a ECMAScript, \s equivale a [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">spazio vuoto</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">L'ancoraggio \b specifica che la corrispondenza deve verificarsi in un confine tra un carattere alfanumerico (elemento del linguaggio \w) e uno non alfanumerico (elemento del linguaggio \W). I caratteri alfanumerici sono costituiti da lettere, cifre e caratteri di sottolineatura. Un carattere non alfanumerico è qualsiasi carattere diverso da lettere, cifre e carattere di sottolineatura. La corrispondenza può verificarsi anche in un confine di parola all'inizio o alla fine della stringa. L'ancoraggio \b viene usato di frequente per garantire che una sottoespressione corrisponda a un'intera parola anziché solo all'inizio o alla fine di una parola.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">confine di parola</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w trova la corrispondenza di qualsiasi carattere alfanumerico. Un carattere alfanumerico è un membro di una delle categorie Unicode seguenti: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector Se viene specificato il comportamento conforme a ECMAScript, \w equivale a [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">carattere alfanumerico</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">sì</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Asserzione lookahead negativa di larghezza zero, in cui per trovare una corrispondenza, la stringa di input non deve corrispondere al criterio di ricerca di espressioni regolari in subexpression. La stringa corrispondente non è inclusa nei risultati della corrispondenza. Un'asserzione lookahead negativa di larghezza zero viene usata in genere all'inizio o alla fine di un'espressione regolare. All'inizio di un'espressione regolare, può definire un criterio specifico per il quale non deve essere trovata una corrispondenza quando l'inizio dell'espressione regolare definisce un criterio simile, ma più generale, per cui stabilire la corrispondenza. In questo caso, viene spesso usata per limitare il backtracking. Alla fine di un'espressione regolare, può definire una sottoespressione che non può verificarsi alla fine di una corrispondenza.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">asserzione lookahead negativa di larghezza zero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Asserzione lookbehind negativa di larghezza zero, in cui per trovare una corrispondenza, 'subexpression' non deve trovarsi nella stringa di input a sinistra della posizione corrente. Qualsiasi sottostringa che non corrisponde a 'subexpression' non viene inclusa nel risultato della corrispondenza. Le asserzioni lookbehind negative di larghezza zero vengono usate in genere all'inizio delle espressioni regolari. Il criterio definito preclude una corrispondenza nella stringa che segue. Queste asserzioni vengono usate anche per limitare il backtracking quando l'ultimo carattere o gli ultimi caratteri in un gruppo acquisito non devono essere costituiti da uno o più caratteri corrispondenti al criterio di ricerca di espressioni regolari di tale gruppo.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">asserzione lookbehind negativa di larghezza zero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Asserzione lookahead positiva di larghezza zero, in cui per trovare una corrispondenza, la stringa di input deve corrispondere al criterio di ricerca di espressioni regolari in 'subexpression'. La sottostringa corrispondente non è inclusa nei risultati della corrispondenza. Un'asserzione lookahead positiva di larghezza zero non esegue il backtracking. In genere, un'asserzione lookahead positiva di larghezza zero viene trovata alla fine di un criterio di ricerca di espressioni regolari. Definisce una sottostringa che deve trovarsi alla fine di una stringa per stabilire una corrispondenza, ma che non deve essere inclusa nella corrispondenza. È anche utile per impedire un backtracking eccessivo. È possibile usare un'asserzione lookahead positiva di larghezza zero per assicurarsi che un particolare gruppo acquisito inizi con il testo che corrisponde a un subset del criterio definito per tale gruppo acquisito.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">asserzione lookahead positiva di larghezza zero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Asserzione lookbehind positiva di larghezza zero, in cui per trovare una corrispondenza, 'subexpression' deve trovarsi nella stringa di input a sinistra della posizione corrente. 'subexpression' non è incluso nei risultati della corrispondenza. Un'asserzione lookbehind positiva di larghezza zero non esegue il backtracking. Le asserzioni lookbehind positive di larghezza zero vengono usate in genere all'inizio delle espressioni regolari. Il criterio definito è una precondizione per una corrispondenza, anche se non fa parte del risultato della corrispondenza.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">asserzione lookbehind positiva di larghezza zero</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Le firme del metodo correlate trovate nei metadati non verranno aggiornate.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">La rimozione del documento non è supportata</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Rimuovi il modificatore 'async'</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Rimuovi i cast non necessari</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Rimuovi le variabili non usate</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Sostituisci '{0}' con '{1}'</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Risolvi gli indicatori di conflitto</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Modifica non applicabile</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Ordina i modificatori di accessibilità</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Dividi in istruzioni '{0}' consecutive</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Dividi in istruzioni '{0}' nidificate</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Il flusso deve supportare operazioni di lettura e ricerca.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Elimina {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: liberare risorse non gestite (oggetti non gestiti) ed eseguire l'override del finalizzatore</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: eseguire l'override del finalizzatore solo se '{0}' contiene codice per liberare risorse non gestite</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Imposta destinazione per corrispondenze di tipo</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">L'assembly '{0}' che contiene il tipo '{1}' fa riferimento a .NET Framework, che non è supportato.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">La selezione contiene una chiamata di funzione locale senza la relativa dichiarazione.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Troppi | in (?()|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Troppe parentesi di chiusura</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Non è possibile leggere il file di origine '{0}' o il file PDB compilato per il progetto contenitore. Tutte le modifiche apportate a questo file durante il debug non verranno applicate finché il relativo contenuto non corrisponde al codice sorgente compilato.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Proprietà sconosciuta</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Proprietà sconosciuta '{0}'</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Carattere di controllo non riconosciuto</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Sequenza di escape non riconosciuta: \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Costrutto di raggruppamento non riconosciuto</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Set di [] senza terminazione</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Commento (?#...) senza terminazione</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Annulla il ritorno a capo per tutti gli argomenti</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Annulla il ritorno a capo per tutti i parametri</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Annulla il ritorno a capo e imposta il rientro per tutti gli argomenti</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Annulla il ritorno a capo e imposta rientro per tutti i parametri</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Annulla il ritorno a capo per l'elenco di argomenti</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Annulla il ritorno a capo per la catena di chiamate</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Annulla il ritorno a capo per l'espressione</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Annulla il ritorno a capo per l'elenco di parametri</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Usa il corpo del blocco per le espressioni lambda</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Usa il corpo dell'espressione per le espressioni lambda</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Usa stringa verbatim interpolata</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Valore:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Avviso: durante la conversione dell'istruzione la semantica può cambiare.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Imposta il ritorno a capo e allinea la catena di chiamate</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Imposta il ritorno a capo e allinea l'espressione</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Imposta il ritorno a capo e allinea la catena di chiamate lunga</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Imposta il ritorno a capo alla catena di chiamate</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Imposta il ritorno a capo a ogni argomento</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Imposta il ritorno a capo a ogni parametro</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Imposta il ritorno a capo all'espressione</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Imposta il ritorno a capo all'elenco di argomenti lungo</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Imposta il ritorno a capo alla catena di chiamate lunga</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Imposta il ritorno a capo all'elenco di parametri lungo</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Ritorno a capo</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Per cambiare contesto, si può usare la barra di spostamento.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}' non può essere null o vuoto.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}' non può essere Null o uno spazio vuoto.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">'{0}' non è Null in questo punto.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">'{0}' può essere Null in questo punto.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">Decimilionesimi di secondo</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "fffffff" rappresenta le sette cifre più significative della frazione di secondi, ovvero i decimilionesimi di secondo in un valore di data e ora. Anche se è possibile visualizzare i decimilionesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">Decimilionesimi di secondo (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "FFFFFFF" rappresenta le sette cifre più significative della frazione di secondi, ovvero i decimilionesimi di secondo in un valore di data e ora. Gli zeri finali o le cifre con sette zeri non vengono tuttavia visualizzati. Anche se è possibile visualizzare i decimilionesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">Milionesimi di secondo</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "ffffff" rappresenta le sei cifre più significative della frazione di secondi, ovvero i milionesimi di secondo in un valore di data e ora. Anche se è possibile visualizzare i milionesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">Milionesimi di secondo (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "FFFFFF" rappresenta le sei cifre più significative della frazione di secondi, ovvero i milionesimi di secondo in un valore di data e ora. Gli zeri finali o le cifre con sei zeri non vengono tuttavia visualizzati. Anche se è possibile visualizzare i milionesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">Centomillesimi di secondo</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "fffff" rappresenta le cinque cifre più significative della frazione di secondi, ovvero i centomillesimi di secondo in un valore di data e ora. Anche se è possibile visualizzare i centomillesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">Centomillesimi di secondo (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "FFFFF" rappresenta le cinque cifre più significative della frazione di secondi, ovvero i centomillesimi di secondo in un valore di data e ora. Gli zeri finali o le cifre con cinque zeri non vengono tuttavia visualizzati. Anche se è possibile visualizzare i centomillesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">Decimillesimi di secondo</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "ffff" rappresenta le quattro cifre più significative della frazione di secondi, ovvero i decimillesimi di secondo in un valore di data e ora. Anche se è possibile visualizzare i decimillesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">Decimillesimi di secondo (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">L'identificatore di formato personalizzato "FFFF" rappresenta le quattro cifre più significative della frazione di secondi, ovvero i decimillesimi di secondo in un valore di data e ora. Gli zeri finali o le cifre con quattro zeri non vengono tuttavia visualizzati. Anche se è possibile visualizzare i decimillesimi di un componente relativo ai secondi di un valore di ora, tale valore potrebbe non essere significativo. La precisione dei valori di data e ora dipende dalla risoluzione del clock di sistema. Nei sistemi operativi Windows NT 3.5 e versioni successive e Windows Vista la risoluzione del clock è di circa 10-15 millisecondi.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">Millisecondi</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">L'identificatore di formato personalizzato "fff" rappresenta le tre cifre più significative della frazione di secondi, ovvero i millisecondi in un valore di data e ora.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">Millisecondi (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">L'identificatore di formato personalizzato "FFF" rappresenta le tre cifre più significative della frazione di secondi, ovvero i millisecondi in un valore di data e ora. Gli zeri finali o le cifre con tre zeri non vengono tuttavia visualizzati.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">Centesimi di secondo</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">L'identificatore di formato personalizzato "ff" rappresenta le due cifre più significative della frazione di secondi, ovvero i centesimi di secondo in un valore di data e ora.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">Centesimi di secondo (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">L'identificatore di formato personalizzato "FF" rappresenta le due cifre più significative della frazione di secondi, ovvero i centesimi di secondo in un valore di data e ora. Gli zeri finali o le cifre con due zeri non vengono tuttavia visualizzati.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">Decimi di secondo</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">Decimi di secondo (diversi da zero)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">L'identificatore di formato personalizzato "F" rappresenta la cifra più significativa della frazione di secondi, ovvero i decimi di secondo in un valore di data e ora. Se la cifra è zero, non viene visualizzato nulla. Se l'identificatore di formato "F" viene usato senza altri identificatori di formato, viene interpretato come l'identificatore di formato di data e ora standard "F". Il numero di identificatoti di formato "F" usati con il metodo ParseExact, TryParseExact, ParseExact o TryParseExact indica il numero massimo di cifre più significative della frazione di secondi che possono essere presenti per analizzare correttamente la stringa.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">Orario in formato 12 ore (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">L'identificatore di formato personalizzato "h" rappresenta l'ora come numero compreso tra 1 e 12, ovvero l'ora rappresentata nell'orario in formato 12 ore in base al quale il conteggio riparte da mezzanotte o da mezzogiorno. Una particolare ora dopo mezzanotte non è distinguibile dalla stessa ora dopo mezzogiorno. L'ora non viene arrotondata e se è costituita da una singola cifra viene formattata senza zero iniziale. Se viene, ad esempio, specificata un'ora equivalente alle 5:43 della mattina o del pomeriggio, tramite questo identificatore di formato personalizzato viene visualizzato "5". Se l'identificatore di formato "h" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard e viene generato un evento FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">Orario in formato 12 ore (2 cifre)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">L'identificatore di formato personalizzato "hh" (più qualsiasi numero di identificatori "h" aggiuntivi) rappresenta l'ora come numero compreso tra 01 e 12, ovvero l'ora rappresentata nell'orario in formato 12 ore in base al quale il conteggio riparte da mezzanotte o da mezzogiorno. Una particolare ora dopo mezzanotte non è distinguibile dalla stessa ora dopo mezzogiorno. L'ora non viene arrotondata e se è costituita da una singola cifra viene formattata con uno zero iniziale. Se viene, ad esempio, specificata un'ora equivalente alle 5:43 della mattina o del pomeriggio, tramite questo identificatore di formato viene visualizzato "05".</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">Orario in formato 24 ore (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">L'identificatore di formato personalizzato "H" rappresenta l'ora come numero compreso tra 0 e 23, ovvero l'ora rappresentata nell'orario in formato 24 ore a base zero in base al quale il conteggio riparte da mezzanotte. Un'ora costituita da una singola cifra viene formattata senza zero iniziale. Se l'identificatore di formato "H" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard e viene generato un evento FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">Orario in formato 24 ore (2 cifre)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">L'identificatore di formato personalizzato "HH" (più qualsiasi numero di identificatori "H" aggiuntivi) rappresenta l'ora come numero compreso tra 00 e 23, ovvero l'ora rappresentata nell'orario in formato 24 ore a base zero in base al quale il conteggio riparte da mezzanotte. Un'ora costituita da una singola cifra viene formattata con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">codice</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">Separatore di data</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">L'identificatore di formato personalizzato "/" rappresenta il separatore di data usato per distinguere anni, mesi e giorni. Il separatore di data localizzato appropriato viene recuperato dalla proprietà DateTimeFormatInfo.DateSeparator delle impostazioni cultura correnti o specificate. Nota: per modificare il separatore di data per una particolare stringa di data e ora, specificare il carattere separatore all'interno di un delimitatore di stringa letterale. La stringa con formato personalizzato mm'/'dd'/'yyyy, ad esempio, produce una stringa in cui come separatore di data viene sempre usato "/". Per cambiare il separatore di data per tutte le date per le impostazioni cultura, modificare il valore della proprietà DateTimeFormatInfo.DateSeparator per le impostazioni cultura correnti oppure creare un'istanza di un oggetto DateTimeFormatInfo, assegnare il carattere alla relativa proprietà DateSeparator e chiamare un overload del metodo di formattazione che include un parametro IFormatProvider. Se l'identificatore di formato "/" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard e viene generato un evento FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">Giorno del mese (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">L'identificatore di formato personalizzato "d" rappresenta il giorno del mese come numero compreso tra 1 e 31. Un giorno a una sola cifra viene formattato senza uno zero iniziale. Se l'identificatore di formato "d" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard "d".</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">Giorno del mese (2 cifre)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">La stringa di formato personalizzata "dd" rappresenta il giorno del mese come numero compreso tra 01 e 31. Un giorno a una sola cifra viene formattato con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">Giorno della settimana (abbreviato)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">L'identificatore di formato personalizzato "ddd" rappresenta il nome abbreviato del giorno della settimana. Il nome abbreviato localizzato del giorno della settimana viene recuperato dalla proprietà DateTimeFormatInfo.AbbreviatedDayNames delle impostazioni cultura correnti o specificate.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">Giorno della settimana (esteso)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">L'identificatore di formato personalizzato "dddd" (più qualsiasi numero di identificatori "d" aggiuntivi) rappresenta il nome esteso del giorno della settimana. Il nome localizzato del giorno della settimana viene recuperato dalla proprietà DateTimeFormatInfo.DayNames delle impostazioni cultura correnti o specificate.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">variabile discard</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">da metadati</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">Ora estesa e data completa</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">L'identificatore di formato standard "F" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.FullDateTimePattern corrente. Ad esempio, la stringa di formato personalizzata per le impostazioni cultura inglese non dipendenti da paese/area geografica è "dddd, dd MMMM yyyy HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">Ora breve e data estesa</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Identificatore di formato di ora breve e data estesa ("f") L'identificatore di formato standard "f" rappresenta una combinazione degli schemi di data estesa ("D") e ora breve ("t"), separati da uno spazio.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">Ora estesa e data generale</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">L'identificatore di formato standard "G" rappresenta una combinazione degli schemi di data breve ("d") e ora estesa ("T"), separati da uno spazio.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">Ora breve e data generale</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">L'identificatore di formato standard "g" rappresenta una combinazione degli schemi di data breve ("d") e ora breve ("t"), separati da uno spazio.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">overload generico</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">overload generici</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">in {0} ({1} - {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">nell'origine (attributo)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">Data estesa</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">L'identificatore di formato standard "D" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.LongDatePattern corrente. Ad esempio, la stringa di formato personalizzata per le impostazioni cultura inglese non dipendenti da paese/area geografica è "dddd, dd MMMM yyyy".</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">Ora estesa</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">L'identificatore di formato standard "T" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.LongTimePattern di impostazioni cultura specifiche. Ad esempio, la stringa di formato personalizzata per le impostazioni cultura inglese non dipendenti da paese/area geografica è "HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">Minuto (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">L'identificatore di formato personalizzato "m" rappresenta i minuti come numero compreso tra 0 e 59. Tali minuti rappresentano il numero intero di minuti passati dall'ultima ora. Un minuto costituito da una singola cifra viene formattato senza zero iniziale. Se l'identificatore di formato "m" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard "m".</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">Minuto (2 cifre)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">L'identificatore di formato personalizzato "mm" (più qualsiasi numero di identificatori "m" aggiuntivi) rappresenta i minuti come numero compreso tra 00 e 59. Tali minuti rappresentano il numero intero di minuti passati dall'ultima ora. Un minuto costituito da una singola cifra viene formattato con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">Mese (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">L'identificatore di formato personalizzato "M" rappresenta il mese come numero compreso tra 1 e 12 (o tra 1 e 13 per i calendari con 13 mesi). Un mese a una sola cifra viene formattato senza zero iniziale. Se l'identificatore di formato "M" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard "M".</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">Mese (2 cifre)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">L'identificatore di formato personalizzato "MM" rappresenta il mese come numero compreso tra 01 e 12 (o tra 1 e 13 per i calendari con 13 mesi). Un mese a una sola cifra viene formattato con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">Mese (abbreviato)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">L'identificatore di formato personalizzato "MMM" rappresenta il nome abbreviato del mese. Il nome abbreviato localizzato del mese viene recuperato dalla proprietà DateTimeFormatInfo.AbbreviatedMonthNames delle impostazioni cultura correnti o specificate.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">Giorno del mese</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">L'identificatore di formato standard "M" o "m" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.MonthDayPattern corrente. Ad esempio, la stringa di formato personalizzata per le impostazioni cultura inglese non dipendenti da paese/area geografica è "MMMM dd".</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">Mese (esteso)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">L'identificatore di formato personalizzato "MMMM" rappresenta il nome esteso del mese. Il nome localizzato del mese viene recuperato dalla proprietà DateTimeFormatInfo.MonthNames delle impostazioni cultura correnti o specificate.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">overload</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">overload</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">Parola chiave di {0}</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Incapsula il campo '{0}' (e usa la proprietà)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Incapsula il campo '{0}' (ma continua a usarlo)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Incapsula i campi (e usa la proprietà)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Incapsula i campi (ma continua a usarli)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Non è possibile estrarre l'interfaccia: la selezione non si trova all'interno di una classe/interfaccia/struct.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Non è possibile estrarre l'interfaccia: il tipo non contiene membri che possono essere estratti in un'interfaccia.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">non è possibile costruire l'albero finale</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Il tipo o il tipo restituito dei parametri non può essere un tipo anonimo: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">La selezione non contiene istruzioni attive.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">La selezione contiene un errore o un tipo sconosciuto.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Il parametro di tipo '{0}' è nascosto da un altro parametro di tipo '{1}'.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">Nel codice selezionato viene usato l'indirizzo di una variabile.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">L'assegnazione a campi di sola lettura deve essere effettuata in un costruttore: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">il codice generato si sovrappone alla parte nascosta del codice</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Aggiungi i parametri facoltativi a '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Aggiungi i parametri a '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Genera il costruttore delegante '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Genera il costruttore '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Genera il costruttore per l'assegnazione dei campi '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Genera Equals e GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Genera Equals(oggetto)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Genera GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Genera il costruttore in '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Genera tutto</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Genera il membro di enumerazione '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Genera la costante '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Genera la proprietà di sola lettura '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Genera la proprietà '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Genera il campo di sola lettura '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Genera il campo '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Genera l'elemento '{0}' locale</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Genera l'elemento {0} '{1}' nel nuovo file</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Genera l'elemento {0} '{1}' annidato</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Spazio dei nomi globale</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Implementa l'interfaccia in modo astratto</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Implementa l'interfaccia tramite '{0}'</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Implementa l'interfaccia</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Introduce il campo per '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Introduce l'elemento locale per '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Introduce la costante per '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Introduce la costante locale per '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Introduce il campo per tutte le occorrenze di '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Introduce l'elemento locale per tutte le occorrenze di '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Introduce la costante per tutte le occorrenze di '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Introduce la costante locale per tutte le occorrenze di '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Introduce la variabile di query per tutte le occorrenze di '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Introduce la variabile di query per '{0}'</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Tipi anonimi:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">è</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Rappresenta un oggetto le cui operazioni verranno risolte in fase di esecuzione.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">costante</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">campo</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">costante locale</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">variabile locale</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">Etichetta</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">Periodo/era</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Gli identificatori di formato personalizzati "g" o "gg" (più qualsiasi numero di identificatori "g" aggiuntivi) rappresentano il periodo o l'era, ad esempio D.C. Questo identificatore viene ignorato dall'operazione di formattazione se la data da formattare non è associata a una stringa di periodo o di era. Se l'identificatore di formato "g" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard "g".</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">variabile di intervallo</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">parametro</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">in</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Riepilogo:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Variabili locali e parametri</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Parametri di tipo:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Valori restituiti:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Eccezioni:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Commenti:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">la generazione dell'origine per i simboli di questo tipo non è supportata</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">assembly</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">percorso sconosciuto</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Tipo di membro di interfaccia imprevisto: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Tipo di simbolo sconosciuto</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Genera la proprietà astratta '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Genera il metodo astratto '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Genera il metodo '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">L'assembly richiesto è già stato caricato da '{0}'.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Per il simbolo non esiste un'icona.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Il metodo asincrono non può contenere parametri ref/out: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Il membro è definito nei metadati.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">È possibile modificare solo la firma di un costruttore, un indicizzatore, un metodo o un delegato.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Nei metadati di questo simbolo sono presenti definizioni o riferimenti correlati. Se si modifica la firma, potrebbero verificarsi errori di compilazione. Continuare?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Modifica firma...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Genera nuovo tipo...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Errore dell'analizzatore diagnostico utente.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">L'analizzatore '{0}' ha generato un'eccezione di tipo '{1}'. Messaggio: '{2}'.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">L'analizzatore '{0}' ha generato l'eccezione seguente: '{1}'.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Semplifica nomi</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Semplifica accesso membri</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Rimuovi qualificazione</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Si è verificato un errore sconosciuto</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Disponibile</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Non disponibile ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">nell'origine</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">nel file di eliminazione</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Rimuovi eliminazione {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Rimuovi eliminazione</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;In sospeso&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Nota: premere due volte TAB per inserire il frammento di codice '{0}'.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Implementa l'interfaccia in modo esplicito con il criterio Dispose</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Implementa l'interfaccia con il criterio Dispose</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Valuta di nuovo {0} (attualmente '{1}')</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">L'argomento non può contenere un elemento Null.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">L'argomento non può essere vuoto.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">La diagnostica restituita con ID '{0}' non è supportata dall'analizzatore.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Calcolo di tutte le occorrenze da correggere nel codice...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Correggi tutte le occorrenze</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Documento</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">PROGETTO</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Soluzione</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: eliminare lo stato gestito (oggetti gestiti)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: impostare campi di grandi dimensioni su Null</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Compilatore</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">In tempo reale</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">valore di enumerazione</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">campo const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">metodo</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">operatore</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">costruttore</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">proprietà automatica</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">proprietà</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">funzione di accesso eventi</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">Data/ora RFC 1123</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">L'identificatore di formato standard "R" o "r" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.RFC1123Pattern corrente. Lo schema rispecchia uno standard definito e la proprietà è di sola lettura. Sarà quindi sempre lo stesso, indipendentemente dalle impostazioni cultura usate o dal provider di formato specificato. La stringa di formato personalizzata è "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". Quando si usa questo identificatore di formato standard, la formattazione o l'operazione di analisi usa sempre le impostazioni cultura inglese non dipendenti da paese/area geografica.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">Data/ora round trip</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">L'identificatore di formato standard "O" o "o" rappresenta una stringa di formato di data e ora personalizzata con uno schema che mantiene le informazioni sul fuso orario e crea una stringa di risultato conforme allo standard ISO 8601. Per i valori DateTime, questo identificatore di formato è progettato in modo da mantenere i valori di data e ora insieme alla proprietà DateTime.Kind nel testo. È possibile analizzare di nuovo la stringa formattata usando il metodo DateTime.Parse(String, IFormatProvider, DateTimeStyles) o DateTime.ParseExact se il parametro styles è impostato su DateTimeStyles.RoundtripKind. L'identificatore di formato standard "O" o "o" corrisponde alla stringa di formato personalizzata "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" per valori DateTime e alla stringa di formato personalizzata "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" per valori DateTimeOffset. In questa stringa le coppie di virgolette singole che delimitano singoli caratteri, ad esempio trattini, due punti e la lettera "T", indicano che il singolo carattere è un valore letterale che non può essere modificato. Gli apostrofi non vengono visualizzati nella stringa di output. L'identificatore di formato standard "O" o "o" (e la stringa di formato personalizzata "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK") sfrutta i tre modi in cui lo standard ISO 8601 rappresenta le informazioni sul fuso orario per mantenere la proprietà Kind dei valori DateTime: Il componente relativo al fuso orario dei valori di data e ora DateTimeKind.Local rappresenta la differenza dall'ora UTC (ad esempio +01:00, -07:00). Anche tutti i valori DateTimeOffset sono rappresentati in questo formato. Il componente relativo al fuso orario dei valori di data e ora DateTimeKind.Utc usa "Z" (che corrisponde alla differenza zero) per rappresentare l'ora UTC. I valori di data e ora DateTimeKind.Unspecified non includono informazioni sul fuso orario. Dal momento che l'identificatore di formato standard "O" o "o" è conforme a uno standard internazionale, per l'operazione di formattazione o di analisi che usa l'identificatore vengono usate sempre le impostazioni cultura inglese non dipendenti da paese/area geografica e il calendario gregoriano. Le stringhe passate ai metodi Parse, TryParse, ParseExact e TryParseExact di DateTime e DateTimeOffset possono essere analizzate usando l'identificatore di formato "O" o "o" se sono in uno di questi formati. Nel caso degli oggetti DateTime, l'overload di analisi chiamato deve anche includere un parametro styles con un valore DateTimeStyles.RoundtripKind. Tenere presente che se si chiama un metodo di analisi con la stringa di formato personalizzata che corrisponde all'identificatore di formato "O" o "o", non si otterranno gli stessi risultati di "O" o "o". Il motivo è che i metodi di analisi che usano una stringa di formato personalizzata non possono analizzare la rappresentazione in formato stringa di valori di data e ora in cui manca un componente di fuso orario o che usano "Z" per indicare l'ora UTC.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">Secondo (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">L'identificatore di formato personalizzato "s" rappresenta i secondi come numero compreso tra 0 e 59. Il risultato rappresenta il numero intero di secondi passati dall'ultimo minuto. Un secondo costituito da una singola cifra viene formattato senza zero iniziale. Se l'identificatore di formato "s" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard "s".</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">Secondo (2 cifre)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">L'identificatore di formato personalizzato "ss" (più qualsiasi numero di identificatori "s" aggiuntivi) rappresenta i secondi come numero compreso tra 00 e 59. Il risultato rappresenta il numero intero di secondi passati dall'ultimo minuto. Un secondo costituito da una singola cifra viene formattato con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">Data breve</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">L'identificatore di formato standard "d" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.ShortDatePattern di impostazioni cultura specifiche. Ad esempio, la stringa di formato personalizzata restituita dalla proprietà ShortDatePattern delle impostazioni cultura inglese non dipendenti da paese/area geografica è "MM/dd/yyyy".</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">Ora breve</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">L'identificatore di formato standard "t" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.ShortTimePattern corrente. Ad esempio, la stringa di formato personalizzata per le impostazioni cultura inglese non dipendenti da paese/area geografica è "HH:mm".</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">Data/ora ordinabile</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">L'identificatore di formato standard "s" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.SortableDateTimePattern corrente. Lo schema rispecchia uno standard definito (ISO 8601) e la proprietà è di sola lettura. Sarà quindi sempre lo stesso, indipendentemente dalle impostazioni cultura usate o dal provider di formato specificato. La stringa di formato personalizzata è "yyyy'-'MM'-'dd'T'HH':'mm':'ss". L'identificatore di formato "s" ha lo scopo di produrre stringhe di risultati organizzate coerentemente in ordine crescente o decrescente, in base ai valori di data e ora. Di conseguenza, anche se l'identificatore di formato standard "s" rappresenta un valore di data e ora in un formato coerente, l'operazione di formattazione non modifica il valore dell'oggetto data e ora che viene formattato per rispecchiare la proprietà DateTime.Kind o il valore DateTimeOffset.Offset corrispondente. Ad esempio, le stringhe di risultati generate dalla formattazione dei valori di data e ora 2014-11-15T18:32:17+00:00 e 2014-11-15T18:32:17+08:00 sono identiche. Quando si usa questo identificatore di formato standard, la formattazione o l'operazione di analisi usa sempre le impostazioni cultura inglese non dipendenti da paese/area geografica.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">costruttore statico</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'L'elemento 'symbol' non può essere uno spazio dei nomi.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">Separatore di ora</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">L'identificatore di formato personalizzato ":" rappresenta il separatore di ora che viene usato per distinguere ore, minuti e secondi. Il separatore di ora localizzato appropriato viene recuperato dalla proprietà DateTimeFormatInfo.TimeSeparator delle impostazioni cultura correnti o specificate. Nota: per modificare il separatore di ora per una particolare stringa di data e ora, specificare il carattere separatore all'interno di un delimitatore di stringa letterale. La stringa con formato personalizzato hh'_'dd'_'ss, ad esempio, produce una stringa in cui come separatore di ora viene sempre usato "_" (carattere di sottolineatura). Per cambiare il separatore di ora per tutte le date per impostazioni cultura, modificare il valore della proprietà DateTimeFormatInfo.TimeSeparator per le impostazioni cultura correnti oppure creare un'istanza di un oggetto DateTimeFormatInfo, assegnare il carattere alla relativa proprietà TimeSeparator e chiamare un overload del metodo di formattazione che include un parametro IFormatProvider. Se l'identificatore di formato ":" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard e viene generato un evento FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">Fuso orario</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">L'identificatore di formato personalizzato "K" rappresenta le informazioni sul fuso orario di un valore di data e ora. Quando questo identificatore di formato viene usato con valori DateTime, la stringa di risultato viene definita dal valore della proprietà DateTime.Kind: Per il fuso orario locale (un valore della proprietà DateTime.Kind uguale a DateTimeKind.Local) questo identificatore è equivalente all'identificatore "zzz" e genera una stringa di risultato che contiene la differenza locale dall'ora UTC (Coordinated Universal Time), ad esempio "-07.00". Per un'ora UTC (un valore della proprietà DateTime.Kind uguale a DateTimeKind.Utc) la stringa di risultato include un carattere "Z" per rappresentare una data UTC. Per un'ora di un fuso orario non specificato (un'ora la cui proprietà DateTime.Kind è uguale a DateTimeKind.Unspecified) il risultato è equivalente a String.Empty. Per i valori DateTimeOffset, l'identificatore di formato "K" è equivalente all'identificatore di formato "zzz" e genera una stringa di risultato che contiene la diffenza dall'ora UTC del valore DateTimeOffset. Se l'identificatore di formato "K" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard e viene generato un evento FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">vincolo di tipo</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">parametro di tipo</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">attributo</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Sostituisci '{0}' e '{1}' con la proprietà</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Sostituisci '{0}' con la proprietà</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Metodo con riferimenti impliciti</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Genera il tipo '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Genera l'elemento {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Cambia '{0}' in '{1}'.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Non è possibile sostituire il metodo non richiamato con la proprietà.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">È possibile sostituire con una proprietà solo i metodi con un singolo argomento non corrispondente a una dichiarazione di variabile out.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Non è possibile creare un'istanza dell'analizzatore {0} da {1}: {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">L'assembly {0} non contiene analizzatori.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Non è possibile caricare l'assembly dell'analizzatore {0}: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Imposta il metodo come sincrono</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">da {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Trova e installa l'ultima versione</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Usa la versione locale '{0}'</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Usa la versione '{1}' di '{0}' installata in locale Questa versione è usata {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Trova e installa l'ultima versione di '{0}'</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Installa con Gestione pacchetti...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Installa '{0} {1}'</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Installa la versione '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Genera la variabile '{0}'</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Classi</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Costanti</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Delegati</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Enumerazioni</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Eventi</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Metodi di estensione</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Campi</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Interfacce</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Variabili locali</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Metodi</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Moduli</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Spazi dei nomi</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Proprietà</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Strutture</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parametri:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">L'elemento SignatureHelpItem variadic deve avere almeno un parametro.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Sostituisci '{0}' con il metodo</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Sostituisci '{0}' con i metodi</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Proprietà con riferimenti impliciti</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Non è possibile sostituire in modo sicuro la proprietà con una chiamata a un metodo</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Converti in stringa interpolata</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Sposta il tipo in {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Rinomina il file in {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Rinomina il tipo in {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Rimuovi tag</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Aggiungi nodi di parametro mancanti</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Rendi asincrono l'ambito contenitore</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Rendi asincrono l'ambito contenitore (restituisci Task)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Sconosciuto)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Usa il tipo di framework</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Installa il pacchetto '{0}'</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">progetto {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">Qualifica completamente '{0}'</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Rimuove il riferimento a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Parole chiave</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Frammenti</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Tutto minuscole</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Tutto maiuscole</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Prima lettera maiuscola</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Notazione Pascal</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Rimuovi il documento '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Aggiungi il documento '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Aggiungi il nome di argomento '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Accetta '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Accetta entrambi</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Accetta inferiore</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Accetta superiore</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Rimuovi la variabile non usata</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Converti in binario</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Converti in decimale</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Converti in hex</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Separa le migliaia</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Separa le parole</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Separa i nibble</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Rimuovi i separatori</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Aggiungi il parametro a '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Genera il costruttore...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Selezionare i membri da usare come parametri del costruttore</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Selezionare i membri da usare in Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Genera gli override...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Selezionare i membri di cui eseguire l'override</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Aggiungi il controllo Null</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Aggiungi il controllo 'string.IsNullOrEmpty'</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Aggiungi il controllo 'string.IsNullOrWhiteSpace'</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Inizializza il campo '{0}'</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Inizializza la proprietà '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Aggiungi i controlli Null</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Genera gli operatori</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Implementa {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">Il percorso di origine della diagnostica restituita '{0}' è incluso nel file '{1}', che non fa parte della compilazione da analizzare.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">Il percorso di origine '{1}' della diagnostica restituita '{0}' è incluso nel file '{2}', che non è presente nel file specificato.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">in {0} (progetto {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Aggiungi i modificatori di accessibilità</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Sposta la dichiarazione accanto al riferimento</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Converti in proprietà completa</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Avviso: il metodo esegue l'override del simbolo dei metadati</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Usa {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Aggiungi il nome di argomento '{0}' (inclusi gli argomenti finali)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">funzione locale</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">indicizzatore</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Tipo di alias '{0}' ambiguo</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Avviso: la raccolta è stata modificata durante l'iterazione.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Avviso: la variabile di iterazione ha superato il limite della funzione.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Avviso: è possibile che la raccolta venga modificata durante l'iterazione.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">Data/ora estesa universale</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">L'identificatore di formato standard "U" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.FullDateTimePattern di impostazioni cultura specifiche. Lo schema è uguale a quello di "F". Il valore DateTime, tuttavia, viene convertito automaticamente in formato UTC prima di essere formattato.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">Data/ora ordinabile universale</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">L'identificatore di formato standard "u" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.UniversalSortableDateTimePattern corrente. Lo schema rispecchia uno standard definito e la proprietà è di sola lettura. Sarà quindi sempre lo stesso, indipendentemente dalle impostazioni cultura usate o dal provider di formato specificato. La stringa di formato personalizzata è "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". Quando si usa questo identificatore di formato standard, la formattazione o l'operazione di analisi usa sempre le impostazioni cultura inglese non dipendenti da paese/area geografica. Anche se la stringa di risultato deve esprimere un'ora in formato UTC (Coordinated Universal Time), non viene eseguita alcuna conversione del valore DateTime originale durante l'operazione di formattazione. È quindi necessario convertire un valore DateTime in formato UTC chiamando il metodo DateTime.ToUniversalTime prima di eseguire l'operazione di formattazione.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">aggiornamento degli utilizzi nel membro contenitore</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">aggiornamento degli utilizzi nel progetto contenitore</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">aggiornamento degli utilizzi nel tipo contenitore</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">aggiornamento degli utilizzi nei progetti dipendenti</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">Differenza dall'ora UTC in ore e minuti</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Con valori DateTime, l'identificatore di formato personalizzato "zzz" rappresenta la differenza dall'ora UTC con segno del fuso orario del sistema operativo locale, misurata in ore e minuti. Non rispecchia il valore della proprietà DateTime.Kind di un'istanza. Per questo motivo, non è consigliabile usare l'identificatore di formato "zzz" con valori DateTime. Con valori DateTimeOffset, questo identificatore di formato rappresenta la differenza dall'ora UTC del valore DateTimeOffset in ore e minuti. La differenza viene sempre visualizzata con un segno iniziale. Un segno più (+) indica le ore in più e un segno meno (-) le ore in meno rispetto all'ora UTC. Un valore di differenza a una sola cifra viene formattato con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">Differenza dall'ora UTC in ore (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Con valori DateTime, l'identificatore di formato personalizzato "z" rappresenta la differenza dall'ora UTC (Coordinated Universal Time) con segno del fuso orario del sistema operativo locale, misurata in ore. Non rispecchia il valore della proprietà DateTime.Kind di un'istanza. Per questo motivo, non è consigliabile usare l'identificatore di formato "z" con valori DateTime. Con valori DateTimeOffset, questo identificatore di formato rappresenta la differenza dall'ora UTC del valore DateTimeOffset in ore. La differenza viene sempre visualizzata con un segno iniziale. Un segno più (+) indica le ore in più e un segno meno (-) le ore in meno rispetto all'ora UTC. Un valore di differenza a una sola cifra viene formattato senza zero iniziale. Se l'identificatore di formato "z" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard e viene generato un evento FormatException.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">Differenza dall'ora UTC in ore (2 cifre)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Con valori DateTime, l'identificatore di formato personalizzato "zz" rappresenta la differenza dall'ora UTC con segno del fuso orario del sistema operativo locale, misurata in ore. Non rispecchia il valore della proprietà DateTime.Kind di un'istanza. Per questo motivo, non è consigliabile usare l'identificatore di formato "zz" con valori DateTime. Con valori DateTimeOffset, questo identificatore di formato rappresenta la differenza dall'ora UTC del valore DateTimeOffset in ore. La differenza viene sempre visualizzata con un segno iniziale. Un segno più (+) indica le ore in più e un segno meno (-) le ore in meno rispetto all'ora UTC. Un valore di differenza a una sola cifra viene formattato con uno zero iniziale.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">Intervallo [x-y] in ordine inverso</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">Anno (1-2 cifre)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">L'identificatore di formato personalizzato "y" rappresenta l'anno come numero a una cifra o a due cifre. Se l'anno ha più di due cifre, nel risultato vengono visualizzate solo le due cifre di ordine inferiore. Se la prima cifra di un anno a due cifre inizia con zero (ad esempio, 2008), il numero viene formattato senza zero iniziale. Se l'identificatore di formato "y" viene usato senza altri identificatori di formato personalizzati, viene interpretato come l'identificatore di formato di data e ora standard "y".</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">Anno (2 cifre)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">L'identificatore di formato personalizzato "yy" rappresenta l'anno come numero a due cifre. Se l'anno ha più di due cifre, nel risultato vengono visualizzate solo le due cifre di ordine inferiore. Se l'anno a due cifre ha meno di due cifre significative, prima del numero vengono aggiunti gli zeri necessari per ottenere due cifre. In un'operazione di analisi un anno a due cifre analizzato usando l'identificatore di formato personalizzato "yy" viene interpretato in base alla proprietà Calendar.TwoDigitYearMax del calendario corrente del provider di formato. Nell'esempio seguente viene analizzata la rappresentazione di stringa di una data con un anno a due cifre usando il calendario gregoriano predefinito delle impostazioni cultura en-US, che, in questo caso, sono le impostazioni cultura correnti. Modifica quindi l'oggetto CultureInfo delle impostazioni cultura correnti per usare un oggetto GregorianCalendar la cui proprietà TwoDigitYearMax è stata modificata.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">Anno (3-4 cifre)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">L'identificatore di formato personalizzato "yyy" rappresenta l'anno con un minimo di tre cifre. Se l'anno ha più di tre cifre significative, queste vengono incluse nella stringa di risultato. Se l'anno ha meno di tre cifre, prima del numero vengono aggiunti gli zeri necessari per ottenere tre cifre.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">Anno (4 cifre)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">L'identificatore di formato personalizzato "yyyy" rappresenta l'anno con un minimo di quattro cifre. Se l'anno ha più di quattro cifre significative, queste vengono incluse nella stringa di risultato. Se l'anno ha meno di quattro cifre, prima del numero vengono aggiunti gli zeri necessari per ottenere quattro cifre.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">Anno (5 cifre)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">L'identificatore di formato personalizzato "yyyyy" (più qualsiasi numero di identificatori "y" aggiuntivi) rappresenta l'anno con un minimo di cinque cifre. Se l'anno ha più di cinque cifre significative, queste vengono incluse nella stringa di risultato. Se l'anno ha meno di cinque cifre, prima del numero vengono aggiunti gli zeri necessari per ottenere cinque cifre. Se sono presenti identificatori "y" aggiuntivi, prima del numero vengono aggiunti gli zeri necessari per ottenere il numero di identificatori "y".</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">Anno e mese</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">L'identificatore di formato standard "Y" o "y" rappresenta una stringa di formato di data e ora personalizzata definita dalla proprietà DateTimeFormatInfo.YearMonthPattern di impostazioni cultura specifiche. Ad esempio, la stringa di formato personalizzata per le impostazioni cultura inglese non dipendenti da paese/area geografica è "yyyy MMMM".</target> <note /> </trans-unit> </body> </file> </xliff>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/xlf/FeaturesResources.ja.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="ja" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (短縮)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">"t" カスタム書式指定子は、AM/PM 指定子の最初の文字を表します。ローカライズされた適切な指定子は、現在または特定のカルチャの DateTimeFormatInfo.AMDesignator または DateTimeFormatInfo.PMDesignator プロパティから取得されます。AM 指定子は、0:00:00 (深夜) から 11:59:59.999 までのすべての時刻に使用されます。PM 指定子は、12:00:00 (正午) から 23:59:59.999 までのすべての時刻に使用されます。 "t" 書式指定子がその他のカスタム書式指定子なしで使用されている場合、"t" 標準日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (完全)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">"tt" カスタム書式指定子 (任意の数の "t" 指定子を追加できます) は、AM/PM 指定子全体を表します。ローカライズされた適切な指定子は、現在または特定のカルチャの DateTimeFormatInfo.AMDesignator または DateTimeFormatInfo.PMDesignator プロパティから取得されます。AM 指定子は、0:00:00 (深夜) から 11:59:59.999 までのすべての時刻に使用されます。PM 指定子は、12:00:00 (正午) から 23:59:59.999 までのすべての時刻に使用されます。 "tt" 指定子は、AM と PM を区別するためにこれが必要な言語でお使いください。たとえば、日本語の場合、AM と PM の指定子は、最初の文字ではなく、2 番目の文字が異なります。</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">減算は、文字クラスの最後の要素でなければなりません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">'DebuggerDisplay' 属性の追加</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">明示的なキャストの追加</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">メンバー名を追加します</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">すべてのパラメーターに対して null チェックを追加する</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">省略可能なパラメーターをコンストラクターに追加する</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">パラメーターを '{0}' に追加します (オーバーライド/実装も行います)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">パラメーターをコンストラクターに追加する</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">プロジェクト参照を '{0}' に追加します。</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">参照を '{0}' に追加します。</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">アクションは空にできません。</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">タプル要素名 '{0}' を追加します</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">折り返された引数を揃える</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">折り返されたパラメーターを調整します</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">選択条件をコメントにできません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">選択条件が捕捉されないため、名前を指定できません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">ファイル ヘッダーの基本設定を適用する</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">オブジェクト/コレクションの初期化の基本設定を適用します</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">待機中のタスクから '{0}' が返されました</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">待機中のタスクは値を返しません</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">アクセス不可能な未実装のメンバーが基底クラスに含まれています</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">変更を適用できません。予期しないエラー: '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">文字範囲にクラス \{0} を含めることはできません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">キャプチャ グループ番号は Int32.MaxValue 以下でなければなりません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">キャプチャ番号を 0 にすることはできません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;推測する&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;省略&gt;</target> <note /> </trans-unit> <trans-unit id="Change_namespace_to_0"> <source>Change namespace to '{0}'</source> <target state="translated">名前空間を '{0}' に変更します</target> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">グローバル名前空間に変更します</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">例外で停止中は変更できません</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">プロジェクト '{0}' で行った変更は、アプリケーションの実行中には適用されません</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">{0} コード スタイルの構成</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">{0} の重要度の構成</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">すべての '{0}' アナライザーの重要度を構成します</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">すべてのアナライザーの重要度を構成します</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">LINQ に変換</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">'{0}' に追加します</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">クラスに変換</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">LINQ (呼び出し形式) へ変換</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">レコードへの変換</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">レコード構造体に変換する</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">構造体に変換</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">型を '{0}' に変換</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">フィールド '{0}' を作成して割り当てる</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">プロパティ '{0}' を作成して割り当てる</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">残りをフィールドとして作成して割り当てる</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">残りをプロパティとして作成して割り当てる</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">このコードを変更しないでください。クリーンアップ コードを '{0}' メソッドに記述します</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">ソース ファイル '{0}' の現在のコンテンツが、ビルドされたソースと一致しません。デバッグ中にこのファイルに加えられた変更は、そのコンテンツがビルドされたソースと一致するまで適用されません。</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">このサービスを作成したワークスペースにドキュメントが含まれている必要があります</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">エディット コンティニュ</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">エディット コンティニュはモジュールで許可されませんでした</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">プロジェクト '{0}' で変更を行うと、デバッグ セッションは続行されません。{1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">編集して続行は、ランタイムでサポートされていません。</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">ファイル {0}' の読み取り中にエラーが発生しました: {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">CodeFixProvider のインスタンスの作成でエラーが発生しました</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">CodeFixProvider '{0}' のインスタンスの作成でエラーが発生しました</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">例:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">例:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">明示的に実装されたレコードのメソッドには、コンパイラ生成と同等の '{0}' と一致するパラメーター名が必要です</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">基底クラスの抽出...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">インターフェイスの抽出...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">ローカル関数の抽出</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">メソッドを抽出する</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">データ フローを分析できませんでした: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">書式設定を修正します</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">'{0}' の入力ミスを修正します</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">ドキュメントのフォーマット</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">ドキュメントの書式設定</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">比較演算子の生成</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">'{0}' にコンストラクターを生成します (フィールドを含む)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">'{0}' にコンストラクターを生成します (プロパティを含む)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">'{0}' の生成</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">パラメーター '{0}' の生成</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">パラメーター '{0}' の生成 (およびオーバーライド/実装)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">無効\末尾のパターン</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">{x,y} で x &gt; y は無効です</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">'{0}' を明示的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">'{0}' を暗黙的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">抽象クラスの実装</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">すべてのインターフェイスを明示的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">すべてのインターフェイスを暗黙的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">すべてのメンバーを明示的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">明示的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">暗黙的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">残りのメンバーを明示的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">'{0}' を通じて実装します</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">不完全な \p{X} 文字エスケープです</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">すべての引数にインデントを設定します</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">すべてのパラメーターにインデントを設定します</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">折り返された引数にインデントを設定します</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">折り返されたパラメーターにインデントを設定します</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">インライン '{0}'</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">インラインおよび '{0}' の保持</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">16 進数の数字が正しくありません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">定数を導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">フィールドを導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">ローカルを導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">クエリ変数を導入します</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">無効なグループ名: グループ名は単語文字で始める必要があります</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">クラスを 'abstract' にしてください</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">静的にする</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">条件を反転します</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">不正な形式</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">間違った形式の \p{X} エスケープ文字です</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">間違った形式の \k&lt;...&gt;名前付き逆参照です</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">入れ子になった '{0}' ステートメントとマージします</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">次の '{0}' ステートメントとマージします</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">外部の '{0}' ステートメントとマージします</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">前の '{0}' ステートメントとマージします</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} は、読み取りとシーク操作をサポートするストリームを返す必要があります。</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">コントロール文字がありません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">名前空間へのコンテンツの移動...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">ファイルを '{0}' に移動します</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">ファイルをプロジェクト ルート フォルダーに移動します</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">名前空間に移動します...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">入れ子になった量指定子 {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">メソッド呼び出しを挿入する有効な場所がありません。</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">) が足りません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">演算子</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">プロパティ参照を更新できません</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">最大 '{0}' 個をプル</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">'{1}' まで '{0}' をプルします</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">基本型のメンバーをプル...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">メンバーを新しい基底クラスに引き上げます...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">量指定子 {x,y} の前に何もありません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">未定義のグループへの参照</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">未定義のグループ名 {0} への参照</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">未定義のグループ番号 {0} への参照</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">すべての制御文字。これには、Cc、Cf、Cs、Co、Cn カテゴリが含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">すべての制御文字</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">すべての分音記号マーク。これには Mn、Mc、Me カテゴリが含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">すべての分音記号マーク</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">すべての文字。これには、Lu、Ll、Lt、Lm、Lo 文字が含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">すべての文字</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">すべての数。これには、Nd、Nl、No カテゴリが含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">すべての数</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">すべての句読点文字。これには、Pc、Pd、Ps、Pe、Pi、Pf、Po カテゴリが含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">すべての句読点文字</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">すべての区切り文字。これには、Zs、Zl、Zp カテゴリが含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">すべての区切り文字</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">すべての記号。これには、Sm、Sc、Sk、So カテゴリが含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">すべての記号</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">縦棒 (|) を使用して一連のパターンのいずれかに一致させることができます。| 文字を使用して各パターンを区切ります。</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">代替</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">ピリオド文字 (.) は、\n (改行文字 \u000A) 以外の任意の文字に一致します。RegexOptions.Singleline オプションによって正規表現パターンが変更された場合、または . 文字クラスを含むパターンの部分が 's' オプションによって変更された場合、. は任意の文字と一致します。</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">任意の文字</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">アトミック グループ (バックトラッキングしない部分式、アトミック部分式、1 回のみの部分式などの他のいくつかの正規表現エンジンで認識される) はバックトラッキングを無効にします。正規表現エンジンは、入力文字列内のできるだけ多くの文字と一致します。一致する文字列が見つからなくなっても、バックトラッキングして代替パターン一致を試みることはありません。(つまり、部分式はその部分式単体と一致する文字列のみと一致します。部分式とその後続の部分式に基づく文字列の一致は試行しません。) バックトラッキングが成功しないことがわかっている場合は、このオプションを使用することをお勧めします。正規表現エンジンで不要な検索が実行されないようにすることで、パフォーマンスが向上します。</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">アトミック グループ</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">バックスペース文字 \u0008 に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">バックスペース文字</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">グループ定義の均等化では、既に定義されていたグループの定義を削除し、既に定義されていたグループと現在のグループの間隔を現在のグループに格納します。 'name1' は現在のグループ (省略可能) で、'name2' は既に定義されていたグループで、'subexpression' は有効な正規表現パターンです。グループ定義の均等化では、name2 の定義を削除し、name2 と name1 の間隔を name1 に格納します。name2 グループが定義されていない場合、一致はバックトラックされます。name2 の最後の定義を削除すると、name2 の以前の定義がわかるため、このコンストラクトによって、かっこや左右の角かっこなど入れ子になったコンストラクトを追跡するカウンターとして name2 グループのキャプチャのスタックを使用できます。 グループ定義の均等化では、'name2' をスタックとして使用します。入れ子になった各コンストラクトの開始文字が、グループとその Group.Captures コレクションに配置されます。終了文字が一致すると、対応する開始文字がグループから削除され、Captures コレクションが 1 つ減らされます。入れ子になったすべてのコンストラクトの開始文字と終了文字が一致したら、name1 は空になります。</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">グループの均等化</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">ベース グループ</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">ベル (アラーム) 文字 \u0007 に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">ベル文字</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">復帰文字 \u000D に一致します。\r は改行文字 \n と同じではないことにご注意ください。</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">復帰文字</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">文字クラスの減算では、ある文字クラスから別の文字クラスの文字を除外した文字セットが生成されます。 'base_group' は文字グループまたは範囲の肯定または否定です。'excluded_group' コンポーネントは、別の文字グループの肯定または否定、つまり別の文字クラス減算式です (つまり、文字クラス減算式を入れ子にすることができます)。</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">文字クラスの減算</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">文字グループ</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">コメント</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">この言語要素では、最初のパターンに一致するかどうかに応じて、2 つのパターンのいずれかの照合を実行します。 'expression' は照合する最初のパターン、'yes' は expression が一致した場合に照合するパターン、'no' は expression が一致しなかった場合に照合するパターン (省略可能) です。</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">条件式の一致</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">この言語要素では、指定されたキャプチャ グループに一致するかどうかに応じて、2 つのパターンのいずれかを照合します。 'name' はキャプチャ グループの名前 (または番号)、'yes' は 'name' (または 'number') が一致する場合に照合する式です。'no' は一致しない場合に照合する省略可能な式です。</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">条件付きグループの一致</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">\G アンカーは、前回の一致が終了した位置で一致する必要があることを指定します。このアンカーを Regex.Matches メソッドまたは Match.NextMatch メソッドと共に使用すると、すべての一致が連続することになります。</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">連続した一致</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">ASCII 制御文字に一致します。X は制御文字の文字です。たとえば、\cC は CTRL-C を表します。</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">制御文字</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d は任意の 10 進数に一致します。標準 10 進数の 0-9 とその他の文字セットの 10 進数を含む \p{Nd} 正規表現パターンに相当します。 ECMAScript 準拠の動作が指定されている場合、\d は [0-9] と同等です</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">10 進数の文字</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">番号記号 (#) は、正規表現パターンの最後にあるエスケープされていない # 文字から始まり、行の終わりまで続く x モードのコメントを示します。このコンストラクトを使用するには、Regex オブジェクトをインスタンス化するとき、または静的な Regex メソッドを呼び出すときに、x オプションを有効にする (インライン オプションを使用) か、オプション パラメーターに RegexOptions.IgnorePatternWhitespace 値を指定する必要があります。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">行末コメント</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">\z アンカーは、入力文字列の末尾で一致する必要があることを指定します。$ 言語要素と同様に、\z では RegexOptions.Multiline オプションが無視されます。\Z 言語要素とは異なり、\z は文字列末尾にある \n 文字には一致しません。したがって、入力文字列の最後の行にのみ一致することができます。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">文字列の末尾のみ</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">\Z アンカーは、入力文字列の末尾、または入力文字列の末尾にある \n の前で一致する必要があることを指定します。これは $ アンカーと同じですが、\Z では RegexOptions.Multiline オプションが無視される点が異なります。したがって、複数行文字列では、最後の行の末尾か、\n の前の最後の行にのみ一致することができます。 \Z アンカーは \n に一致しますが、\r\n (CR/LF 文字の組み合わせ) には一致しません。CR/LF と一致させるには、\r?\Z を正規表現パターンに含めます。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">文字列の末尾または最後の改行の前</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">$ アンカーは、その前にあるパターンが、入力文字列の末尾、または入力文字列の末尾にある \n の前で一致する必要があることを指定します。RegexOptions.Multiline オプションを指定して $ を使用した場合は、行の末尾でも一致します。 $ アンカーは、\n に一致しますが、\r\n (復帰文字と改行文字の組み合わせ、つまり CR/LF) には一致しません。CR/LF 文字の組み合わせに一致させるには、正規表現パターンに \r?$ を含めます。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">文字列または行の末尾</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">エスケープ文字 \u001B に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">エスケープ文字</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">除外されたグループ</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">式</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">フォーム フィード文字 \u000C に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">フォーム フィード文字</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">このグループ化構成体は、部分式内の指定されたオプションを適用するか無効にします。有効にするオプションは疑問符の後に指定し、無効にするオプションはマイナス記号の後に指定します。許可されているオプションは次のとおりです。 i 大文字と小文字を区別しない一致を使用します。 m ^ と $ は、(入力文字列の先頭および末尾ではなく) 各行の先頭および末尾と一致します。 s 単一行モードを使用します。このモードでは、ピリオド (.) は任意の 1 文字と一致します (\n を除くすべての文字の代用)。 n 名前のないグループをキャプチャしません。(?&lt;name&gt; subexpression) という形式で、 明示的に名前または番号が付加されたグループのみを有効なキャプチャ対象とします。 x エスケープされていない空白をパターンから除外し、 番号記号 (#) の後ろのコメントを有効にします。</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">グループ オプション</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">ASCII 文字に一致します。## は、2 桁の 16 進数の文字コードです。</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">16 進数のエスケープ</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">(?# comment) コンストラクトを使用すると、正規表現にインライン コメントを含めることができます。Regex.ToString メソッドによって返される文字列にコメントが含まれますが、正規表現エンジンはパターン マッチングでコメントのどの部分も使用しません。コメントは、最初の終わりかっこで終了します。</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">インライン コメント</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">正規表現の残りの部分の特定のパターン マッチング オプションを有効または無効にします。有効にするオプションは疑問符の後に指定し、無効にするオプションはマイナス記号の後に指定します。許可されているオプションは次のとおりです。 i 大文字と小文字を区別しない一致を使用します。 m ^ と $ は、(入力文字列の先頭および末尾ではなく) 各行の先頭および末尾と一致します。 s 単一行モードを使用します。このモードでは、ピリオド (.) は任意の 1 文字と一致します (\n を除くすべての文字の代用)。 n 名前のないグループをキャプチャしません。(?&lt;name&gt; subexpression) という形式で、 明示的に名前または番号が付加されたグループのみを有効なキャプチャ対象とします。 x エスケープされていない空白をパターンから除外し、番号記号 (#) の後ろの コメントを有効にします。</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">インライン オプション</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">正規表現の問題: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">文字、小文字</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">文字、修飾子</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">文字、その他</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">文字、タイトル文字</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">文字、大文字</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">結合文字、囲み</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">結合文字、幅なし</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">結合文字、幅あり</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">{n,}? 量指定子は、直前の要素の n 回以上の繰り返しに一致します。ここで、n は任意の整数ですが、最も少ない回数に一致します。これは、最長一致の量指定子 {n,} に対応する、最短一致の量指定子です</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">'n' 回以上一致 (最短一致)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">{n,} 量指定子は、直前の要素の n 回以上の繰り返しに一致します。ここで、n は任意の整数です。{n,} は最長一致の量指定子であり、最短一致でこれに対応するのは {n,}? です</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">'n' 回以上一致</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">{n,m}? 量指定子は、直前の要素の n 回から m 回までの繰り返しのうち、最も少ない繰り返しに一致します。ここで、n と m は整数です。これは、最長一致の量指定子 {n,m} に対応する、最短一致の量指定子です</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">'n' 回以上一致 (最短一致)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">{n,m} 量指定子は、直前の要素の n 回以上、m 回以下の繰り返しに一致します。ここで、n と m は整数です。{n,m} は最長一致の量指定子であり、最短一致でこれに対応するのは {n,m}? です</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">'m' 回から 'n' 回の一致</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">{n}? 量指定子は、直前の要素の n 回の繰り返しに一致します。ここで、n は任意の整数です。これは、最長一致の量指定子 {n}+ に対応する、最短一致の量指定子です</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">ちょうど 'n' 回一致 (最短一致)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">{n} 量指定子は、直前の要素の n 回の繰り返しに一致します。ここで、n は任意の整数です。{n} は最長一致の量指定子であり、最短一致でこれに対応するのは {n}? です</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">ちょうど 'n' 回一致</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">+? 量指定子は、直前の要素の 1 回以上の繰り返しのうち、最も少ない繰り返しに一致します。これは、最長一致の量指定子 + に対応する、最短一致の量指定子です</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">1 回以上一致 (最短一致)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">+ 量指定子は、直前の要素の 1 回以上の繰り返しに一致します。これは {1,} と同じです。+ は最長一致の量指定子であり、最短一致でこれに対応するのは +? です。</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">1 回以上一致</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">*? 量指定子は、直前の要素の 0 回以上の繰り返しのうち、最も少ない繰り返しに一致します。これは、最長一致の量指定子 * に対応する、最短一致の量指定子です</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">0 回以上一致 (最短一致)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">* 量指定子は、直前の要素の 0 回以上の繰り返しに一致します。これは {0,} と同じです。* は最長一致の量指定子で、最短一致でこれに対応するのは *? です。</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">0 回以上一致</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">?? 量指定子は、直前の要素の 0 回または 1 回の繰り返しのうち、最も少ない繰り返しに一致します。これは、最長一致の量指定子 ? に対応する、最短一致の量指定子です</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">0 回または 1 回一致 (最短一致)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">? 量指定子は、直前の要素の 0 回または 1 回の繰り返しに一致します。これは {0,1} 量指定子と同じです。? は最長一致の量指定子であり、最短一致でこれに対応するのは ?? です。</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">0 回または 1 回一致</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">このグループ化構成体は、一致した 'subexpression' をキャプチャします。ここで、'subexpression' は任意の有効な正規表現パターンです。かっこを使用するキャプチャでは、正規表現の左かっこの順序に従って、左から右へ自動的に 1 から番号が付けられます。番号が 0 のキャプチャは、正規表現パターン全体に一致するテキストです。</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">一致した部分式</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">名前</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">名前付きまたは番号付き</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">名前付きまたは番号付きの前方参照。 'name' は、正規表現パターンで定義されているキャプチャ グループの名前です。</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">名前付き前方参照</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">一致した部分式をキャプチャし、名前または数字でアクセスできるようにします。 'name' は有効なグループ名であり、'subexpression' は有効な正規表現パターンです。'name' は、句読点文字を含めることができません。また、先頭を数字にすることもできません。 正規表現パターン マッチング メソッドの RegexOptions パラメーターに RegexOptions.ExplicitCapture フラグが含まれている場合や、n オプションがこの部分式に適用されている場合、部分式をキャプチャする唯一の方法は、キャプチャ グループを明示的に指定することです。</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">一致した名前付き部分式</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">文字グループの否定では、入力文字列に含まれなければ一致と見なされる文字の一覧を指定します。文字の一覧は個別に指定されます。 2 つ以上の文字範囲を連結することができます。たとえば、"0" から "9" の範囲の 10 進数、"a" から "f" の範囲の小文字、"A" から "F" の範囲の大文字を指定するには、[0-9a-fA-F] を使用します。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">文字グループの否定</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">文字範囲の否定では、入力文字列に含まれなければ一致と見なされる文字の一覧を指定します。'firstCharacter' は範囲の先頭の文字で、'lastCharacter' は範囲の末尾の文字です。 2 つ以上の文字範囲を連結することができます。たとえば、"0" から "9" の範囲の 10 進数、"a" から "f" の範囲の小文字、"A" から "F" の範囲の大文字を指定するには、[0-9a-fA-F] を使用します。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">文字範囲の否定</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">正規表現のコンストラクト \P{ name } は、Unicode 一般カテゴリにも名前付きブロックにも属さない任意の文字と一致します。ここで、name はカテゴリの省略形または名前付きブロックの名前です。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">Unicode カテゴリの否定</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">改行文字 \u000A に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">改行文字</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">いいえ</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D は、数字以外の任意の文字に一致します。\P{Nd} 正規表現パターンに相当します。 ECMAScript 準拠の動作が指定されている場合、\D は [^0-9] と同等です</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">数字以外の文字</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S は空白以外の任意の文字に一致します。これは、[^\f\n\r\t\v\x85\p{Z}] 正規表現パターンに相当します。また、\s (空白文字に一致) に相当する正規表現パターンの逆に相当します。 ECMAScript 準拠の動作が指定されている場合、\S は [^ \f\n\r\t\v] と同等です</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">空白以外の文字</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">\B アンカーは、ワード境界では一致しないことを指定します。これは、\b アンカーと逆の働きをします。</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">ワード境界以外</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W は単語以外の文字に一致します。次に示す Unicode カテゴリのものを除く任意の文字と一致します。 Ll 文字、小文字 Lu 文字、大文字 Lt 文字、タイトル文字 Lo 文字、その他 Lm 文字、修飾子 Mn 結合文字、幅なし Nd 数字、10 進数字 Pc 句読点、接続 ECMAScript 準拠の動作が指定されている場合、\W は [^a-zA-Z_0-9] と同等です</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">単語以外の文字</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">このコンストラクトは、部分式で一致する部分文字列をキャプチャしません: 非キャプチャ グループのコンストラクトは通常、量指定子がグループに適用されても、グループによってキャプチャされた部分文字列が対象にならない場合に使用されます。 正規表現に、入れ子になったグループ化構成体が含まれている場合、外部の非キャプチャ グループ コンストラクトは内部の入れ子になったグループ コンストラクトに適用されません。</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">非キャプチャ グループ</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">数字、10 進数字</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">数字、文字</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">数字、その他</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">番号付き前方参照。ここで、'number' は、正規表現でのキャプチャ グループの位置を表す序数です。たとえば、\4 は 4 番目のキャプチャ グループの内容と一致します。 8 進数エスケープ コード (\16 など) と \number 前方参照は同じ表記を使用するため、あいまいさがあります。あいまいさが問題になる場合は、\k&lt;name&gt; 表記を使用できます。この表記はあいまいさがなく、8 進数文字コードと混同されません。同様に、\xdd などの 16 進数コードはあいまいさがなく、前方参照と混同されません。</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">番号付き前方参照</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">その他、制御</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">その他、書式</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">その他、未割り当て</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">その他、プライベート用途</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">その他、サロゲート</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">文字グループの肯定では、いずれかが入力文字列に含まれると一致と見なされる文字の一覧を指定します。</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">文字グループの肯定</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">文字範囲の肯定では、いずれかが入力文字列に含まれると一致と見なされる文字の範囲を指定します。'firstCharacter' は範囲の先頭の文字で、'lastCharacter' は範囲の末尾の文字です。 </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">文字範囲の肯定</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">句読点、閉じ</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">句読点、接続</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">句読点、ダッシュ</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">句読点、終了引用符</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">句読点、開始引用符</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">句読点、開き</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">句読点、その他</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">区切り、行</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">区切り、段落</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">区切り、空白</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">\A アンカーは、入力文字列の先頭で一致する必要があることを指定します。これは ^ アンカーと同じですが、\A では RegexOptions.Multiline オプションが無視される点が異なります。したがって、複数行の入力文字列では最初の行の先頭にのみ一致することができます。</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">文字列の先頭のみ</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">^ アンカーは、その後に続くパターンが、文字列の最初の文字位置から始まる必要があることを指定します。RegexOptions.Multiline オプションを指定して ^ を使用した場合は、各行の先頭で一致する必要があります。</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">文字列または行の先頭</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">部分式</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">記号、通貨</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">記号、数学</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">記号、修飾子</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">記号、その他</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">タブ文字 \u0009 に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">タブ文字</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">正規表現のコンストラクト \p{ name } は、Unicode 一般カテゴリまたは名前付きブロックに属する任意の文字に一致します。ここで、name はカテゴリの省略形または名前付きブロックの名前です。</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">Unicode カテゴリ</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">値が #### 16 進数の UTF-16 コード単位に一致します。</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">Unicode エスケープ</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Unicode 一般カテゴリ: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">垂直タブ文字 \u000B に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">垂直タブ文字</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s は任意の空白文字に一致します。次のエスケープ シーケンスと Unicode カテゴリに相当します: \f フォーム フィード文字、\u000C \n 改行文字、\u000A \r 復帰文字、\u000D \t タブ文字、\u0009 \v 垂直タブ文字、\u000B \x85 省略記号または NEXT LINE (NEL) 文字 (...)、\u0085 \p{Z} 任意の区切り文字に一致します ECMAScript 準拠の動作が指定されている場合、\s は [ \f\n\r\t\v] と同等です</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">空白文字</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">\b アンカーは、ワード文字 (\w 言語要素) と単語以外の文字 (\W 言語要素) の境界で一致する必要があることを示します。単語文字は英数字とアンダースコアで構成され、単語以外の文字は、英数字でもアンダースコアでもない任意の文字で構成されます。文字列の先頭または末尾にあるワード境界でも一致する可能性があります。 \b アンカーは、部分式を単語の先頭または末尾ではなく単語全体に一致させる目的で頻繁に使用されます。</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">ワード境界</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w は任意の単語文字に一致します。単語文字は、次に示すいずれかの Unicode カテゴリのメンバーです: Ll 文字、小文字 Lu 文字、大文字 Lt 文字、タイトル文字 Lo 文字、その他 Lm 文字、修飾子 Mn 結合文字、幅なし Nd 数字、10 進数字 Pc 句読点、接続 ECMAScript 準拠の動作が指定されている場合、\w は [a-zA-Z_0-9] と同等です</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">単語文字</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">はい</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">ゼロ幅の否定先読みアサーション。ここで、一致と見なされるためには、入力文字列が subexpression の正規表現パターンと一致しない必要がありますが、一致した文字列は一致結果には含まれません。 通常、ゼロ幅の否定先読みアサーションは正規表現の先頭または末尾で使用されます。正規表現の先頭の場合は、類似してもより一般的なパターンを照合するように正規表現の先頭で定義されているときに、一致しない必要がある特定のパターンを定義できます。この場合は、バックトラッキングを制限するためによく使用されます。正規表現の末尾の場合は、一致の末尾に出現できない部分式を定義できます。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">ゼロ幅の否定先読みアサーション</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">ゼロ幅の否定後読みアサーション。ここで、一致と見なされるためには、'subexpression' が入力文字列の現在の位置の左側に出現しない必要があります。'subexpression' と一致しない部分文字列は一致結果には含まれません。 通常、ゼロ幅の否定後読みアサーションは正規表現の先頭で使用されます。定義されるパターンでは、後に続く文字列内の一致が除外されます。これは、キャプチャされたグループの最後の文字がそのグループの正規表現パターンと一致する 1 つ以上の文字にならない必要がある場合に、バックトラッキングを制限するためにも使用されます。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">ゼロ幅の否定後読みアサーション</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">ゼロ幅の肯定先読みアサーション。ここで、一致と見なされるためには、入力文字列が 'subexpression' の正規表現パターンと一致する必要がありますが、一致した部分文字列は一致結果には含まれません。ゼロ幅の肯定先読みアサーションはバックトラックしません。 通常、ゼロ幅の肯定先読みアサーションは正規表現パターンの末尾にあります。一致と見なされるには文字列の末尾にある必要がありますが、一致には含まれない部分文字列を定義します。これは、過度なバックトラッキングを防ぐためにも役立ちます。ゼロ幅の肯定先読みアサーションを使用して、特定のキャプチャされたグループの先頭テキストが、そのキャプチャされたグループに対して定義されたパターンのサブセットと一致するテキストになるようにすることができます。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">ゼロ幅の肯定先読みアサーション</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">ゼロ幅の肯定後読みアサーション。ここで、一致と見なされるためには、'subexpression' が入力文字列の現在の位置の左側に出現する必要がありますが、'subexpression' は一致結果には含まれません。ゼロ幅の肯定後読みアサーションはバックトラックしません。 通常、ゼロ幅の肯定後読みアサーションは正規表現の先頭で使用されます。定義されるパターンは一致の事前条件ですが、一致結果には含まれません。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">ゼロ幅の肯定後読みアサーション</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">メタデータ内に検出される関連するメソッド シグネチャは更新されません。</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">ドキュメントの削除はサポートされていません</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">'async' 修飾子を削除してください</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">不要なキャストを削除する</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">未使用の変数を削除する</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">'{0}' を '{1}' に置き換える</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">競合マーカーの解決</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Rude 編集</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">アクセシビリティ修飾子を並べ替える</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">連続する '{0}' ステートメントに分割</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">入れ子になった '{0}' ステートメントに分割</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">ストリームは、読み取りとシーク操作をサポートする必要があります。</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">{0} の非表示</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: アンマネージド リソース (アンマネージド オブジェクト) を解放し、ファイナライザーをオーバーライドします</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: '{0}' にアンマネージド リソースを解放するコードが含まれる場合にのみ、ファイナライザーをオーバーライドします</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">ターゲットの種類が一致します</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">型 '{1}' を含むアセンブリ '{0}' が .NET Framework を参照しています。これはサポートされていません。</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">選択範囲に、宣言のないローカル関数呼び出しが含まれています。</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">(?()|) で | が多すぎます</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">) が多すぎます</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">ソース ファイル '{0}'、またはそれを含むプロジェクト用にビルドされた PDB を読み取れません。デバッグ中にこのファイルに加えられた変更は、そのコンテンツがビルドされたソースと一致するまで適用されません。</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">不明なプロパティ</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">不明なプロパティ '{0}'</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">認識されない制御文字</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">認識できないエスケープ シーケンス \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">認識されないグループ化構成体</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">未終了の [] セットです</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">未終了の (?#...) コメントです</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">すべての引数の折り返しを解除</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">すべてのパラメーターの折り返しを解除します</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">折り返しを解除してすべての引数にインデントを設定します</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">折り返しを解除し、すべてのパラメーターにインデントを設定します</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">引数リストの折り返しを解除</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">呼び出しチェーンの折り返し解除</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">式の折り返しを解除</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">パラメーター リストの折り返しを解除します</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">ラムダ式にブロック本体を使用する</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">ラムダ式に式本体を使用する</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">挿入された逐語的文字列を使用します</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">警告: ステートメントの変換時にセマンティクスが変更される可能性があります。</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">呼び出しチェーンの折り返しと配置</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">式を折り返して整列する</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">長い呼び出しチェーンの折り返しと配置</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">呼び出しチェーンの折り返し</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">すべての引数を折り返します</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">すべてのパラメーターを折り返します</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">式を折り返す</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">長い引数リストを折り返します</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">長い呼び出しチェーンの折り返し</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">長いパラメーター リストを折り返します</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">折り返し</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">ナビゲーション バーを使用してコンテキストを切り替えることができます。</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}' を NULL または空にすることはできません。</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}' を null または空白にすることはできません。</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">ここでは、'{0}' は null ではありません。</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">ここでは、'{0}' は null である可能性があります。</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">10,000,000 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffffff" カスタム書式指定子は、秒の小数部分の有効数字上位 7 桁を表します。つまり、日時の値のうち、秒の小数部分を 10,000,000 分の 1 秒単位で表します。 時刻値の 10,000,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">10,000,000 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFFF" カスタム書式指定子は、秒の小数部分の有効数字上位 7 桁を表します。つまり、日時の値のうち、秒の小数部分を 10,000,000 分の 1 秒単位で表します。ただし、末尾の 0 や、7 桁連続の 0 は表示されません。 時刻値の 10,000,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1,000,000 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffffff" カスタム書式指定子は、秒の小数部分の有効数字上位 6 桁を表します。つまり、日時の値のうち、秒の小数部分を 1,000,000 分の 1 秒単位で表します。 時刻値の 1,000,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1,000,000 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFF" カスタム書式指定子は、秒の小数部分の有効数字上位 6 桁を表します。つまり、日時の値のうち、秒の小数部分を 1,000,000 分の 1 秒単位で表します。ただし、末尾の 0 や、6 桁連続の 0 は表示されません。 時刻値の 1,000,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">100,000 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffff" カスタム書式指定子は、秒の小数部分の有効数字上位 5 桁を表します。つまり、日時の値のうち、秒の小数部分を 100,000 分の 1 秒単位で表します。 時刻値の 100,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">100,000 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFF" カスタム書式指定子は、秒の小数部分の有効数字上位 5 桁を表します。つまり、日時の値のうち、秒の小数部分を 100,000 分の 1 秒単位で表します。ただし、末尾の 0 や、5 桁連続の 0 は表示されません。 時刻値の 100,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">10,000 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffff" カスタム書式指定子は、秒の小数部分の有効数字上位 4 桁を表します。つまり、日時の値のうち、秒の小数部分を 10,000 分の 1 秒単位で表します。 時刻値の 10,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT バージョン 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">10,000 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFF" カスタム書式指定子は、秒の小数部分の有効数字上位 4 桁を表します。つまり、日時の値のうち、秒の小数部分を 10,000 分の 1 秒単位で表します。ただし、末尾の 0 や、4 桁連続の 0 は表示されません。 時刻値の 10,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1,000 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">"fff" カスタム書式指定子は、秒の小数部分の有効数字上位 3 桁を表します。つまり、日時の値のミリ秒を表します。</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1,000 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">"FFF" カスタム書式指定子は、秒の小数部分の有効数字上位 3 桁を表します。つまり、日時の値のミリ秒を表します。ただし、末尾の 0 や、3 桁連続の 0 は表示されません。</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">100 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">"ff" カスタム書式指定子は、秒の小数部分の有効数字上位 2 桁を表します。つまり、日時の値のうち、秒の小数部分を 100 分の 1 秒単位で表します。</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">100 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">"FF" カスタム書式指定子は、秒の小数部分の有効数字上位 2 桁を表します。つまり、日時の値のうち、秒の小数部分を 100 分の 1 秒単位で表します。ただし、末尾の 0 や、2 桁連続の 0 は表示されません。</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">10 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">10 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">"F" カスタム書式指定子は、秒の小数部分の有効数字最上位桁を表します。つまり、日時値の秒の少数部分を 10 分の 1 秒単位で表します。この桁が 0 の場合は、何も表示されません。 "F" 書式指定子を他の書式指定子なしで使用すると、"F" 標準日時書式指定子として解釈されます。 ParseExact、TryParseExact、ParseExact、または TryParseExact メソッドと共に使用される "F" 書式指定子の数は、文字列を正常に解析するために存在して構わない秒の小数部分の最大桁数を示します。</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12 時間制 (1 - 2 桁)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"h" カスタム書式指定子は、時を 1 から 12 の数字で表します。つまり、午前 0 時または午後 0 時からの時間をカウントする 12 時間制で時が表されます。午前 0 時からカウントした特定の時は、正午からカウントした同じ時と区別できません。時は丸められず、1 桁の時は先行ゼロなしで書式設定されます。たとえば、午前または午後の 5:43 という時刻の場合、このカスタム書式指定子では "5" が表示されます。 "h" 書式指定子を他のカスタム書式指定子なしで使用すると、標準日時書式指定子として解釈され、FormatException がスローされます。</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12 時間制 (2 桁)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">"hh" カスタム書式指定子 (任意の数の "h" 指定子を追加できます) は、時を 01 から 12 の数字で表します。つまり、午前 0 時または午後 0 時からの時間をカウントする 12 時間制で時が表されます。午前 0 時からカウントした特定の時は、正午からカウントした同じ時と区別できません。時は丸められず、1 桁の時は先行ゼロ付きで書式設定されます。たとえば、午前または午後の 5:43 という時刻の場合、この書式指定子では "05" が表示されます。</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24 時間制 (1 - 2 桁)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"H" カスタム書式指定子は、時を 0 から 23 の数字として表します。つまり、午前 0 時からの時間をカウントする、ゼロから始まる 24 時間制で時が表されます。1 桁の時は、先行ゼロなしで書式設定されます。 "H" 書式指定子を他のカスタム書式指定子なしで使用すると、標準日時書式指定子として解釈され、FormatException がスローされます。</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24 時間制 (2 桁)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">"HH" カスタム書式指定子 (任意の数の "H" 指定子を追加できます) は、時を 00 から 23 の数字で表します。つまり、午前 0 時からの時間をカウントする、ゼロから始まる 24 時間制で時が表されます。1 桁の時は、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">コード</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">日付の区切り記号</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"/" カスタム書式指定子は、年、月、日を区別するために使用される日付の区切り記号を表します。適切なローカライズされた日付区切り記号は、現在の、または指定したカルチャの DateTimeFormatInfo.DateSeparator プロパティから取得されます。 注: 特定の日時文字列の日付の区切り記号を変更するには、リテラル文字列区切り記号で囲んで区切り文字を指定します。たとえば、カスタム書式指定文字列 mm'/'dd'/'yyyy では、"/" が常に日付区切り記号として使用されて結果文字列が生成されます。カルチャのすべての日付について日付区切り記号を変更するには、現在のカルチャの DateTimeFormatInfo.DateSeparator プロパティの値を変更するか、DateTimeFormatInfo オブジェクトをインスタンス化し、その DateSeparator プロパティに文字を割り当てて、IFormatProvider パラメーターを含む書式設定メソッドのオーバーロードを呼び出します。 "/" 書式指定子を他のカスタム書式指定子なしで使用すると、標準日時書式指定子として解釈され、FormatException がスローされます。</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">日 (1 - 2 桁)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">"d" カスタム書式指定子は、日を 1 から 31 の数字として表します。1 桁の日は、先行ゼロなしで書式設定されます。 "d" 書式指定子を他のカスタム書式指定子なしで使用すると、"d" 標準日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">日 (2 桁)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">"dd" カスタム書式指定文字列は、日を 01 から 31 の数字として表します。1 桁の日は、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">曜日 (省略)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">"ddd" カスタム書式指定子は、曜日の省略名を表します。曜日のローカライズされた省略名は、現在の、または指定したカルチャの DateTimeFormatInfo.AbbreviatedDayNames プロパティから取得されます。</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">曜日 (完全)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">"dddd" カスタム書式指定子 (任意の数の "d" 指定子を追加できます) は、曜日の完全名を表します。曜日のローカライズされた名前は、現在の、または指定したカルチャの DateTimeFormatInfo.DayNames プロパティから取得されます。</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">破棄</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">メタデータから</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">完全な長い日付と時刻</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">"F" 標準書式指定子は、現在の DateTimeFormatInfo.FullDateTimePattern プロパティで定義されているカスタム日時書式指定文字列を表します。たとえば、インバリアント カルチャのカスタム書式指定文字列は "dddd, dd MMMM yyyy HH:mm:ss" です。</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">完全な短い日付と時刻</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">完全な日付と短い形式の時刻 ("f") 書式指定子 "f" 標準書式指定子は、長い形式の日付 ("D") と短い形式の時刻 ("t") のパターンの組み合わせをスペースで区切ったものを表します。</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">一般の長い日付と時刻</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">"G" 標準書式指定子は、短い形式の日付 ("d") と長い形式の時刻 ("T") のパターンの組み合わせをスペースで区切ったものを表します。</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">一般の短い日付と時刻</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">"g" 標準書式指定子は、短い形式の日付 ("d") と短い形式の時刻 ("t") のパターンの組み合わせをスペースで区切ったものを表します。</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">ジェネリック オーバーロード</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">ジェネリック オーバーロード</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">{0} ({1} - {2}) 内</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">ソース内 (属性)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">長い日付</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">"D" 標準書式指定子は、現在の DateTimeFormatInfo.LongDatePattern プロパティで定義されているカスタム日時書式指定文字列を表します。たとえば、インバリアント カルチャのカスタム書式指定文字列は "dddd, dd MMMM yyyy" です。</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">長い時刻</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">"T" 標準書式指定子は、特定のカルチャの DateTimeFormatInfo.LongTimePattern プロパティで定義されているカスタム日時書式指定文字列を表します。たとえば、インバリアント カルチャのカスタム書式指定文字列は "HH:mm:ss" です。</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">分 (1 - 2 桁)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">"m" カスタム書式指定子は、分を 0 から 59 の数字として表します。分は、直前の時からの経過時間 (分単位) を表します。1 桁の分は、先行ゼロなしで書式設定されます。 "m" 書式指定子を他のカスタム書式指定子なしで使用すると、"m" 標準日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">分 (2 桁)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">"mm" カスタム書式指定子 (任意の数の "m" 指定子を追加できます) は、分を 00 から 59 の数字として表します。分は、直前の時からの経過時間 (分単位) を表します。1 桁の分は、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">月 (1 - 2 桁)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">"M" カスタム書式指定子は、月を 1 から 12 (13 か月のカレンダーの場合は 1 から 13) の数字として表します。1 桁の月は、先行ゼロなしで書式設定されます。 "M" 書式指定子を他のカスタム書式指定子なしで使用すると、"M" 標準日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">月 (2 桁)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">"MM" カスタム書式指定子は、月を 01 から 12 (13 か月のカレンダーの場合は 01 から 13) の数字として表します。1 桁の月は、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">月 (省略)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">"MMM" カスタム書式指定子は、月の省略名を表します。ローカライズされた月の省略名は、現在のカルチャまたは指定したカルチャの DateTimeFormatInfo.AbbreviatedMonthNames プロパティから取得されます。</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">月日</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">"M" または "m" 標準書式指定子は、現在の DateTimeFormatInfo.MonthDayPattern プロパティで定義されているカスタム日時書式指定文字列を表します。たとえば、インバリアント カルチャのカスタム書式指定文字列は "MMMM dd" です。</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">月 (完全)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">"MMMM" カスタム書式指定子は、月の完全名を表します。月のローカライズされた名前は、現在のカルチャまたは指定されたカルチャの DateTimeFormatInfo.MonthNames プロパティから取得されます。</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">オーバーロード</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">オーバーロード</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} キーワード</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">フィールドのカプセル化: '{0}' (およびプロパティを使用します)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">フィールドのカプセル化: '{0}' (ただし、フィールドを継続して使用します)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">フィールドのカプセル化 (およびプロパティを使用します)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">フィールドのカプセル化 (ただし、フィールドを継続して使用します)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">インターフェイスを抽出できませんでした。 選択範囲がクラス/インターフェイス/構造体の内部にありません。</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">インターフェイスを抽出できませんでした。インターフェイスに抽出できるメンバーが型に含まれていません。</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">最終的なツリーを作成できません</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">パラメーターの型または戻り値の型を匿名型にすることはできません: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">選択範囲にアクティブなステートメントが含まれていません。</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">選択範囲にエラーまたは不明な型が含まれています。</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">型パラメーター '{0}' が別の型パラメーター '{1}' によって非表示になっています。</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">選択されたコード内に、変数のアドレスが使用されています。</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">読み取り専用フィールドへの割り当ては、コンストラクターで行う必要があります: [{0}] 。</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">生成されたコードがコードの非表示の部分に重なっています</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">省略可能なパラメーターを '{0}' に追加する</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">パラメーターを '{0}' に追加する</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">デリゲート コンストラクター '{0}({1})' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">コンストラクター '{0}({1})' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">フィールドを割り当てるコンストラクター '{0}({1})' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Equals および GetHashCode を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Equals(object) を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">GetHashCode() を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">'{0}' にコンストラクターを生成します</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">すべてを生成します</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">列挙メンバー '{1}.{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">定数 '{1}.{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">読み取り専用プロパティ '{1}.{0}' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">プロパティ '{1}.{0}' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">読み取り専用フィールド '{1}.{0}' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">フィールド '{1}.{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">ローカルの '{0}' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">新しいファイルに {0} '{1}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">入れ子 {0} '{1}' を生成する</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">グローバル名前空間</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">インタ フェースを抽象的に実装します</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">'{0}' を通じてインターフェイスを実装します</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">インターフェイスを実装します</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">'{0}' に対してフィールドを導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">'{0}' に対してローカルを導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">'{0}' に対して定数を導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">'{0}' に対してローカル定数を導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">'{0}' のすべての発生に対してフィールドを導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">'{0}' のすべての発生に対してローカルを導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">'{0}' のすべての発生に対して定数を導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">'{0}' のすべての発生に対してローカル定数を導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">'{0}' のすべての発生に対してクエリ変数を導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">'{0}' に対してクエリ変数を導入します</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">匿名型:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">は</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">操作が実行時に解決されるオブジェクトを表します。</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">定数</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">フィールド</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">ローカル定数</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">ローカル変数</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">ラベル</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">時代</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">"g" または "gg" カスタム書式指定子 (任意の数の "g" 指定子を追加可能) は、A.D. などの時代 (年号) を表します。書式設定の対象となる日付に時代 (年号) を表す文字列が関連付けられていない場合、書式設定操作の際、この指定子は無視されます。 他のカスタム書式指定子が使用されていない場合、"g" は標準の日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">範囲変数</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">パラメーター</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">次の値のいずれか</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">概要:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">ローカルおよびパラメーター</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">型パラメーター:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">戻り値:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">例外:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">注釈:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">このタイプのシンボルのソースの生成はサポートされていません</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">アセンブリ</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">不明な場所</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">予期しないインターフェイス メンバーの種類: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">不明なシンボルの種類</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">抽象プロパティ '{1}.{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">抽象メソッド '{1}.{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">メソッド '{1}.{0}' を生成します</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">要求されたアセンブリは、既に '{0}' から読み込まれています。</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">シンボルにアイコンがありません。</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">非同期メソッドが ref/out パラメーターを持つことはできません : [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">メンバーは、メタデータで定義されます。</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">コンストラクター、インデクサー、メソッド、またはデリゲートのシグネチャのみ変更できます。</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">このシンボルはメタデータの関連する定義または参照を持っています。署名を変更すると、ビルド エラーが発生する場合があります。 続行しますか?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">署名の変更...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">新しい型の生成...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">ユーザー診断アナライザーが失敗しました。</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">アナライザー '{0}' が型 '{1}' の例外をメッセージ '{2}' 付きでスローしました。</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">アナライザー '{0}'が、次の例をスローしました: '{1}'。</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">名前を単純化します</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">メンバー アクセスを単純化します</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">修飾子を削除</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">不明なエラーが発生しました</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">空き領域</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">使用できません ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">ソース内</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">抑制ファイル内</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">抑制 {0} を削除します</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">抑制の削除</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;保留中&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">メモ: '{0}' スニペットを挿入するには、Tab キーを 2 回押してください。</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">破棄パターンを使って明示的にインターフェイスを実装します</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">破棄パターンを使ってインターフェイスを実装します</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">再トリアージ {0} (現在は '{1}')</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">引数に null 要素は指定できません。</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">引数を空にすることはできません。</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">ID '{0}' の報告済みの診断はアナライザーによってサポートされていません。</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">出現箇所をすべて修正するコード修正プログラムを計算しています...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">すべての出現箇所を修正します</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">ドキュメント</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">プロジェクト</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">ソリューション</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: マネージド状態を破棄します (マネージド オブジェクト)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: 大きなフィールドを null に設定します</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">コンパイラ</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">ライブ</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">enum 値</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">const フィールド</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">メソッド</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">演算子</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">コンストラクター</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">自動プロパティ</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">プロパティ</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">イベント アクセサー</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">rfc1123 日付/時刻</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"R" または "r" 標準書式指定子は、DateTimeFormatInfo.RFC1123Pattern プロパティで定義されているカスタム日時書式設定文字列を表します。このパターンには定義済み標準が反映されています。また、プロパティは読み取り専用です。したがって、使用されているカルチャまたは指定された書式プロバイダーに関係なく、これは常に同じになります。カスタム書式設定文字列は "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'" です。この標準書式指定子が使用されている場合、書式設定操作または解析操作では常にインバリアント カルチャが使用されます。</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">ラウンドトリップ日付/時刻</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">"O" または "o" 標準書式指定子は、タイム ゾーン情報を保持するパターンを使用するカスタム日時書式設定文字列を表し、ISO 8601 に準拠する結果文字列を生成します。この書式指定子は、DateTime 値の日付と時刻の値を DateTime.Kind プロパティと共にテキストとして保持できるように設計されています。styles パラメーターが DateTimeStyles.RoundtripKind に設定されている場合、書式設定された文字列は、DateTime.Parse(String, IFormatProvider, DateTimeStyles) または DateTime.ParseExact メソッドを使用して、変換前の文字列に戻すことができます。 "O" または "o" 標準書式指定子は、DateTime 値の場合は、"yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" カスタム書式設定文字列に、DateTimeOffset 値の場合は、"yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" カスタム書式文字列に対応します。この文字列で、ハイフン、コロン、アルファベット "T" などの個々の文字を区切る単一引用符ペアは、各文字が、変更できないリテラルであることを示します。アポストロフィは、出力文字列には表示されません。 "O" または "o" 標準書式指定子 (および "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" カスタム書式設定文字列") は、ISO 8601 の3 種類のタイム ゾーン情報表記形式を利用して、DateTime 値の Kind プロパティを保持します。 DateTimeKind.Local の日時値のタイム ゾーン コンポーネントは、UTC からのオフセットです (+01:00、-07:00 など)。すべての DateTimeOffset 値がこの形式で表されます。 DateTimeKind.Utc 日時値のタイム ゾーン コンポーネントは、(ゼロ オフセットを示す) "Z" を使用して UTC を表します。 DateTimeKind.Unspecified 日時値には、タイム ゾーン情報が含まれていません。 "O" または "o" 標準書式指定子は国際標準に準拠しているため、この指定子を使用する書式設定操作または解析操作では常に、インバリアント カルチャとグレゴリオ暦が使用されます。 DateTime と DateTimeOffset の Parse、TryParse、ParseExact、および TryParseExact メソッドに渡される文字列が、これらの形式のいずれかである場合は、"O" または "o" 書式指定子を使用して解析できます。DateTime オブジェクトの場合、呼び出す解析オーバーロードの styles パラメーターにも、DateTimeStyles.RoundtripKind 値が指定されている必要があります。"O" または "o" 書式指定子に対応するカスタム書式設定文字列を使用して解析メソッドを呼び出した結果は、"O" または "o" を使用した場合の結果と同じではありません。これは、カスタム書式設定文字列を使用する解析メソッドでは、タイム ゾーン コンポーネントがない、または "Z" を使用して UTC を表す日時値の文字列表現を解析できないためです。</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">秒 (1 ~ 2 桁)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">"s" カスタム書式指定子は、秒を 0 から 59 までの数値として表します。この秒は、直前の分から経過した秒数です。1 桁の秒は、先行ゼロなしで書式設定されます。 他のカスタム書式指定子が使用されていない場合、"s" は標準の日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">秒 (2 桁)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">"ss" カスタム書式指定子 (任意の数の "s" 指定子を追加可能) は、秒を 00 から 59 までの数値として表します。この秒は、直前の分から経過した秒数です。1 桁の秒は、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">日付 (短い形式)</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">"d" 標準書式指定子は、特定のカルチャの DateTimeFormatInfo.ShortDatePattern プロパティによって定義されたカスタム日時書式設定文字列を表します。たとえば、インバリアント カルチャの ShortDatePattern プロパティによって返されるカスタム書式設定文字列は "MM/dd/yyyy" です。</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">時刻 (短い形式)</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">"t" 標準書式指定子は、現在の DateTimeFormatInfo.ShortTimePattern プロパティによって定義されるカスタム日時書式設定文字列を表します。たとえば、インバリアント カルチャのカスタム書式設定文字列は "HH: mm" です。</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">並べ替え可能な日付/時刻</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"s" 標準書式指定子は、DateTimeFormatInfo.SortableDateTimePattern プロパティで定義されているカスタム日時書式設定文字列を表します。このパターンには、定義済みの標準 (ISO 8601) が反映されています。また、プロパティは読み取り専用です。したがって、使用されているカルチャまたは指定された書式プロバイダーに関係なく、これは常に同じになります。カスタム書式設定文字列は、"yyyy'-'MM'-'dd'T'HH':'mm':'ss" です。 "s" 書式指定子の目的は、書式設定後の文字列が、日付と時刻の値に基づいて、一貫して昇順または降順に並べ替えられるようにすることです。そのため、"s" 標準書式指定子は、一貫性のある形式で日付と時刻の値を表しますが、書式設定操作によって、書式設定の対象となる日付と時刻のオブジェクトの値が、DateTime.Kind プロパティまたは DateTimeOffset.Offset プロパティを反映するために変更されることはありません。たとえば、2014-11-15T18:32:17+00:00 日時値と 2014-11-15T18:32:17+08:00 日時値を書式設定すると、同じ文字列が生成されます。 この標準書式指定子が使用されている場合、書式設定操作または解析操作では常にインバリアント カルチャが使用されます。</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">静的コンストラクター</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'symbol' は名前空間にすることはできません。</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">時刻の区切り記号</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">":" カスタム書式指定子は、時、分、および秒を区別するための時刻の区切り記号を表します。ローカライズされた適切な時刻の区切り記号は、現在のカルチャまたは指定されたカルチャの DateTimeFormatInfo.TimeSeparator プロパティから取得されます。 注: 特定の日付と時刻の文字列について時刻の区切り記号を変更するには、リテラル文字列の区切り記号内に区切り記号を指定します。たとえば、カスタム書式設定文字列 hh'_'dd'_'ss によって生成される結果文字列では、"_" (アンダースコア) が常に時刻の区切り記号として使用されます。カルチャのすべての日付について時刻の区切り記号を変更するには、現在のカルチャの DateTimeFormatInfo.TimeSeparator プロパティ値を変更するか、DateTimeFormatInfo オブジェクトのインスタンスを作成し、その TimeSeparator プロパティに文字を割り当てて、IFormatProvider パラメーターを含む書式設定メソッドのオーバーロードを呼び出します。 他のカスタム書式指定子が使用されていない場合、":" は標準の日時書式指定子として解釈され、FormatException をスローします。</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">タイム ゾーン</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"K" カスタム書式指定子は、日付と時刻の値のタイム ゾーン情報を表します。この書式指定子が DateTime 値で使用されている場合、書式設定後の文字列は DateTime.Kind プロパティの値によって定義されます。 ローカル タイム ゾーンの場合 (DateTime.Kind プロパティ値が DateTimeKind.Local)、この指定子は "zzz" 指定子と同じで、書式設定後の文字列には世界協定時刻 (UTC) からのローカル オフセット ("-07:00" など) が含まれます。 UTC 時刻の場合 (DateTime.Kind プロパティ値が DateTimeKind.Utc)、書式設定後の文字列には UTC 日付を表す "Z" 文字が含まれます。 タイム ゾーンが指定されていない時刻の場合 (時間の DateTime.Kind プロパティが DateTimeKind.Unspecified)、結果は String.Empty と同じになります。 "K" 書式指定子を DateTimeOffset 値で使用した場合、この指定子は "zzz" 書式指定子と同じになり、書式設定後の文字列には、DateTimeOffset 値の UTC を基準としたオフセットが含まれます。 他のカスタム書式指定子が使用されていない場合、"K" は標準の日時書式指定子として解釈され、FormatException をスローします。</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">型制約</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">型パラメーター</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">属性</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">'{0}' および '{1}' をプロパティと置換する</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">'{0}' をプロパティを置換する</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">暗黙的に参照されたメソッド</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">型 '{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">{0} '{1}' を生成する</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">'{0}' を '{1}' に変更します。</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">呼び出されていないメソッドはプロパティと置換できません。</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">出力変数の宣言ではない、単一の引数を持つメソッドのみ、プロパティに置き換えることができます。</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">アナライザー {0} のインスタンスは {1}: {2} から作成できません。</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">アセンブリ {0} にアナライザーは含まれていません。</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">アナライザーのアセンブリ {0}: {1} を読み込むことができません</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">同期メソッドに変更します</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">{0} から</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">最新バージョンの検索とインストール</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">ローカル バージョン '{0}' を使用する</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">ローカルにインストールされた '{0}' バージョン '{1}' を使います このバージョンは {2} で使われています</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">'{0}' の最新バージョンの検索とインストール</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">パッケージ マネージャーを使ってインストール...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">{0} {1}' のインストール</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">バージョン '{0}' のインストール</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">変数 '{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">クラス</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">定数</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">デリゲート</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">列挙型</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">イベント</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">拡張メソッド</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">フィールド</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">インターフェイス</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">ローカル</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">メソッド</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">モジュール</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">名前空間</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">プロパティ</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">構造</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">パラメーター:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">可変個引数 SignatureHelpItem は、少なくとも 1 つのパラメーターが必要です。</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">'{0}' をメソッドに置換します</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">'{0}' をメソッドに置換します</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">暗黙的に参照されているプロパティ</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">プロパティをメソッド呼び出しに安全に置換することはできません</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">補間された文字列に変換する</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">型を {0} に移動</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">ファイル名を {0} に変更</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">型の名前を {0} に変更</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">タグの削除</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">欠落している Param ノードを追加する</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">含まれているスコープを非同期にします</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">含まれているスコープを非同期にします (Task を返します)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(不明)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">フレームワークの型を使用する</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">パッケージ '{0}' のインストール</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">プロジェクト {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">完全修飾 '{0}'</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">'{0}' への参照を削除します。</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">キーワード</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">スニペット</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">すべて小文字</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">すべて大文字</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">最初の文字を大文字にする</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">パスカル ケース</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">ドキュメント '{0}' の削除</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">ドキュメント '{0}' の追加</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">引数名 '{0}' を追加する</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">'{0}' を取る</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">両方を取る</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">下端を取る</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">上端を取る</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">未使用の変数を削除する</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">2 進数に変換する</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">10 進数に変換する</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">16 進数に変換する</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">千単位で区切る</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">単語で区切る</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">ニブルで区切る</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">区切り記号を削除する</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">パラメーターを '{0}' に追加する</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">コンストラクターを生成する...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">コンストラクターのパラメーターとして使用するメンバーを選択する</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Equals/GetHashCode で使用するメンバーを選択する</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">上書きを生成する...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">上書きするメンバーを選択する</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">null チェックを追加する</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">string.IsNullOrEmpty' チェックを追加する</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">string.IsNullOrWhiteSpace' チェックを追加する</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">フィールド '{0}' を初期化する</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">プロパティ '{0}' を初期化する</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">null チェックを追加する</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">演算子を生成する</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">{0} を実装する</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">報告された診断 '{0}' のソースの場所がファイル '{1}' にありますが、これは、分析対象のコンパイルの一部ではありません。</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">報告された診断 '{0}' のソースの場所はファイル '{2}' 内の '{1}' ですが、これは指定されたファイルの外です。</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">{0} (プロジェクト{1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">アクセシビリティ修飾子を追加します</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">宣言を参照の近くに移動します</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">自動プロパティに変換する</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">警告: メソッドがメタデータのシンボルをオーバーライドします</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">{0} を使用します</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">引数の名前 '{0}' を追加します (末尾の引数を含む)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">ローカル関数</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">インデクサー</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">エイリアスのあいまいな型 '{0}'</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">警告: 反復処理中にコレクションが変更されました。</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">警告: 繰り返し変数が関数の境界を超えました。</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">警告: 反復処理中にコレクションが変更される可能性があります。</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">世界共通の完全な日付/時刻</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">"U" 標準書式指定子は、指定されたカルチャの DateTimeFormatInfo.FullDateTimePattern プロパティで定義されるカスタム日時書式設定文字列を表します。このパターンは "F" パターンと同じです。ただし、DateTime 値は、書式設定される前に自動的に UTC に変換されます。</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">世界共通の並べ替え可能な日付/時刻</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">"u" 標準書式指定子は、DateTimeFormatInfo.UniversalSortableDateTimePattern プロパティで定義されているカスタム日時書式設定文字列を表します。このパターンには定義済み標準が反映されています。また、プロパティは読み取り専用です。したがって、使用されているカルチャまたは指定された書式プロバイダーに関係なく、これは常に同じになります。カスタム書式設定文字列は "yyyy'-'MM'-'dd HH':'mm':'ss'Z'" です。この標準書式指定子が使用されている場合、書式設定操作または解析操作では常にインバリアント カルチャが使用されます。 書式設定後の文字列では、時刻が世界協定時刻 (UTC) として表されていなければなりませんが、書式設定操作によって元の DateTime 値が変換されることはありません。このため、書式設定する前に DateTime.ToUniversalTime メソッドを呼び出して、DateTime 値を UTC に変換する必要があります。</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">それを含むメンバーの使用の更新</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">それを含むプロジェクトの使用の更新</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">それを含む型の使用の更新</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">依存プロジェクトの使用の更新</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">UTC 時間と分のオフセット</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">DateTime 値の場合、"zzz" カスタム書式指定子は、オペレーティング システムのローカル タイム ゾーンの、UTC を基準とした符号付きオフセット (時間および分単位) を表します。インスタンスの DateTime.Kind プロパティの値は反映されません。このため、DateTime 値に対して "zzz" 書式指定子を使用することはお勧めしません。 DateTimeOffset 値を使用した場合、この書式指定子は、DateTimeOffset 値の UTC を基準とするオフセット (時間および分単位)を表します。 このオフセットは、常に先頭の符号と共に表示されます。プラス記号 (+) は UTC より時間が進んでいることを示し、マイナス記号 (-) は UTC よりも時間が遅れていることを示します。1 桁のオフセットは、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">UTC 時間のオフセット (1 ~ 2 桁)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">DateTime 値で使用した場合、"z" カスタム書式指定子は、オペレーティング システムのローカル タイムゾーンの、世界協定時刻 (UTC) を基準とした符号付きオフセット (時間単位) を表します。インスタンスの DateTime.Kind プロパティの値は反映されません。このため、DateTime 値に対して "z" 書式指定子を使用することはお勧めできません。 DateTimeOffset 値で使用した場合、この書式指定子は DateTimeOffset 値の UTC を基準とするオフセット (時間単位) を表します。 このオフセットは、常に先頭の符号と共に表示されます。プラス記号 (+) は UTC より時間が進んでいることを示し、マイナス記号 (-) は UTC よりも時間が遅れていることを示します。1 桁のオフセットは、先行ゼロなしで書式設定されます。 他のカスタム書式指定子が使用されていない場合、"z" は標準の日時書式指定子として解釈され、FormatException をスローします。</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">UTC 時間のオフセット (2 桁)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">DateTime 値で使用した場合、"zz" カスタム書式指定子は、オペレーティング システムのローカル タイム ゾーンの、UTC を基準とした符号付きオフセット (時間単位) を表します。インスタンスの DateTime.Kind プロパティの値は反映されません。このため、DateTime 値に対して "zz" 書式指定子を使用することはお勧めしません。 DateTimeOffset 値で使用した場合、この書式指定子は DateTimeOffset 値の UTC を基準とするオフセット (時間単位) を表します。 このオフセットは、常に先頭の符号と共に表示されます。プラス記号 (+) は UTC より時間が進んでいることを示し、マイナス記号 (-) は UTC よりも時間が遅れていることを示します。1 桁のオフセットは、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">[x-y] 範囲の順序が逆です</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">年 (1 ~ 2 桁)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">"Y" カスタム書式指定子は、年を1桁または2桁の数値として表します。年が2桁を超える場合は、2桁の下位桁のみが結果に表示されます。2桁の年の最初の桁がゼロで始まる場合 (たとえば 2008)、先頭に0を付けずに数値を書式設定します。 "Y" 書式指定子が、その他のカスタム書式指定子なしで使用されている場合、"y" は標準の日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">年 (2 桁)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">"yy" カスタム書式指定子は、年を 2 桁の数値として表します。年が 2 桁を超える場合、結果には下 2 桁のみが表示されます。有効数字 2 桁に満たない年については、先行ゼロが追加され 2 桁の数値で表されます。 解析操作では、"yy" カスタム書式指定子を使用して解析された 2 桁の年は、書式プロバイダーの現在のカレンダーの Calendar.TwoDigitYearMax プロパティに基づいて解釈されます。次の例は、2 桁の年を含む日付の文字列表現を、en-US カルチャ (このケースでは現在のカルチャ) の既定のグレゴリオ暦を使用して解析し、その後、現在のカルチャの CultureInfo オブジェクトを、TwoDigitYearMax プロパティが変更されている GregorianCalendar オブジェクトを使用するように変更しています。</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">年 (3 ~ 4 桁)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">"yyy" カスタム書式指定子は、年を 3 桁以上で表します。年が有効数字 3 桁を超える場合、書式設定後の文字列にはすべての桁が表示されます。3 桁に満たない年については、先行ゼロが追加され 3 桁の数値で表されます。</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">年 (4 桁)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">"yyyy" カスタム書式指定子は、年を 4 桁以上で表します。年が有効数字 4 桁を超える場合、書式設定後の文字列にはすべての桁が表示されます。4 桁に満たない年については、先行ゼロが追加され 4 桁の数値で表されます。</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">年 (5 桁)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">"yyyyy" カスタム書式指定子 (任意の数の "y" 指定子を追加可能) は、年を 5 桁以上で表します。年が有効数字 5 桁を超える場合、書式設定後の文字列にはすべての桁が表示されます。年が 5 桁に満たない年については、先行ゼロが追加され 5 桁の数値で表されます。 "y" 指定子を追加すると、数値の桁数が "y" 指定子の数と同じになるまで、先行ゼロが数値に追加されます。</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">年月</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">"Y" または "y" 標準書式指定子は、指定されたカルチャの DateTimeFormatInfo.YearMonthPattern プロパティによって定義されたカスタム日時書式設定文字列を表します。たとえば、インバリアント カルチャのカスタム書式設定文字列は "yyyy MMMM" です。</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="ja" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (短縮)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">"t" カスタム書式指定子は、AM/PM 指定子の最初の文字を表します。ローカライズされた適切な指定子は、現在または特定のカルチャの DateTimeFormatInfo.AMDesignator または DateTimeFormatInfo.PMDesignator プロパティから取得されます。AM 指定子は、0:00:00 (深夜) から 11:59:59.999 までのすべての時刻に使用されます。PM 指定子は、12:00:00 (正午) から 23:59:59.999 までのすべての時刻に使用されます。 "t" 書式指定子がその他のカスタム書式指定子なしで使用されている場合、"t" 標準日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (完全)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">"tt" カスタム書式指定子 (任意の数の "t" 指定子を追加できます) は、AM/PM 指定子全体を表します。ローカライズされた適切な指定子は、現在または特定のカルチャの DateTimeFormatInfo.AMDesignator または DateTimeFormatInfo.PMDesignator プロパティから取得されます。AM 指定子は、0:00:00 (深夜) から 11:59:59.999 までのすべての時刻に使用されます。PM 指定子は、12:00:00 (正午) から 23:59:59.999 までのすべての時刻に使用されます。 "tt" 指定子は、AM と PM を区別するためにこれが必要な言語でお使いください。たとえば、日本語の場合、AM と PM の指定子は、最初の文字ではなく、2 番目の文字が異なります。</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">減算は、文字クラスの最後の要素でなければなりません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">'DebuggerDisplay' 属性の追加</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">明示的なキャストの追加</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">メンバー名を追加します</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">すべてのパラメーターに対して null チェックを追加する</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">省略可能なパラメーターをコンストラクターに追加する</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">パラメーターを '{0}' に追加します (オーバーライド/実装も行います)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">パラメーターをコンストラクターに追加する</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">プロジェクト参照を '{0}' に追加します。</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">参照を '{0}' に追加します。</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">アクションは空にできません。</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">タプル要素名 '{0}' を追加します</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">折り返された引数を揃える</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">折り返されたパラメーターを調整します</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">選択条件をコメントにできません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">選択条件が捕捉されないため、名前を指定できません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">ファイル ヘッダーの基本設定を適用する</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">オブジェクト/コレクションの初期化の基本設定を適用します</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">待機中のタスクから '{0}' が返されました</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">待機中のタスクは値を返しません</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">アクセス不可能な未実装のメンバーが基底クラスに含まれています</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">変更を適用できません。予期しないエラー: '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">文字範囲にクラス \{0} を含めることはできません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">キャプチャ グループ番号は Int32.MaxValue 以下でなければなりません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">キャプチャ番号を 0 にすることはできません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;推測する&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;省略&gt;</target> <note /> </trans-unit> <trans-unit id="Change_namespace_to_0"> <source>Change namespace to '{0}'</source> <target state="translated">名前空間を '{0}' に変更します</target> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">グローバル名前空間に変更します</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">例外で停止中は変更できません</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">プロジェクト '{0}' で行った変更は、アプリケーションの実行中には適用されません</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application"> <source>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</source> <target state="new">Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">{0} コード スタイルの構成</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">{0} の重要度の構成</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">すべての '{0}' アナライザーの重要度を構成します</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">すべてのアナライザーの重要度を構成します</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">LINQ に変換</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">'{0}' に追加します</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">クラスに変換</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">LINQ (呼び出し形式) へ変換</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">レコードへの変換</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">レコード構造体に変換する</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">構造体に変換</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">型を '{0}' に変換</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">フィールド '{0}' を作成して割り当てる</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">プロパティ '{0}' を作成して割り当てる</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">残りをフィールドとして作成して割り当てる</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">残りをプロパティとして作成して割り当てる</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">このコードを変更しないでください。クリーンアップ コードを '{0}' メソッドに記述します</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">ソース ファイル '{0}' の現在のコンテンツが、ビルドされたソースと一致しません。デバッグ中にこのファイルに加えられた変更は、そのコンテンツがビルドされたソースと一致するまで適用されません。</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">このサービスを作成したワークスペースにドキュメントが含まれている必要があります</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">エディット コンティニュ</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">エディット コンティニュはモジュールで許可されませんでした</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">プロジェクト '{0}' で変更を行うと、デバッグ セッションは続行されません。{1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">編集して続行は、ランタイムでサポートされていません。</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">ファイル {0}' の読み取り中にエラーが発生しました: {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">CodeFixProvider のインスタンスの作成でエラーが発生しました</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">CodeFixProvider '{0}' のインスタンスの作成でエラーが発生しました</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">例:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">例:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">明示的に実装されたレコードのメソッドには、コンパイラ生成と同等の '{0}' と一致するパラメーター名が必要です</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">基底クラスの抽出...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">インターフェイスの抽出...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">ローカル関数の抽出</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">メソッドを抽出する</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">データ フローを分析できませんでした: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">書式設定を修正します</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">'{0}' の入力ミスを修正します</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">ドキュメントのフォーマット</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">ドキュメントの書式設定</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">比較演算子の生成</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">'{0}' にコンストラクターを生成します (フィールドを含む)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">'{0}' にコンストラクターを生成します (プロパティを含む)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">'{0}' の生成</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">パラメーター '{0}' の生成</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">パラメーター '{0}' の生成 (およびオーバーライド/実装)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">無効\末尾のパターン</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">{x,y} で x &gt; y は無効です</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">'{0}' を明示的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">'{0}' を暗黙的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">抽象クラスの実装</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">すべてのインターフェイスを明示的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">すべてのインターフェイスを暗黙的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">すべてのメンバーを明示的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">明示的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">暗黙的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">残りのメンバーを明示的に実装する</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">'{0}' を通じて実装します</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">不完全な \p{X} 文字エスケープです</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">すべての引数にインデントを設定します</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">すべてのパラメーターにインデントを設定します</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">折り返された引数にインデントを設定します</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">折り返されたパラメーターにインデントを設定します</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">インライン '{0}'</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">インラインおよび '{0}' の保持</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">16 進数の数字が正しくありません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">定数を導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">フィールドを導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">ローカルを導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">クエリ変数を導入します</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">無効なグループ名: グループ名は単語文字で始める必要があります</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">クラスを 'abstract' にしてください</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">静的にする</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">条件を反転します</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">不正な形式</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">間違った形式の \p{X} エスケープ文字です</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">間違った形式の \k&lt;...&gt;名前付き逆参照です</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">入れ子になった '{0}' ステートメントとマージします</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">次の '{0}' ステートメントとマージします</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">外部の '{0}' ステートメントとマージします</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">前の '{0}' ステートメントとマージします</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} は、読み取りとシーク操作をサポートするストリームを返す必要があります。</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">コントロール文字がありません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">名前空間へのコンテンツの移動...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">ファイルを '{0}' に移動します</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">ファイルをプロジェクト ルート フォルダーに移動します</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">名前空間に移動します...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">入れ子になった量指定子 {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">メソッド呼び出しを挿入する有効な場所がありません。</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">) が足りません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">演算子</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">プロパティ参照を更新できません</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">最大 '{0}' 個をプル</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">'{1}' まで '{0}' をプルします</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">基本型のメンバーをプル...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">メンバーを新しい基底クラスに引き上げます...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">量指定子 {x,y} の前に何もありません</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">未定義のグループへの参照</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">未定義のグループ名 {0} への参照</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">未定義のグループ番号 {0} への参照</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">すべての制御文字。これには、Cc、Cf、Cs、Co、Cn カテゴリが含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">すべての制御文字</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">すべての分音記号マーク。これには Mn、Mc、Me カテゴリが含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">すべての分音記号マーク</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">すべての文字。これには、Lu、Ll、Lt、Lm、Lo 文字が含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">すべての文字</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">すべての数。これには、Nd、Nl、No カテゴリが含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">すべての数</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">すべての句読点文字。これには、Pc、Pd、Ps、Pe、Pi、Pf、Po カテゴリが含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">すべての句読点文字</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">すべての区切り文字。これには、Zs、Zl、Zp カテゴリが含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">すべての区切り文字</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">すべての記号。これには、Sm、Sc、Sk、So カテゴリが含まれます。</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">すべての記号</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">縦棒 (|) を使用して一連のパターンのいずれかに一致させることができます。| 文字を使用して各パターンを区切ります。</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">代替</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">ピリオド文字 (.) は、\n (改行文字 \u000A) 以外の任意の文字に一致します。RegexOptions.Singleline オプションによって正規表現パターンが変更された場合、または . 文字クラスを含むパターンの部分が 's' オプションによって変更された場合、. は任意の文字と一致します。</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">任意の文字</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">アトミック グループ (バックトラッキングしない部分式、アトミック部分式、1 回のみの部分式などの他のいくつかの正規表現エンジンで認識される) はバックトラッキングを無効にします。正規表現エンジンは、入力文字列内のできるだけ多くの文字と一致します。一致する文字列が見つからなくなっても、バックトラッキングして代替パターン一致を試みることはありません。(つまり、部分式はその部分式単体と一致する文字列のみと一致します。部分式とその後続の部分式に基づく文字列の一致は試行しません。) バックトラッキングが成功しないことがわかっている場合は、このオプションを使用することをお勧めします。正規表現エンジンで不要な検索が実行されないようにすることで、パフォーマンスが向上します。</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">アトミック グループ</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">バックスペース文字 \u0008 に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">バックスペース文字</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">グループ定義の均等化では、既に定義されていたグループの定義を削除し、既に定義されていたグループと現在のグループの間隔を現在のグループに格納します。 'name1' は現在のグループ (省略可能) で、'name2' は既に定義されていたグループで、'subexpression' は有効な正規表現パターンです。グループ定義の均等化では、name2 の定義を削除し、name2 と name1 の間隔を name1 に格納します。name2 グループが定義されていない場合、一致はバックトラックされます。name2 の最後の定義を削除すると、name2 の以前の定義がわかるため、このコンストラクトによって、かっこや左右の角かっこなど入れ子になったコンストラクトを追跡するカウンターとして name2 グループのキャプチャのスタックを使用できます。 グループ定義の均等化では、'name2' をスタックとして使用します。入れ子になった各コンストラクトの開始文字が、グループとその Group.Captures コレクションに配置されます。終了文字が一致すると、対応する開始文字がグループから削除され、Captures コレクションが 1 つ減らされます。入れ子になったすべてのコンストラクトの開始文字と終了文字が一致したら、name1 は空になります。</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">グループの均等化</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">ベース グループ</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">ベル (アラーム) 文字 \u0007 に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">ベル文字</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">復帰文字 \u000D に一致します。\r は改行文字 \n と同じではないことにご注意ください。</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">復帰文字</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">文字クラスの減算では、ある文字クラスから別の文字クラスの文字を除外した文字セットが生成されます。 'base_group' は文字グループまたは範囲の肯定または否定です。'excluded_group' コンポーネントは、別の文字グループの肯定または否定、つまり別の文字クラス減算式です (つまり、文字クラス減算式を入れ子にすることができます)。</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">文字クラスの減算</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">文字グループ</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">コメント</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">この言語要素では、最初のパターンに一致するかどうかに応じて、2 つのパターンのいずれかの照合を実行します。 'expression' は照合する最初のパターン、'yes' は expression が一致した場合に照合するパターン、'no' は expression が一致しなかった場合に照合するパターン (省略可能) です。</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">条件式の一致</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">この言語要素では、指定されたキャプチャ グループに一致するかどうかに応じて、2 つのパターンのいずれかを照合します。 'name' はキャプチャ グループの名前 (または番号)、'yes' は 'name' (または 'number') が一致する場合に照合する式です。'no' は一致しない場合に照合する省略可能な式です。</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">条件付きグループの一致</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">\G アンカーは、前回の一致が終了した位置で一致する必要があることを指定します。このアンカーを Regex.Matches メソッドまたは Match.NextMatch メソッドと共に使用すると、すべての一致が連続することになります。</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">連続した一致</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">ASCII 制御文字に一致します。X は制御文字の文字です。たとえば、\cC は CTRL-C を表します。</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">制御文字</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d は任意の 10 進数に一致します。標準 10 進数の 0-9 とその他の文字セットの 10 進数を含む \p{Nd} 正規表現パターンに相当します。 ECMAScript 準拠の動作が指定されている場合、\d は [0-9] と同等です</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">10 進数の文字</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">番号記号 (#) は、正規表現パターンの最後にあるエスケープされていない # 文字から始まり、行の終わりまで続く x モードのコメントを示します。このコンストラクトを使用するには、Regex オブジェクトをインスタンス化するとき、または静的な Regex メソッドを呼び出すときに、x オプションを有効にする (インライン オプションを使用) か、オプション パラメーターに RegexOptions.IgnorePatternWhitespace 値を指定する必要があります。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">行末コメント</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">\z アンカーは、入力文字列の末尾で一致する必要があることを指定します。$ 言語要素と同様に、\z では RegexOptions.Multiline オプションが無視されます。\Z 言語要素とは異なり、\z は文字列末尾にある \n 文字には一致しません。したがって、入力文字列の最後の行にのみ一致することができます。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">文字列の末尾のみ</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">\Z アンカーは、入力文字列の末尾、または入力文字列の末尾にある \n の前で一致する必要があることを指定します。これは $ アンカーと同じですが、\Z では RegexOptions.Multiline オプションが無視される点が異なります。したがって、複数行文字列では、最後の行の末尾か、\n の前の最後の行にのみ一致することができます。 \Z アンカーは \n に一致しますが、\r\n (CR/LF 文字の組み合わせ) には一致しません。CR/LF と一致させるには、\r?\Z を正規表現パターンに含めます。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">文字列の末尾または最後の改行の前</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">$ アンカーは、その前にあるパターンが、入力文字列の末尾、または入力文字列の末尾にある \n の前で一致する必要があることを指定します。RegexOptions.Multiline オプションを指定して $ を使用した場合は、行の末尾でも一致します。 $ アンカーは、\n に一致しますが、\r\n (復帰文字と改行文字の組み合わせ、つまり CR/LF) には一致しません。CR/LF 文字の組み合わせに一致させるには、正規表現パターンに \r?$ を含めます。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">文字列または行の末尾</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">エスケープ文字 \u001B に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">エスケープ文字</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">除外されたグループ</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">式</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">フォーム フィード文字 \u000C に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">フォーム フィード文字</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">このグループ化構成体は、部分式内の指定されたオプションを適用するか無効にします。有効にするオプションは疑問符の後に指定し、無効にするオプションはマイナス記号の後に指定します。許可されているオプションは次のとおりです。 i 大文字と小文字を区別しない一致を使用します。 m ^ と $ は、(入力文字列の先頭および末尾ではなく) 各行の先頭および末尾と一致します。 s 単一行モードを使用します。このモードでは、ピリオド (.) は任意の 1 文字と一致します (\n を除くすべての文字の代用)。 n 名前のないグループをキャプチャしません。(?&lt;name&gt; subexpression) という形式で、 明示的に名前または番号が付加されたグループのみを有効なキャプチャ対象とします。 x エスケープされていない空白をパターンから除外し、 番号記号 (#) の後ろのコメントを有効にします。</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">グループ オプション</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">ASCII 文字に一致します。## は、2 桁の 16 進数の文字コードです。</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">16 進数のエスケープ</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">(?# comment) コンストラクトを使用すると、正規表現にインライン コメントを含めることができます。Regex.ToString メソッドによって返される文字列にコメントが含まれますが、正規表現エンジンはパターン マッチングでコメントのどの部分も使用しません。コメントは、最初の終わりかっこで終了します。</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">インライン コメント</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">正規表現の残りの部分の特定のパターン マッチング オプションを有効または無効にします。有効にするオプションは疑問符の後に指定し、無効にするオプションはマイナス記号の後に指定します。許可されているオプションは次のとおりです。 i 大文字と小文字を区別しない一致を使用します。 m ^ と $ は、(入力文字列の先頭および末尾ではなく) 各行の先頭および末尾と一致します。 s 単一行モードを使用します。このモードでは、ピリオド (.) は任意の 1 文字と一致します (\n を除くすべての文字の代用)。 n 名前のないグループをキャプチャしません。(?&lt;name&gt; subexpression) という形式で、 明示的に名前または番号が付加されたグループのみを有効なキャプチャ対象とします。 x エスケープされていない空白をパターンから除外し、番号記号 (#) の後ろの コメントを有効にします。</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">インライン オプション</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">正規表現の問題: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">文字、小文字</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">文字、修飾子</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">文字、その他</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">文字、タイトル文字</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">文字、大文字</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">結合文字、囲み</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">結合文字、幅なし</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">結合文字、幅あり</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">{n,}? 量指定子は、直前の要素の n 回以上の繰り返しに一致します。ここで、n は任意の整数ですが、最も少ない回数に一致します。これは、最長一致の量指定子 {n,} に対応する、最短一致の量指定子です</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">'n' 回以上一致 (最短一致)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">{n,} 量指定子は、直前の要素の n 回以上の繰り返しに一致します。ここで、n は任意の整数です。{n,} は最長一致の量指定子であり、最短一致でこれに対応するのは {n,}? です</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">'n' 回以上一致</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">{n,m}? 量指定子は、直前の要素の n 回から m 回までの繰り返しのうち、最も少ない繰り返しに一致します。ここで、n と m は整数です。これは、最長一致の量指定子 {n,m} に対応する、最短一致の量指定子です</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">'n' 回以上一致 (最短一致)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">{n,m} 量指定子は、直前の要素の n 回以上、m 回以下の繰り返しに一致します。ここで、n と m は整数です。{n,m} は最長一致の量指定子であり、最短一致でこれに対応するのは {n,m}? です</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">'m' 回から 'n' 回の一致</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">{n}? 量指定子は、直前の要素の n 回の繰り返しに一致します。ここで、n は任意の整数です。これは、最長一致の量指定子 {n}+ に対応する、最短一致の量指定子です</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">ちょうど 'n' 回一致 (最短一致)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">{n} 量指定子は、直前の要素の n 回の繰り返しに一致します。ここで、n は任意の整数です。{n} は最長一致の量指定子であり、最短一致でこれに対応するのは {n}? です</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">ちょうど 'n' 回一致</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">+? 量指定子は、直前の要素の 1 回以上の繰り返しのうち、最も少ない繰り返しに一致します。これは、最長一致の量指定子 + に対応する、最短一致の量指定子です</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">1 回以上一致 (最短一致)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">+ 量指定子は、直前の要素の 1 回以上の繰り返しに一致します。これは {1,} と同じです。+ は最長一致の量指定子であり、最短一致でこれに対応するのは +? です。</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">1 回以上一致</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">*? 量指定子は、直前の要素の 0 回以上の繰り返しのうち、最も少ない繰り返しに一致します。これは、最長一致の量指定子 * に対応する、最短一致の量指定子です</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">0 回以上一致 (最短一致)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">* 量指定子は、直前の要素の 0 回以上の繰り返しに一致します。これは {0,} と同じです。* は最長一致の量指定子で、最短一致でこれに対応するのは *? です。</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">0 回以上一致</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">?? 量指定子は、直前の要素の 0 回または 1 回の繰り返しのうち、最も少ない繰り返しに一致します。これは、最長一致の量指定子 ? に対応する、最短一致の量指定子です</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">0 回または 1 回一致 (最短一致)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">? 量指定子は、直前の要素の 0 回または 1 回の繰り返しに一致します。これは {0,1} 量指定子と同じです。? は最長一致の量指定子であり、最短一致でこれに対応するのは ?? です。</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">0 回または 1 回一致</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">このグループ化構成体は、一致した 'subexpression' をキャプチャします。ここで、'subexpression' は任意の有効な正規表現パターンです。かっこを使用するキャプチャでは、正規表現の左かっこの順序に従って、左から右へ自動的に 1 から番号が付けられます。番号が 0 のキャプチャは、正規表現パターン全体に一致するテキストです。</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">一致した部分式</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">名前</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">名前付きまたは番号付き</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">名前付きまたは番号付きの前方参照。 'name' は、正規表現パターンで定義されているキャプチャ グループの名前です。</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">名前付き前方参照</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">一致した部分式をキャプチャし、名前または数字でアクセスできるようにします。 'name' は有効なグループ名であり、'subexpression' は有効な正規表現パターンです。'name' は、句読点文字を含めることができません。また、先頭を数字にすることもできません。 正規表現パターン マッチング メソッドの RegexOptions パラメーターに RegexOptions.ExplicitCapture フラグが含まれている場合や、n オプションがこの部分式に適用されている場合、部分式をキャプチャする唯一の方法は、キャプチャ グループを明示的に指定することです。</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">一致した名前付き部分式</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">文字グループの否定では、入力文字列に含まれなければ一致と見なされる文字の一覧を指定します。文字の一覧は個別に指定されます。 2 つ以上の文字範囲を連結することができます。たとえば、"0" から "9" の範囲の 10 進数、"a" から "f" の範囲の小文字、"A" から "F" の範囲の大文字を指定するには、[0-9a-fA-F] を使用します。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">文字グループの否定</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">文字範囲の否定では、入力文字列に含まれなければ一致と見なされる文字の一覧を指定します。'firstCharacter' は範囲の先頭の文字で、'lastCharacter' は範囲の末尾の文字です。 2 つ以上の文字範囲を連結することができます。たとえば、"0" から "9" の範囲の 10 進数、"a" から "f" の範囲の小文字、"A" から "F" の範囲の大文字を指定するには、[0-9a-fA-F] を使用します。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">文字範囲の否定</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">正規表現のコンストラクト \P{ name } は、Unicode 一般カテゴリにも名前付きブロックにも属さない任意の文字と一致します。ここで、name はカテゴリの省略形または名前付きブロックの名前です。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">Unicode カテゴリの否定</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">改行文字 \u000A に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">改行文字</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">いいえ</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D は、数字以外の任意の文字に一致します。\P{Nd} 正規表現パターンに相当します。 ECMAScript 準拠の動作が指定されている場合、\D は [^0-9] と同等です</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">数字以外の文字</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S は空白以外の任意の文字に一致します。これは、[^\f\n\r\t\v\x85\p{Z}] 正規表現パターンに相当します。また、\s (空白文字に一致) に相当する正規表現パターンの逆に相当します。 ECMAScript 準拠の動作が指定されている場合、\S は [^ \f\n\r\t\v] と同等です</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">空白以外の文字</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">\B アンカーは、ワード境界では一致しないことを指定します。これは、\b アンカーと逆の働きをします。</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">ワード境界以外</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W は単語以外の文字に一致します。次に示す Unicode カテゴリのものを除く任意の文字と一致します。 Ll 文字、小文字 Lu 文字、大文字 Lt 文字、タイトル文字 Lo 文字、その他 Lm 文字、修飾子 Mn 結合文字、幅なし Nd 数字、10 進数字 Pc 句読点、接続 ECMAScript 準拠の動作が指定されている場合、\W は [^a-zA-Z_0-9] と同等です</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">単語以外の文字</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">このコンストラクトは、部分式で一致する部分文字列をキャプチャしません: 非キャプチャ グループのコンストラクトは通常、量指定子がグループに適用されても、グループによってキャプチャされた部分文字列が対象にならない場合に使用されます。 正規表現に、入れ子になったグループ化構成体が含まれている場合、外部の非キャプチャ グループ コンストラクトは内部の入れ子になったグループ コンストラクトに適用されません。</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">非キャプチャ グループ</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">数字、10 進数字</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">数字、文字</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">数字、その他</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">番号付き前方参照。ここで、'number' は、正規表現でのキャプチャ グループの位置を表す序数です。たとえば、\4 は 4 番目のキャプチャ グループの内容と一致します。 8 進数エスケープ コード (\16 など) と \number 前方参照は同じ表記を使用するため、あいまいさがあります。あいまいさが問題になる場合は、\k&lt;name&gt; 表記を使用できます。この表記はあいまいさがなく、8 進数文字コードと混同されません。同様に、\xdd などの 16 進数コードはあいまいさがなく、前方参照と混同されません。</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">番号付き前方参照</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">その他、制御</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">その他、書式</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">その他、未割り当て</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">その他、プライベート用途</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">その他、サロゲート</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">文字グループの肯定では、いずれかが入力文字列に含まれると一致と見なされる文字の一覧を指定します。</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">文字グループの肯定</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">文字範囲の肯定では、いずれかが入力文字列に含まれると一致と見なされる文字の範囲を指定します。'firstCharacter' は範囲の先頭の文字で、'lastCharacter' は範囲の末尾の文字です。 </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">文字範囲の肯定</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">句読点、閉じ</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">句読点、接続</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">句読点、ダッシュ</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">句読点、終了引用符</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">句読点、開始引用符</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">句読点、開き</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">句読点、その他</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">区切り、行</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">区切り、段落</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">区切り、空白</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">\A アンカーは、入力文字列の先頭で一致する必要があることを指定します。これは ^ アンカーと同じですが、\A では RegexOptions.Multiline オプションが無視される点が異なります。したがって、複数行の入力文字列では最初の行の先頭にのみ一致することができます。</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">文字列の先頭のみ</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">^ アンカーは、その後に続くパターンが、文字列の最初の文字位置から始まる必要があることを指定します。RegexOptions.Multiline オプションを指定して ^ を使用した場合は、各行の先頭で一致する必要があります。</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">文字列または行の先頭</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">部分式</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">記号、通貨</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">記号、数学</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">記号、修飾子</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">記号、その他</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">タブ文字 \u0009 に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">タブ文字</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">正規表現のコンストラクト \p{ name } は、Unicode 一般カテゴリまたは名前付きブロックに属する任意の文字に一致します。ここで、name はカテゴリの省略形または名前付きブロックの名前です。</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">Unicode カテゴリ</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">値が #### 16 進数の UTF-16 コード単位に一致します。</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">Unicode エスケープ</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Unicode 一般カテゴリ: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">垂直タブ文字 \u000B に一致します</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">垂直タブ文字</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s は任意の空白文字に一致します。次のエスケープ シーケンスと Unicode カテゴリに相当します: \f フォーム フィード文字、\u000C \n 改行文字、\u000A \r 復帰文字、\u000D \t タブ文字、\u0009 \v 垂直タブ文字、\u000B \x85 省略記号または NEXT LINE (NEL) 文字 (...)、\u0085 \p{Z} 任意の区切り文字に一致します ECMAScript 準拠の動作が指定されている場合、\s は [ \f\n\r\t\v] と同等です</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">空白文字</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">\b アンカーは、ワード文字 (\w 言語要素) と単語以外の文字 (\W 言語要素) の境界で一致する必要があることを示します。単語文字は英数字とアンダースコアで構成され、単語以外の文字は、英数字でもアンダースコアでもない任意の文字で構成されます。文字列の先頭または末尾にあるワード境界でも一致する可能性があります。 \b アンカーは、部分式を単語の先頭または末尾ではなく単語全体に一致させる目的で頻繁に使用されます。</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">ワード境界</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w は任意の単語文字に一致します。単語文字は、次に示すいずれかの Unicode カテゴリのメンバーです: Ll 文字、小文字 Lu 文字、大文字 Lt 文字、タイトル文字 Lo 文字、その他 Lm 文字、修飾子 Mn 結合文字、幅なし Nd 数字、10 進数字 Pc 句読点、接続 ECMAScript 準拠の動作が指定されている場合、\w は [a-zA-Z_0-9] と同等です</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">単語文字</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">はい</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">ゼロ幅の否定先読みアサーション。ここで、一致と見なされるためには、入力文字列が subexpression の正規表現パターンと一致しない必要がありますが、一致した文字列は一致結果には含まれません。 通常、ゼロ幅の否定先読みアサーションは正規表現の先頭または末尾で使用されます。正規表現の先頭の場合は、類似してもより一般的なパターンを照合するように正規表現の先頭で定義されているときに、一致しない必要がある特定のパターンを定義できます。この場合は、バックトラッキングを制限するためによく使用されます。正規表現の末尾の場合は、一致の末尾に出現できない部分式を定義できます。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">ゼロ幅の否定先読みアサーション</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">ゼロ幅の否定後読みアサーション。ここで、一致と見なされるためには、'subexpression' が入力文字列の現在の位置の左側に出現しない必要があります。'subexpression' と一致しない部分文字列は一致結果には含まれません。 通常、ゼロ幅の否定後読みアサーションは正規表現の先頭で使用されます。定義されるパターンでは、後に続く文字列内の一致が除外されます。これは、キャプチャされたグループの最後の文字がそのグループの正規表現パターンと一致する 1 つ以上の文字にならない必要がある場合に、バックトラッキングを制限するためにも使用されます。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">ゼロ幅の否定後読みアサーション</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">ゼロ幅の肯定先読みアサーション。ここで、一致と見なされるためには、入力文字列が 'subexpression' の正規表現パターンと一致する必要がありますが、一致した部分文字列は一致結果には含まれません。ゼロ幅の肯定先読みアサーションはバックトラックしません。 通常、ゼロ幅の肯定先読みアサーションは正規表現パターンの末尾にあります。一致と見なされるには文字列の末尾にある必要がありますが、一致には含まれない部分文字列を定義します。これは、過度なバックトラッキングを防ぐためにも役立ちます。ゼロ幅の肯定先読みアサーションを使用して、特定のキャプチャされたグループの先頭テキストが、そのキャプチャされたグループに対して定義されたパターンのサブセットと一致するテキストになるようにすることができます。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">ゼロ幅の肯定先読みアサーション</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">ゼロ幅の肯定後読みアサーション。ここで、一致と見なされるためには、'subexpression' が入力文字列の現在の位置の左側に出現する必要がありますが、'subexpression' は一致結果には含まれません。ゼロ幅の肯定後読みアサーションはバックトラックしません。 通常、ゼロ幅の肯定後読みアサーションは正規表現の先頭で使用されます。定義されるパターンは一致の事前条件ですが、一致結果には含まれません。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">ゼロ幅の肯定後読みアサーション</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">メタデータ内に検出される関連するメソッド シグネチャは更新されません。</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">ドキュメントの削除はサポートされていません</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">'async' 修飾子を削除してください</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">不要なキャストを削除する</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">未使用の変数を削除する</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">'{0}' を '{1}' に置き換える</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">競合マーカーの解決</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Rude 編集</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">アクセシビリティ修飾子を並べ替える</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">連続する '{0}' ステートメントに分割</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">入れ子になった '{0}' ステートメントに分割</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">ストリームは、読み取りとシーク操作をサポートする必要があります。</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">{0} の非表示</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: アンマネージド リソース (アンマネージド オブジェクト) を解放し、ファイナライザーをオーバーライドします</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: '{0}' にアンマネージド リソースを解放するコードが含まれる場合にのみ、ファイナライザーをオーバーライドします</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">ターゲットの種類が一致します</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">型 '{1}' を含むアセンブリ '{0}' が .NET Framework を参照しています。これはサポートされていません。</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">選択範囲に、宣言のないローカル関数呼び出しが含まれています。</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">(?()|) で | が多すぎます</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">) が多すぎます</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">ソース ファイル '{0}'、またはそれを含むプロジェクト用にビルドされた PDB を読み取れません。デバッグ中にこのファイルに加えられた変更は、そのコンテンツがビルドされたソースと一致するまで適用されません。</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">不明なプロパティ</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">不明なプロパティ '{0}'</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">認識されない制御文字</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">認識できないエスケープ シーケンス \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">認識されないグループ化構成体</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">未終了の [] セットです</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">未終了の (?#...) コメントです</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">すべての引数の折り返しを解除</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">すべてのパラメーターの折り返しを解除します</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">折り返しを解除してすべての引数にインデントを設定します</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">折り返しを解除し、すべてのパラメーターにインデントを設定します</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">引数リストの折り返しを解除</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">呼び出しチェーンの折り返し解除</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">式の折り返しを解除</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">パラメーター リストの折り返しを解除します</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">ラムダ式にブロック本体を使用する</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">ラムダ式に式本体を使用する</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">挿入された逐語的文字列を使用します</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">警告: ステートメントの変換時にセマンティクスが変更される可能性があります。</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">呼び出しチェーンの折り返しと配置</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">式を折り返して整列する</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">長い呼び出しチェーンの折り返しと配置</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">呼び出しチェーンの折り返し</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">すべての引数を折り返します</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">すべてのパラメーターを折り返します</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">式を折り返す</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">長い引数リストを折り返します</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">長い呼び出しチェーンの折り返し</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">長いパラメーター リストを折り返します</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">折り返し</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">ナビゲーション バーを使用してコンテキストを切り替えることができます。</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}' を NULL または空にすることはできません。</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}' を null または空白にすることはできません。</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">ここでは、'{0}' は null ではありません。</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">ここでは、'{0}' は null である可能性があります。</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">10,000,000 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffffff" カスタム書式指定子は、秒の小数部分の有効数字上位 7 桁を表します。つまり、日時の値のうち、秒の小数部分を 10,000,000 分の 1 秒単位で表します。 時刻値の 10,000,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">10,000,000 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFFF" カスタム書式指定子は、秒の小数部分の有効数字上位 7 桁を表します。つまり、日時の値のうち、秒の小数部分を 10,000,000 分の 1 秒単位で表します。ただし、末尾の 0 や、7 桁連続の 0 は表示されません。 時刻値の 10,000,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1,000,000 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffffff" カスタム書式指定子は、秒の小数部分の有効数字上位 6 桁を表します。つまり、日時の値のうち、秒の小数部分を 1,000,000 分の 1 秒単位で表します。 時刻値の 1,000,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1,000,000 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFF" カスタム書式指定子は、秒の小数部分の有効数字上位 6 桁を表します。つまり、日時の値のうち、秒の小数部分を 1,000,000 分の 1 秒単位で表します。ただし、末尾の 0 や、6 桁連続の 0 は表示されません。 時刻値の 1,000,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">100,000 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffff" カスタム書式指定子は、秒の小数部分の有効数字上位 5 桁を表します。つまり、日時の値のうち、秒の小数部分を 100,000 分の 1 秒単位で表します。 時刻値の 100,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">100,000 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFF" カスタム書式指定子は、秒の小数部分の有効数字上位 5 桁を表します。つまり、日時の値のうち、秒の小数部分を 100,000 分の 1 秒単位で表します。ただし、末尾の 0 や、5 桁連続の 0 は表示されません。 時刻値の 100,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">10,000 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffff" カスタム書式指定子は、秒の小数部分の有効数字上位 4 桁を表します。つまり、日時の値のうち、秒の小数部分を 10,000 分の 1 秒単位で表します。 時刻値の 10,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT バージョン 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">10,000 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFF" カスタム書式指定子は、秒の小数部分の有効数字上位 4 桁を表します。つまり、日時の値のうち、秒の小数部分を 10,000 分の 1 秒単位で表します。ただし、末尾の 0 や、4 桁連続の 0 は表示されません。 時刻値の 10,000 分の 1 秒単位の部分を表示することはできますが、この値は意味がない場合があります。日時の値の精度は、システム時計の分解能に依存しています。Windows NT 3.5 以降および Windows Vista のオペレーティング システムでは、時計の分解能は約 10 から 15 ミリ秒です。</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1,000 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">"fff" カスタム書式指定子は、秒の小数部分の有効数字上位 3 桁を表します。つまり、日時の値のミリ秒を表します。</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1,000 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">"FFF" カスタム書式指定子は、秒の小数部分の有効数字上位 3 桁を表します。つまり、日時の値のミリ秒を表します。ただし、末尾の 0 や、3 桁連続の 0 は表示されません。</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">100 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">"ff" カスタム書式指定子は、秒の小数部分の有効数字上位 2 桁を表します。つまり、日時の値のうち、秒の小数部分を 100 分の 1 秒単位で表します。</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">100 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">"FF" カスタム書式指定子は、秒の小数部分の有効数字上位 2 桁を表します。つまり、日時の値のうち、秒の小数部分を 100 分の 1 秒単位で表します。ただし、末尾の 0 や、2 桁連続の 0 は表示されません。</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">10 分の 1 秒単位</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">10 分の 1 秒単位 (0 以外)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">"F" カスタム書式指定子は、秒の小数部分の有効数字最上位桁を表します。つまり、日時値の秒の少数部分を 10 分の 1 秒単位で表します。この桁が 0 の場合は、何も表示されません。 "F" 書式指定子を他の書式指定子なしで使用すると、"F" 標準日時書式指定子として解釈されます。 ParseExact、TryParseExact、ParseExact、または TryParseExact メソッドと共に使用される "F" 書式指定子の数は、文字列を正常に解析するために存在して構わない秒の小数部分の最大桁数を示します。</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12 時間制 (1 - 2 桁)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"h" カスタム書式指定子は、時を 1 から 12 の数字で表します。つまり、午前 0 時または午後 0 時からの時間をカウントする 12 時間制で時が表されます。午前 0 時からカウントした特定の時は、正午からカウントした同じ時と区別できません。時は丸められず、1 桁の時は先行ゼロなしで書式設定されます。たとえば、午前または午後の 5:43 という時刻の場合、このカスタム書式指定子では "5" が表示されます。 "h" 書式指定子を他のカスタム書式指定子なしで使用すると、標準日時書式指定子として解釈され、FormatException がスローされます。</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12 時間制 (2 桁)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">"hh" カスタム書式指定子 (任意の数の "h" 指定子を追加できます) は、時を 01 から 12 の数字で表します。つまり、午前 0 時または午後 0 時からの時間をカウントする 12 時間制で時が表されます。午前 0 時からカウントした特定の時は、正午からカウントした同じ時と区別できません。時は丸められず、1 桁の時は先行ゼロ付きで書式設定されます。たとえば、午前または午後の 5:43 という時刻の場合、この書式指定子では "05" が表示されます。</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24 時間制 (1 - 2 桁)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"H" カスタム書式指定子は、時を 0 から 23 の数字として表します。つまり、午前 0 時からの時間をカウントする、ゼロから始まる 24 時間制で時が表されます。1 桁の時は、先行ゼロなしで書式設定されます。 "H" 書式指定子を他のカスタム書式指定子なしで使用すると、標準日時書式指定子として解釈され、FormatException がスローされます。</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24 時間制 (2 桁)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">"HH" カスタム書式指定子 (任意の数の "H" 指定子を追加できます) は、時を 00 から 23 の数字で表します。つまり、午前 0 時からの時間をカウントする、ゼロから始まる 24 時間制で時が表されます。1 桁の時は、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">コード</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">日付の区切り記号</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"/" カスタム書式指定子は、年、月、日を区別するために使用される日付の区切り記号を表します。適切なローカライズされた日付区切り記号は、現在の、または指定したカルチャの DateTimeFormatInfo.DateSeparator プロパティから取得されます。 注: 特定の日時文字列の日付の区切り記号を変更するには、リテラル文字列区切り記号で囲んで区切り文字を指定します。たとえば、カスタム書式指定文字列 mm'/'dd'/'yyyy では、"/" が常に日付区切り記号として使用されて結果文字列が生成されます。カルチャのすべての日付について日付区切り記号を変更するには、現在のカルチャの DateTimeFormatInfo.DateSeparator プロパティの値を変更するか、DateTimeFormatInfo オブジェクトをインスタンス化し、その DateSeparator プロパティに文字を割り当てて、IFormatProvider パラメーターを含む書式設定メソッドのオーバーロードを呼び出します。 "/" 書式指定子を他のカスタム書式指定子なしで使用すると、標準日時書式指定子として解釈され、FormatException がスローされます。</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">日 (1 - 2 桁)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">"d" カスタム書式指定子は、日を 1 から 31 の数字として表します。1 桁の日は、先行ゼロなしで書式設定されます。 "d" 書式指定子を他のカスタム書式指定子なしで使用すると、"d" 標準日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">日 (2 桁)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">"dd" カスタム書式指定文字列は、日を 01 から 31 の数字として表します。1 桁の日は、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">曜日 (省略)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">"ddd" カスタム書式指定子は、曜日の省略名を表します。曜日のローカライズされた省略名は、現在の、または指定したカルチャの DateTimeFormatInfo.AbbreviatedDayNames プロパティから取得されます。</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">曜日 (完全)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">"dddd" カスタム書式指定子 (任意の数の "d" 指定子を追加できます) は、曜日の完全名を表します。曜日のローカライズされた名前は、現在の、または指定したカルチャの DateTimeFormatInfo.DayNames プロパティから取得されます。</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">破棄</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">メタデータから</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">完全な長い日付と時刻</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">"F" 標準書式指定子は、現在の DateTimeFormatInfo.FullDateTimePattern プロパティで定義されているカスタム日時書式指定文字列を表します。たとえば、インバリアント カルチャのカスタム書式指定文字列は "dddd, dd MMMM yyyy HH:mm:ss" です。</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">完全な短い日付と時刻</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">完全な日付と短い形式の時刻 ("f") 書式指定子 "f" 標準書式指定子は、長い形式の日付 ("D") と短い形式の時刻 ("t") のパターンの組み合わせをスペースで区切ったものを表します。</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">一般の長い日付と時刻</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">"G" 標準書式指定子は、短い形式の日付 ("d") と長い形式の時刻 ("T") のパターンの組み合わせをスペースで区切ったものを表します。</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">一般の短い日付と時刻</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">"g" 標準書式指定子は、短い形式の日付 ("d") と短い形式の時刻 ("t") のパターンの組み合わせをスペースで区切ったものを表します。</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">ジェネリック オーバーロード</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">ジェネリック オーバーロード</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">{0} ({1} - {2}) 内</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">ソース内 (属性)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">長い日付</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">"D" 標準書式指定子は、現在の DateTimeFormatInfo.LongDatePattern プロパティで定義されているカスタム日時書式指定文字列を表します。たとえば、インバリアント カルチャのカスタム書式指定文字列は "dddd, dd MMMM yyyy" です。</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">長い時刻</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">"T" 標準書式指定子は、特定のカルチャの DateTimeFormatInfo.LongTimePattern プロパティで定義されているカスタム日時書式指定文字列を表します。たとえば、インバリアント カルチャのカスタム書式指定文字列は "HH:mm:ss" です。</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">分 (1 - 2 桁)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">"m" カスタム書式指定子は、分を 0 から 59 の数字として表します。分は、直前の時からの経過時間 (分単位) を表します。1 桁の分は、先行ゼロなしで書式設定されます。 "m" 書式指定子を他のカスタム書式指定子なしで使用すると、"m" 標準日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">分 (2 桁)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">"mm" カスタム書式指定子 (任意の数の "m" 指定子を追加できます) は、分を 00 から 59 の数字として表します。分は、直前の時からの経過時間 (分単位) を表します。1 桁の分は、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">月 (1 - 2 桁)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">"M" カスタム書式指定子は、月を 1 から 12 (13 か月のカレンダーの場合は 1 から 13) の数字として表します。1 桁の月は、先行ゼロなしで書式設定されます。 "M" 書式指定子を他のカスタム書式指定子なしで使用すると、"M" 標準日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">月 (2 桁)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">"MM" カスタム書式指定子は、月を 01 から 12 (13 か月のカレンダーの場合は 01 から 13) の数字として表します。1 桁の月は、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">月 (省略)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">"MMM" カスタム書式指定子は、月の省略名を表します。ローカライズされた月の省略名は、現在のカルチャまたは指定したカルチャの DateTimeFormatInfo.AbbreviatedMonthNames プロパティから取得されます。</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">月日</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">"M" または "m" 標準書式指定子は、現在の DateTimeFormatInfo.MonthDayPattern プロパティで定義されているカスタム日時書式指定文字列を表します。たとえば、インバリアント カルチャのカスタム書式指定文字列は "MMMM dd" です。</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">月 (完全)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">"MMMM" カスタム書式指定子は、月の完全名を表します。月のローカライズされた名前は、現在のカルチャまたは指定されたカルチャの DateTimeFormatInfo.MonthNames プロパティから取得されます。</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">オーバーロード</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">オーバーロード</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} キーワード</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">フィールドのカプセル化: '{0}' (およびプロパティを使用します)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">フィールドのカプセル化: '{0}' (ただし、フィールドを継続して使用します)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">フィールドのカプセル化 (およびプロパティを使用します)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">フィールドのカプセル化 (ただし、フィールドを継続して使用します)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">インターフェイスを抽出できませんでした。 選択範囲がクラス/インターフェイス/構造体の内部にありません。</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">インターフェイスを抽出できませんでした。インターフェイスに抽出できるメンバーが型に含まれていません。</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">最終的なツリーを作成できません</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">パラメーターの型または戻り値の型を匿名型にすることはできません: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">選択範囲にアクティブなステートメントが含まれていません。</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">選択範囲にエラーまたは不明な型が含まれています。</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">型パラメーター '{0}' が別の型パラメーター '{1}' によって非表示になっています。</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">選択されたコード内に、変数のアドレスが使用されています。</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">読み取り専用フィールドへの割り当ては、コンストラクターで行う必要があります: [{0}] 。</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">生成されたコードがコードの非表示の部分に重なっています</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">省略可能なパラメーターを '{0}' に追加する</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">パラメーターを '{0}' に追加する</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">デリゲート コンストラクター '{0}({1})' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">コンストラクター '{0}({1})' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">フィールドを割り当てるコンストラクター '{0}({1})' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Equals および GetHashCode を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Equals(object) を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">GetHashCode() を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">'{0}' にコンストラクターを生成します</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">すべてを生成します</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">列挙メンバー '{1}.{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">定数 '{1}.{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">読み取り専用プロパティ '{1}.{0}' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">プロパティ '{1}.{0}' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">読み取り専用フィールド '{1}.{0}' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">フィールド '{1}.{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">ローカルの '{0}' を生成します</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">新しいファイルに {0} '{1}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">入れ子 {0} '{1}' を生成する</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">グローバル名前空間</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">インタ フェースを抽象的に実装します</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">'{0}' を通じてインターフェイスを実装します</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">インターフェイスを実装します</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">'{0}' に対してフィールドを導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">'{0}' に対してローカルを導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">'{0}' に対して定数を導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">'{0}' に対してローカル定数を導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">'{0}' のすべての発生に対してフィールドを導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">'{0}' のすべての発生に対してローカルを導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">'{0}' のすべての発生に対して定数を導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">'{0}' のすべての発生に対してローカル定数を導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">'{0}' のすべての発生に対してクエリ変数を導入します</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">'{0}' に対してクエリ変数を導入します</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">匿名型:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">は</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">操作が実行時に解決されるオブジェクトを表します。</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">定数</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">フィールド</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">ローカル定数</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">ローカル変数</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">ラベル</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">時代</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">"g" または "gg" カスタム書式指定子 (任意の数の "g" 指定子を追加可能) は、A.D. などの時代 (年号) を表します。書式設定の対象となる日付に時代 (年号) を表す文字列が関連付けられていない場合、書式設定操作の際、この指定子は無視されます。 他のカスタム書式指定子が使用されていない場合、"g" は標準の日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">範囲変数</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">パラメーター</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">次の値のいずれか</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">概要:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">ローカルおよびパラメーター</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">型パラメーター:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">戻り値:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">例外:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">注釈:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">このタイプのシンボルのソースの生成はサポートされていません</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">アセンブリ</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">不明な場所</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">予期しないインターフェイス メンバーの種類: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">不明なシンボルの種類</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">抽象プロパティ '{1}.{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">抽象メソッド '{1}.{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">メソッド '{1}.{0}' を生成します</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">要求されたアセンブリは、既に '{0}' から読み込まれています。</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">シンボルにアイコンがありません。</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">非同期メソッドが ref/out パラメーターを持つことはできません : [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">メンバーは、メタデータで定義されます。</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">コンストラクター、インデクサー、メソッド、またはデリゲートのシグネチャのみ変更できます。</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">このシンボルはメタデータの関連する定義または参照を持っています。署名を変更すると、ビルド エラーが発生する場合があります。 続行しますか?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">署名の変更...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">新しい型の生成...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">ユーザー診断アナライザーが失敗しました。</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">アナライザー '{0}' が型 '{1}' の例外をメッセージ '{2}' 付きでスローしました。</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">アナライザー '{0}'が、次の例をスローしました: '{1}'。</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">名前を単純化します</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">メンバー アクセスを単純化します</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">修飾子を削除</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">不明なエラーが発生しました</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">空き領域</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">使用できません ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">ソース内</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">抑制ファイル内</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">抑制 {0} を削除します</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">抑制の削除</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;保留中&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">メモ: '{0}' スニペットを挿入するには、Tab キーを 2 回押してください。</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">破棄パターンを使って明示的にインターフェイスを実装します</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">破棄パターンを使ってインターフェイスを実装します</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">再トリアージ {0} (現在は '{1}')</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">引数に null 要素は指定できません。</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">引数を空にすることはできません。</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">ID '{0}' の報告済みの診断はアナライザーによってサポートされていません。</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">出現箇所をすべて修正するコード修正プログラムを計算しています...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">すべての出現箇所を修正します</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">ドキュメント</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">プロジェクト</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">ソリューション</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: マネージド状態を破棄します (マネージド オブジェクト)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: 大きなフィールドを null に設定します</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">コンパイラ</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">ライブ</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">enum 値</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">const フィールド</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">メソッド</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">演算子</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">コンストラクター</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">自動プロパティ</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">プロパティ</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">イベント アクセサー</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">rfc1123 日付/時刻</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"R" または "r" 標準書式指定子は、DateTimeFormatInfo.RFC1123Pattern プロパティで定義されているカスタム日時書式設定文字列を表します。このパターンには定義済み標準が反映されています。また、プロパティは読み取り専用です。したがって、使用されているカルチャまたは指定された書式プロバイダーに関係なく、これは常に同じになります。カスタム書式設定文字列は "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'" です。この標準書式指定子が使用されている場合、書式設定操作または解析操作では常にインバリアント カルチャが使用されます。</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">ラウンドトリップ日付/時刻</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">"O" または "o" 標準書式指定子は、タイム ゾーン情報を保持するパターンを使用するカスタム日時書式設定文字列を表し、ISO 8601 に準拠する結果文字列を生成します。この書式指定子は、DateTime 値の日付と時刻の値を DateTime.Kind プロパティと共にテキストとして保持できるように設計されています。styles パラメーターが DateTimeStyles.RoundtripKind に設定されている場合、書式設定された文字列は、DateTime.Parse(String, IFormatProvider, DateTimeStyles) または DateTime.ParseExact メソッドを使用して、変換前の文字列に戻すことができます。 "O" または "o" 標準書式指定子は、DateTime 値の場合は、"yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" カスタム書式設定文字列に、DateTimeOffset 値の場合は、"yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" カスタム書式文字列に対応します。この文字列で、ハイフン、コロン、アルファベット "T" などの個々の文字を区切る単一引用符ペアは、各文字が、変更できないリテラルであることを示します。アポストロフィは、出力文字列には表示されません。 "O" または "o" 標準書式指定子 (および "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" カスタム書式設定文字列") は、ISO 8601 の3 種類のタイム ゾーン情報表記形式を利用して、DateTime 値の Kind プロパティを保持します。 DateTimeKind.Local の日時値のタイム ゾーン コンポーネントは、UTC からのオフセットです (+01:00、-07:00 など)。すべての DateTimeOffset 値がこの形式で表されます。 DateTimeKind.Utc 日時値のタイム ゾーン コンポーネントは、(ゼロ オフセットを示す) "Z" を使用して UTC を表します。 DateTimeKind.Unspecified 日時値には、タイム ゾーン情報が含まれていません。 "O" または "o" 標準書式指定子は国際標準に準拠しているため、この指定子を使用する書式設定操作または解析操作では常に、インバリアント カルチャとグレゴリオ暦が使用されます。 DateTime と DateTimeOffset の Parse、TryParse、ParseExact、および TryParseExact メソッドに渡される文字列が、これらの形式のいずれかである場合は、"O" または "o" 書式指定子を使用して解析できます。DateTime オブジェクトの場合、呼び出す解析オーバーロードの styles パラメーターにも、DateTimeStyles.RoundtripKind 値が指定されている必要があります。"O" または "o" 書式指定子に対応するカスタム書式設定文字列を使用して解析メソッドを呼び出した結果は、"O" または "o" を使用した場合の結果と同じではありません。これは、カスタム書式設定文字列を使用する解析メソッドでは、タイム ゾーン コンポーネントがない、または "Z" を使用して UTC を表す日時値の文字列表現を解析できないためです。</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">秒 (1 ~ 2 桁)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">"s" カスタム書式指定子は、秒を 0 から 59 までの数値として表します。この秒は、直前の分から経過した秒数です。1 桁の秒は、先行ゼロなしで書式設定されます。 他のカスタム書式指定子が使用されていない場合、"s" は標準の日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">秒 (2 桁)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">"ss" カスタム書式指定子 (任意の数の "s" 指定子を追加可能) は、秒を 00 から 59 までの数値として表します。この秒は、直前の分から経過した秒数です。1 桁の秒は、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">日付 (短い形式)</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">"d" 標準書式指定子は、特定のカルチャの DateTimeFormatInfo.ShortDatePattern プロパティによって定義されたカスタム日時書式設定文字列を表します。たとえば、インバリアント カルチャの ShortDatePattern プロパティによって返されるカスタム書式設定文字列は "MM/dd/yyyy" です。</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">時刻 (短い形式)</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">"t" 標準書式指定子は、現在の DateTimeFormatInfo.ShortTimePattern プロパティによって定義されるカスタム日時書式設定文字列を表します。たとえば、インバリアント カルチャのカスタム書式設定文字列は "HH: mm" です。</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">並べ替え可能な日付/時刻</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"s" 標準書式指定子は、DateTimeFormatInfo.SortableDateTimePattern プロパティで定義されているカスタム日時書式設定文字列を表します。このパターンには、定義済みの標準 (ISO 8601) が反映されています。また、プロパティは読み取り専用です。したがって、使用されているカルチャまたは指定された書式プロバイダーに関係なく、これは常に同じになります。カスタム書式設定文字列は、"yyyy'-'MM'-'dd'T'HH':'mm':'ss" です。 "s" 書式指定子の目的は、書式設定後の文字列が、日付と時刻の値に基づいて、一貫して昇順または降順に並べ替えられるようにすることです。そのため、"s" 標準書式指定子は、一貫性のある形式で日付と時刻の値を表しますが、書式設定操作によって、書式設定の対象となる日付と時刻のオブジェクトの値が、DateTime.Kind プロパティまたは DateTimeOffset.Offset プロパティを反映するために変更されることはありません。たとえば、2014-11-15T18:32:17+00:00 日時値と 2014-11-15T18:32:17+08:00 日時値を書式設定すると、同じ文字列が生成されます。 この標準書式指定子が使用されている場合、書式設定操作または解析操作では常にインバリアント カルチャが使用されます。</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">静的コンストラクター</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'symbol' は名前空間にすることはできません。</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">時刻の区切り記号</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">":" カスタム書式指定子は、時、分、および秒を区別するための時刻の区切り記号を表します。ローカライズされた適切な時刻の区切り記号は、現在のカルチャまたは指定されたカルチャの DateTimeFormatInfo.TimeSeparator プロパティから取得されます。 注: 特定の日付と時刻の文字列について時刻の区切り記号を変更するには、リテラル文字列の区切り記号内に区切り記号を指定します。たとえば、カスタム書式設定文字列 hh'_'dd'_'ss によって生成される結果文字列では、"_" (アンダースコア) が常に時刻の区切り記号として使用されます。カルチャのすべての日付について時刻の区切り記号を変更するには、現在のカルチャの DateTimeFormatInfo.TimeSeparator プロパティ値を変更するか、DateTimeFormatInfo オブジェクトのインスタンスを作成し、その TimeSeparator プロパティに文字を割り当てて、IFormatProvider パラメーターを含む書式設定メソッドのオーバーロードを呼び出します。 他のカスタム書式指定子が使用されていない場合、":" は標準の日時書式指定子として解釈され、FormatException をスローします。</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">タイム ゾーン</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"K" カスタム書式指定子は、日付と時刻の値のタイム ゾーン情報を表します。この書式指定子が DateTime 値で使用されている場合、書式設定後の文字列は DateTime.Kind プロパティの値によって定義されます。 ローカル タイム ゾーンの場合 (DateTime.Kind プロパティ値が DateTimeKind.Local)、この指定子は "zzz" 指定子と同じで、書式設定後の文字列には世界協定時刻 (UTC) からのローカル オフセット ("-07:00" など) が含まれます。 UTC 時刻の場合 (DateTime.Kind プロパティ値が DateTimeKind.Utc)、書式設定後の文字列には UTC 日付を表す "Z" 文字が含まれます。 タイム ゾーンが指定されていない時刻の場合 (時間の DateTime.Kind プロパティが DateTimeKind.Unspecified)、結果は String.Empty と同じになります。 "K" 書式指定子を DateTimeOffset 値で使用した場合、この指定子は "zzz" 書式指定子と同じになり、書式設定後の文字列には、DateTimeOffset 値の UTC を基準としたオフセットが含まれます。 他のカスタム書式指定子が使用されていない場合、"K" は標準の日時書式指定子として解釈され、FormatException をスローします。</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">型制約</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">型パラメーター</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">属性</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">'{0}' および '{1}' をプロパティと置換する</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">'{0}' をプロパティを置換する</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">暗黙的に参照されたメソッド</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">型 '{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">{0} '{1}' を生成する</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">'{0}' を '{1}' に変更します。</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">呼び出されていないメソッドはプロパティと置換できません。</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">出力変数の宣言ではない、単一の引数を持つメソッドのみ、プロパティに置き換えることができます。</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">アナライザー {0} のインスタンスは {1}: {2} から作成できません。</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">アセンブリ {0} にアナライザーは含まれていません。</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">アナライザーのアセンブリ {0}: {1} を読み込むことができません</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">同期メソッドに変更します</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">{0} から</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">最新バージョンの検索とインストール</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">ローカル バージョン '{0}' を使用する</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">ローカルにインストールされた '{0}' バージョン '{1}' を使います このバージョンは {2} で使われています</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">'{0}' の最新バージョンの検索とインストール</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">パッケージ マネージャーを使ってインストール...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">{0} {1}' のインストール</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">バージョン '{0}' のインストール</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">変数 '{0}' を生成する</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">クラス</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">定数</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">デリゲート</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">列挙型</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">イベント</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">拡張メソッド</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">フィールド</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">インターフェイス</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">ローカル</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">メソッド</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">モジュール</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">名前空間</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">プロパティ</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">構造</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">パラメーター:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">可変個引数 SignatureHelpItem は、少なくとも 1 つのパラメーターが必要です。</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">'{0}' をメソッドに置換します</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">'{0}' をメソッドに置換します</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">暗黙的に参照されているプロパティ</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">プロパティをメソッド呼び出しに安全に置換することはできません</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">補間された文字列に変換する</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">型を {0} に移動</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">ファイル名を {0} に変更</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">型の名前を {0} に変更</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">タグの削除</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">欠落している Param ノードを追加する</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">含まれているスコープを非同期にします</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">含まれているスコープを非同期にします (Task を返します)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(不明)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">フレームワークの型を使用する</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">パッケージ '{0}' のインストール</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">プロジェクト {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">完全修飾 '{0}'</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">'{0}' への参照を削除します。</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">キーワード</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">スニペット</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">すべて小文字</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">すべて大文字</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">最初の文字を大文字にする</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">パスカル ケース</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">ドキュメント '{0}' の削除</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">ドキュメント '{0}' の追加</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">引数名 '{0}' を追加する</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">'{0}' を取る</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">両方を取る</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">下端を取る</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">上端を取る</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">未使用の変数を削除する</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">2 進数に変換する</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">10 進数に変換する</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">16 進数に変換する</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">千単位で区切る</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">単語で区切る</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">ニブルで区切る</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">区切り記号を削除する</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">パラメーターを '{0}' に追加する</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">コンストラクターを生成する...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">コンストラクターのパラメーターとして使用するメンバーを選択する</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Equals/GetHashCode で使用するメンバーを選択する</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">上書きを生成する...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">上書きするメンバーを選択する</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">null チェックを追加する</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">string.IsNullOrEmpty' チェックを追加する</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">string.IsNullOrWhiteSpace' チェックを追加する</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">フィールド '{0}' を初期化する</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">プロパティ '{0}' を初期化する</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">null チェックを追加する</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">演算子を生成する</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">{0} を実装する</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">報告された診断 '{0}' のソースの場所がファイル '{1}' にありますが、これは、分析対象のコンパイルの一部ではありません。</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">報告された診断 '{0}' のソースの場所はファイル '{2}' 内の '{1}' ですが、これは指定されたファイルの外です。</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">{0} (プロジェクト{1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">アクセシビリティ修飾子を追加します</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">宣言を参照の近くに移動します</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">自動プロパティに変換する</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">警告: メソッドがメタデータのシンボルをオーバーライドします</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">{0} を使用します</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">引数の名前 '{0}' を追加します (末尾の引数を含む)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">ローカル関数</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">インデクサー</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">エイリアスのあいまいな型 '{0}'</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">警告: 反復処理中にコレクションが変更されました。</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">警告: 繰り返し変数が関数の境界を超えました。</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">警告: 反復処理中にコレクションが変更される可能性があります。</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">世界共通の完全な日付/時刻</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">"U" 標準書式指定子は、指定されたカルチャの DateTimeFormatInfo.FullDateTimePattern プロパティで定義されるカスタム日時書式設定文字列を表します。このパターンは "F" パターンと同じです。ただし、DateTime 値は、書式設定される前に自動的に UTC に変換されます。</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">世界共通の並べ替え可能な日付/時刻</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">"u" 標準書式指定子は、DateTimeFormatInfo.UniversalSortableDateTimePattern プロパティで定義されているカスタム日時書式設定文字列を表します。このパターンには定義済み標準が反映されています。また、プロパティは読み取り専用です。したがって、使用されているカルチャまたは指定された書式プロバイダーに関係なく、これは常に同じになります。カスタム書式設定文字列は "yyyy'-'MM'-'dd HH':'mm':'ss'Z'" です。この標準書式指定子が使用されている場合、書式設定操作または解析操作では常にインバリアント カルチャが使用されます。 書式設定後の文字列では、時刻が世界協定時刻 (UTC) として表されていなければなりませんが、書式設定操作によって元の DateTime 値が変換されることはありません。このため、書式設定する前に DateTime.ToUniversalTime メソッドを呼び出して、DateTime 値を UTC に変換する必要があります。</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">それを含むメンバーの使用の更新</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">それを含むプロジェクトの使用の更新</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">それを含む型の使用の更新</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">依存プロジェクトの使用の更新</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">UTC 時間と分のオフセット</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">DateTime 値の場合、"zzz" カスタム書式指定子は、オペレーティング システムのローカル タイム ゾーンの、UTC を基準とした符号付きオフセット (時間および分単位) を表します。インスタンスの DateTime.Kind プロパティの値は反映されません。このため、DateTime 値に対して "zzz" 書式指定子を使用することはお勧めしません。 DateTimeOffset 値を使用した場合、この書式指定子は、DateTimeOffset 値の UTC を基準とするオフセット (時間および分単位)を表します。 このオフセットは、常に先頭の符号と共に表示されます。プラス記号 (+) は UTC より時間が進んでいることを示し、マイナス記号 (-) は UTC よりも時間が遅れていることを示します。1 桁のオフセットは、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">UTC 時間のオフセット (1 ~ 2 桁)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">DateTime 値で使用した場合、"z" カスタム書式指定子は、オペレーティング システムのローカル タイムゾーンの、世界協定時刻 (UTC) を基準とした符号付きオフセット (時間単位) を表します。インスタンスの DateTime.Kind プロパティの値は反映されません。このため、DateTime 値に対して "z" 書式指定子を使用することはお勧めできません。 DateTimeOffset 値で使用した場合、この書式指定子は DateTimeOffset 値の UTC を基準とするオフセット (時間単位) を表します。 このオフセットは、常に先頭の符号と共に表示されます。プラス記号 (+) は UTC より時間が進んでいることを示し、マイナス記号 (-) は UTC よりも時間が遅れていることを示します。1 桁のオフセットは、先行ゼロなしで書式設定されます。 他のカスタム書式指定子が使用されていない場合、"z" は標準の日時書式指定子として解釈され、FormatException をスローします。</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">UTC 時間のオフセット (2 桁)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">DateTime 値で使用した場合、"zz" カスタム書式指定子は、オペレーティング システムのローカル タイム ゾーンの、UTC を基準とした符号付きオフセット (時間単位) を表します。インスタンスの DateTime.Kind プロパティの値は反映されません。このため、DateTime 値に対して "zz" 書式指定子を使用することはお勧めしません。 DateTimeOffset 値で使用した場合、この書式指定子は DateTimeOffset 値の UTC を基準とするオフセット (時間単位) を表します。 このオフセットは、常に先頭の符号と共に表示されます。プラス記号 (+) は UTC より時間が進んでいることを示し、マイナス記号 (-) は UTC よりも時間が遅れていることを示します。1 桁のオフセットは、先行ゼロ付きで書式設定されます。</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">[x-y] 範囲の順序が逆です</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">年 (1 ~ 2 桁)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">"Y" カスタム書式指定子は、年を1桁または2桁の数値として表します。年が2桁を超える場合は、2桁の下位桁のみが結果に表示されます。2桁の年の最初の桁がゼロで始まる場合 (たとえば 2008)、先頭に0を付けずに数値を書式設定します。 "Y" 書式指定子が、その他のカスタム書式指定子なしで使用されている場合、"y" は標準の日時書式指定子として解釈されます。</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">年 (2 桁)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">"yy" カスタム書式指定子は、年を 2 桁の数値として表します。年が 2 桁を超える場合、結果には下 2 桁のみが表示されます。有効数字 2 桁に満たない年については、先行ゼロが追加され 2 桁の数値で表されます。 解析操作では、"yy" カスタム書式指定子を使用して解析された 2 桁の年は、書式プロバイダーの現在のカレンダーの Calendar.TwoDigitYearMax プロパティに基づいて解釈されます。次の例は、2 桁の年を含む日付の文字列表現を、en-US カルチャ (このケースでは現在のカルチャ) の既定のグレゴリオ暦を使用して解析し、その後、現在のカルチャの CultureInfo オブジェクトを、TwoDigitYearMax プロパティが変更されている GregorianCalendar オブジェクトを使用するように変更しています。</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">年 (3 ~ 4 桁)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">"yyy" カスタム書式指定子は、年を 3 桁以上で表します。年が有効数字 3 桁を超える場合、書式設定後の文字列にはすべての桁が表示されます。3 桁に満たない年については、先行ゼロが追加され 3 桁の数値で表されます。</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">年 (4 桁)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">"yyyy" カスタム書式指定子は、年を 4 桁以上で表します。年が有効数字 4 桁を超える場合、書式設定後の文字列にはすべての桁が表示されます。4 桁に満たない年については、先行ゼロが追加され 4 桁の数値で表されます。</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">年 (5 桁)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">"yyyyy" カスタム書式指定子 (任意の数の "y" 指定子を追加可能) は、年を 5 桁以上で表します。年が有効数字 5 桁を超える場合、書式設定後の文字列にはすべての桁が表示されます。年が 5 桁に満たない年については、先行ゼロが追加され 5 桁の数値で表されます。 "y" 指定子を追加すると、数値の桁数が "y" 指定子の数と同じになるまで、先行ゼロが数値に追加されます。</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">年月</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">"Y" または "y" 標準書式指定子は、指定されたカルチャの DateTimeFormatInfo.YearMonthPattern プロパティによって定義されたカスタム日時書式設定文字列を表します。たとえば、インバリアント カルチャのカスタム書式設定文字列は "yyyy MMMM" です。</target> <note /> </trans-unit> </body> </file> </xliff>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/xlf/FeaturesResources.ko.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="ko" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM(약식)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">"t" 사용자 지정 형식 지정자는 AM/PM 지정자의 첫 번째 문자를 나타냅니다. 지역화된 적절한 지정자는 현재 문화권 또는 특정 문화권의 DateTimeFormatInfo.AMDesignator 또는 DateTimeFormatInfo.PMDesignator 속성에서 검색됩니다. AM 지정자는 0:00:00(자정)부터 11:59:59.999까지의 모든 시간에 사용됩니다. PM 지정자는 12:00:00(정오)부터 23:59:59.999까지의 모든 시간에 사용됩니다. 다른 사용자 지정 형식 지정자 없이 "t" 형식 지정자를 사용하면 "t" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM(전체)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">"tt" 사용자 지정 형식 지정자(및 임의 개수의 추가 "t" 지정자)는 전체 AM/PM 지정자를 나타냅니다. 지역화된 적절한 지정자는 현재 문화권 또는 특정 문화권의 DateTimeFormatInfo.AMDesignator 또는 DateTimeFormatInfo.PMDesignator 속성에서 검색됩니다. AM 지정자는 0:00:00(자정)부터 11:59:59.999까지의 모든 시간에 사용됩니다. PM 지정자는 12:00:00(정오)부터 23:59:59.999까지의 모든 시간에 사용됩니다. "tt" 지정자는 AM과 PM 사이의 구분을 유지해야 하는 언어에 사용해야 합니다. 그 예로 일본어를 들 수 있는데, 일본어에서는 AM 지정자와 PM 지정자가 첫 번째 문자가 아닌 두 번째 문자에서 구분됩니다.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">빼기는 문자 클래스의 마지막 요소여야 합니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">'DebuggerDisplay' 특성을 추가합니다.</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">명시적 캐스트 추가</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">멤버 이름 추가</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">모든 매개 변수에 대한 null 검사 추가</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">생성자에 선택적 매개 변수 추가</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">'{0}'(및 재정의/구현)에 매개 변수 추가</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">생성자에 매개 변수 추가</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">프로젝트 참조를 '{0}'에 추가합니다.</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">참조를 '{0}'에 추가합니다.</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">작업은 비워 둘 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">튜플 요소 이름 '{0}' 추가</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">래핑된 인수 맞춤</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">래핑된 매개 변수 맞춤</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">교체 조건은 주석이 될 수 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">교체 조건은 캡처하지 않고 이름을 지정할 수 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">파일 헤더 기본 설정 적용</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">개체/컬렉션 초기화 기본 설정 적용</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">대기된 작업에서 '{0}'이(가) 반환됨</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">대기된 작업에서 값이 반환되지 않음</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">기본 클래스에 구현되지 않아 액세스할 수 없는 멤버가 포함되어 있습니다.</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">변경 내용을 적용할 수 없음 -- 예기치 않은 오류: '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">문자 범위에 \{0} 클래스를 포함할 수 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">캡처 그룹 번호는 Int32.MaxValue보다 작거나 같아야 합니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">캡처 번호는 0일 수 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;유추&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;생략&gt;</target> <note /> </trans-unit> <trans-unit id="Change_namespace_to_0"> <source>Change namespace to '{0}'</source> <target state="translated">네임스페이스를 '{0}'(으)로 변경</target> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">전역 네임스페이스로 변경</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">예외에서 중지된 동안에는 변경할 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">애플리케이션이 실행되는 동안에는 '{0}' 프로젝트의 변경 내용이 적용되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">{0} 코드 스타일 구성</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">{0} 심각도 구성</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">모든 '{0}' 분석기에 대해 심각도 구성</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">모든 분석기에 대해 심각도 구성</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">LINQ로 변환</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">'{0}'에 추가</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">클래스로 변환</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">LINQ로 변환(통화 양식)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">레코드로 변환</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">레코드 구조체로 변환</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">구조체로 변환</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">형식을 '{0}'(으)로 변환</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">'{0}' 필드 만들기 및 할당</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">'{0}' 속성 만들기 및 할당</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">나머지를 만들고 필드로 할당합니다.</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">나머지를 만들고 속성으로 할당합니다.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">이 코드를 변경하지 마세요. '{0}' 메서드에 정리 코드를 입력합니다.</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">소스 파일 '{0}'의 현재 콘텐츠가 빌드된 소스와 일치하지 않습니다. 디버그하는 동안 이 파일의 변경된 모든 내용은 해당 콘텐츠가 빌드된 소스와 일치할 때까지 적용되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">문서가 이 서비스를 만든 작업 영역에 포함되어 있어야 합니다.</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">편집하며 계속하기</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">모듈에서 편집하며 계속하기를 허용하지 않음</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">'{0}' 프로젝트에서 수행한 변경으로 디버그 세션을 계속할 수 없습니다. {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">편집하고 계속하기는 런타임에서 지원되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">'{0}' 파일을 읽는 동안 오류가 발생했습니다. {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">CodeFixProvider 인스턴스를 만드는 동안 오류가 발생했습니다.</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">CodeFixProvider '{0}' 인스턴스를 만드는 동안 오류가 발생했습니다.</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">예:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">예:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">명시적으로 구현된 레코드 메서드에는 컴파일러에서 생성된 것과 일치하는 매개 변수 이름 '{0}'이 있어야 합니다.</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">기본 클래스 추출...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">인터페이스 추출...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">로컬 함수 추출</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">메서드 추출</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">{0}의 데이터 흐름 분석 실패</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">서식 수정</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">오타 '{0}' 수정</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">문서 서식</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">문서 서식을 지정하는 중</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">비교 연산자 생성</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">'{0}'에 생성자 생성(필드 포함)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">'{0}'에 생성자 생성(속성 포함)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">'{0}'에 대해 생성</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">'{0}' 매개 변수 생성</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">'{0}' 매개 변수(및 재정의/구현) 생성</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">패턴 끝에 \를 사용할 수 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">x &gt; y인 잘못된 {x,y}입니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">'{0}'을(를) 명시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">'{0}'을(를) 암시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">추상 클래스 구현</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">모든 인터페이스를 명시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">모든 인터페이스를 암시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">모든 멤버를 명시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">명시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">암시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">나머지 멤버를 명시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">'{0}'을(를) 통해 구현</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">불완전한 \p{X} 문자 이스케이프</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">모든 인수 들여쓰기</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">모든 매개 변수 들여쓰기</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">래핑된 인수 들여쓰기</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">래핑된 매개 변수 들여쓰기</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">'{0}'을(를) 인라인으로 지정</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">'{0}'을(를) 인라인으로 지정 및 유지</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">16진수가 부족합니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">상수 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">필드 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">로컬 소개</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">쿼리 변수 지정</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">잘못된 그룹 이름: 그룹 이름은 단어 문자로 시작해야 합니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">'abstract' 클래스 만들기</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">정적으로 만들기</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">조건 반전</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">형식이 잘못되었습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">형식이 잘못된 \p{X} 문자 이스케이프</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">\k&lt;...&gt; 역참조 형식이 잘못되었습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">중첩 '{0}' 문과 병합</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">다음 '{0}' 문과 병합</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">외부 '{0}' 문과 병합</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">이전 '{0}' 문과 병합</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0}은(는) 읽기 및 검색 작업을 지원하는 스트림을 반환해야 합니다.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">제어 문자가 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">네임스페이스로 콘텐츠 이동...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">파일을 '{0}'(으)로 이동</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">파일을 프로젝트 루트 폴더로 이동</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">네임스페이스로 이동...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">중첩 수량자 {0}입니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">메서드 호출을 삽입할 유효한 위치가 없습니다.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">부족 )'s</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">연산자</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">속성 참조를 업데이트할 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">'{0}' 끌어오기</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">'{0}'을(를) '{1}'(으)로 끌어오기</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">기본 형식까지 멤버를 풀...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">새 기본 클래스까지 멤버를 풀하세요...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">수량자 {x,y} 앞에 아무 것도 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">정의되지 않은 그룹에 대한 참조</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">정의되지 않은 그룹 이름 {0}에 대한 참조입니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">정의되지 않은 그룹 번호 {0}을(를) 참조합니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">모든 제어 문자입니다. Cc, Cf, Cs, Co 및 Cn 범주가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">모든 제어 문자</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">모든 분음 부호입니다. Mn, Mc 및 Me 범주가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">모든 분음 부호</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">모든 문자입니다. Lu, Ll, Lt, Lm 및 Lo 문자가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">모든 문자</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">모든 숫자입니다. Nd, Nl 및 No 범주가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">모든 숫자</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">모든 문장 부호 문자입니다. Pc, Pd, Ps, Pe, Pi, Pf 및 Po 범주가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">모든 문장 부호 문자</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">모든 구분 문자입니다. Zs, Zl 및 Zp 범주가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">모든 구분 문자</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">모든 기호입니다. Sm, Sc, Sk 및 So 범주가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">모든 기호</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">세로 막대(|) 문자를 사용하여 일련의 패턴 중 하나를 일치시킬 수 있습니다. 여기서 | 문자는 각 패턴을 구분합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">대체</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">마침표(.) 문자는 \n(줄 바꿈 문자, \u000A)을 제외한 모든 문자와 일치시킵니다. 정규식 패턴이 RegexOptions.Singleline 옵션으로 수정되거나 . 문자 클래스가 포함된 패턴의 일부가 's' 옵션으로 수정된 경우 .는 모든 문자와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">모든 문자</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">원자성 그룹(다른 정규식 엔진에서 역추적하지 않는 하위 식, 원자성 하위 식 또는 한 번만 하위 식이라고 함)은 역추적을 사용하지 않도록 설정합니다. 정규식 엔진은 입력 문자열에서 가능한 한 많은 문자와 일치시킵니다. 더 이상 일치 항목을 찾을 수 없으면 대체 패턴 일치 항목 찾기를 시도하도록 역추적하지 않습니다. 즉, 하위 식은 해당 하위 식 단독으로 일치되는 문자열만 일치시킵니다. 해당 하위 식과 그 뒤에 오는 하위 식을 기반으로 문자열을 일치시키지 않습니다. 이 옵션은 역추적이 성공하지 못할 것을 알고 있는 경우에 사용하는 것이 좋습니다. 정규식 엔진이 불필요한 검색을 수행하지 않도록 하면 성능이 향상됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">원자성 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">백스페이스 문자 \u0008과 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">백스페이스 문자</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">균형 조정 그룹 정의는 이전에 정의된 그룹의 정의를 삭제하고, 이전에 정의된 그룹과 현재 그룹 사이의 간격을 현재 그룹에 저장합니다. 'name1'은 현재 그룹이고(선택 사항), 'name2'는 이전에 정의된 그룹이며, 'subexpression'은 유효한 정규식 패턴입니다. 균형 조정 그룹 정의는 name2의 정의를 삭제하고 name2와 name1 사이의 간격을 name1에 저장합니다. name2 그룹이 정의되어 있지 않으면 일치에서 역추적합니다. name2의 마지막 정의를 삭제하면 name2의 이전 정의가 표시되므로 이 구문을 통해 name2 그룹에 대한 캡처 스택을 괄호 또는 여는 대괄호 및 닫는 대괄호와 같은 중첩 구문을 추적하기 위한 카운터로 사용할 수 있습니다. 균형 조정 그룹 정의에서는 'name2'를 스택으로 사용합니다. 각 중첩 구문의 시작 문자는 그룹 및 해당 Group.Captures 컬렉션에 배치됩니다. 닫는 문자가 일치되면 해당하는 여는 문자가 그룹에서 제거되고 Captures 컬렉션이 하나 감소합니다. 모든 중첩 구문의 여는 문자와 닫는 문자가 일치되고 나면 'name1'은 비어 있는 상태가 됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">균형 조정 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">기본 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">벨(경보) 문자 \u0007과 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">벨 문자</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">캐리지 리턴 문자 \u000D와 일치시킵니다. \r은 줄 바꿈 문자 \n과 같지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">캐리지 리턴 문자</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">문자 클래스 빼기를 사용하면 한 문자 클래스의 문자를 다른 문자 클래스에서 제외한 결과인 문자 집합을 얻게 됩니다. 'base_group'은 긍정 또는 부정 문자 그룹이거나 문자 범위입니다. 'excluded_group' 구성 요소는 다른 긍정 또는 부정 문자 그룹이거나 다른 문자 클래스 빼기 식입니다(즉, 문자 클래스 빼기 식을 중첩할 수 있음).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">문자 클래스 빼기</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">문자 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">주석</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">이 언어 요소는 초기 패턴과 일치시킬 수 있는지 여부에 따라 두 패턴 중 하나와 일치시키려고 시도합니다. 'expression'은 일치시킬 초기 패턴이며 'yes'는 식이 일치하는 경우 일치시킬 패턴이고 'no'는 식이 일치하지 않는 경우 일치시킬 선택적 패턴입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">조건식 일치</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">이 언어 요소는 지정한 캡처링 그룹과 일치시켰는지 여부에 따라 두 패턴 중 하나와 일치시키려고 시도합니다. 'name'은 캡처링 그룹의 이름(또는 번호)이며 'yes'는 'name'(또는 'number')에 일치 항목이 있는 경우 일치시킬 식이고 'no'는 일치 항목이 없는 경우 일치시킬 선택적 식입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">조건 그룹 일치</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">\G 앵커는 이전 일치 항목 찾기가 끝난 지점에서 일치 항목을 찾도록 지정합니다. 이 앵커를 Regex.Matches 또는 Match.NextMatch 메서드와 함께 사용하면 모든 일치 항목이 연속되도록 합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">연속 일치</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">ASCII 제어 문자와 일치시킵니다. 여기서, X는 제어 문자의 문자입니다. 예를 들어 \cC는 CTRL-C입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">제어 문자</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d는 10진수와 일치시킵니다. 표준 10진수 0-9와 여러 다른 문자 집합의 10진수를 포함한 \p{Nd} 정규식 패턴과 같습니다. ECMAScript 규격 동작을 지정한 경우 \d는 [0-9]와 같습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">10진수 문자</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">숫자 기호(#)는 정규식 패턴의 끝에 있는 이스케이프되지 않은 # 문자에서 시작하고 줄의 끝까지 계속되는 x-모드 주석을 표시합니다. 이 구문을 사용하려면 인라인 옵션을 통해 x 옵션을 사용해야 합니다. 또는 Regex 개체를 인스턴스화하거나 정적 Regex 메서드를 호출할 때 RegexOptions.IgnorePatternWhitespace 값을 옵션 매개 변수에 제공해야 합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">줄의 끝 주석</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">\z 앵커는 입력 문자열의 끝부분에서 일치 항목을 찾도록 지정합니다. $ 언어 요소와 마찬가지로, \z는 RegexOptions.Multiline 옵션을 무시합니다. 하지만 \Z 언어 요소와 달리 \z는 문자열의 끝에 있는 \n 문자와 일치시키지 않습니다. 따라서 입력 문자열의 마지막 줄만 일치시킬 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">문자열의 끝만</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">\Z 앵커는 입력 문자열의 끝부분이나 입력 문자열의 끝부분에 있는 \n 앞에서 일치 항목을 찾도록 지정합니다. \Z는 RegexOptions.Multiline 옵션을 무시한다는 점을 제외하고는 $ 앵커와 동일합니다. 따라서 여러 줄 문자열에서는 마지막 줄의 끝이나 \n 앞의 마지막 줄만 일치시킬 수 있습니다. \Z 앵커는 \n은 일치시키지만 \r\n(CR/LF 문자 조합)은 일치시키지 않습니다. CR/LF와 일치시키려면 정규식 패턴에 \r?\Z를 포함하세요.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">문자열의 끝 또는 줄 바꿈 종료 전</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">$ 앵커는 입력 문자열의 끝부분이나 입력 문자열의 끝부분에 있는 \n 앞에 이전 패턴이 오도록 지정합니다. RegexOptions.Multiline 옵션과 함께 $를 사용하면 줄의 끝부분에서도 일치 항목을 찾을 수 있습니다. $ 앵커는 \n은 일치시키지만 \r\n(캐리지 리턴 및 줄 바꿈 문자 조합 또는 CR/LF)은 일치시키지 않습니다. CR/LF 문자 조합과 일치시키려면 정규식 패턴에 \r?$를 포함하세요.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">문자열 또는 줄의 끝</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">이스케이프 문자 \u001B와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">이스케이프 문자</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">제외된 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">식</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">용지 공급 문자 \u000C와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">용지 공급 문자</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">이 그룹화 생성자는 하위 식 내에서 지정된 옵션을 적용하거나 사용하지 않도록 설정합니다. 사용하도록 설정하는 옵션은 물음표 뒤에 지정되며 사용하지 않도록 설정하는 옵션은 빼기 기호 뒤에 지정됩니다. 허용되는 옵션은 다음과 같습니다. i 대/소문자를 구분하지 않는 일치를 사용합니다. m 여러 줄 모드를 사용합니다. 여기서, ^ 및 $는 각 줄의 시작 및 끝과 일치시킵니다(입력 문자열의 시작 및 끝이 아님). s 한 줄 모드를 사용합니다. 여기서, 마침표(.)는 모든 문자(\n을 제외한 모든 문자가 아님)와 일치시킵니다. n 명명되지 않은 그룹을 캡처하지 않습니다. 양식(?&lt;이름&gt; 하위 식)의 명시적으로 명명된 그룹 또는 번호가 매겨진 그룹만 유효한 캡처입니다. x 이스케이프되지 않은 공백은 패턴에서 제외하고 주석은 숫자 기호(#) 다음에 사용합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">그룹 옵션</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">ASCII 문자와 일치시킵니다. 여기서, ##은 두 자리 16진수 문자 코드입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">16진수 이스케이프</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">(?# comment) 구문에서는 정규식에 인라인 주석을 포함할 수 있습니다. Regex.ToString 메서드에서 반환된 문자열에 주석이 포함되어 있어도 정규식 엔진은 패턴 일치에 주석의 어떤 부분도 사용하지 않습니다. 주석은 첫 번째 닫는 괄호에서 종료됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">인라인 주석</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">정규식의 나머지 부분에 대해 특정 패턴 일치 옵션을 사용하거나 사용하지 않도록 설정합니다. 사용하도록 설정하는 옵션은 물음표 뒤에 지정되며 사용하지 않도록 설정하는 옵션은 빼기 기호 뒤에 지정됩니다. 허용되는 옵션은 다음과 같습니다. i 대/소문자를 구분하지 않는 일치를 사용합니다. m 여러 줄 모드를 사용합니다. 여기서, ^ 및 $는 각 줄의 시작 및 끝과 일치시킵니다(입력 문자열의 시작 및 끝이 아님). s 한 줄 모드를 사용합니다. 여기서, 마침표(.)는 모든 문자(\n을 제외한 모든 문자가 아님)와 일치시킵니다. n 명명되지 않은 그룹을 캡처하지 않습니다. 양식(?&lt;이름&gt; 하위 식)의 명시적으로 명명된 그룹 또는 번호가 매겨진 그룹만 유효한 캡처입니다. x 이스케이프되지 않은 공백은 패턴에서 제외하고 주석은 숫자 기호(#) 다음에 사용합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">인라인 옵션</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Regex 문제: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">문자, 소문자</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">문자, 한정자</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">문자, 기타</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">문자, 첫 글자만 대문자</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">문자, 대문자</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">표시, 묶음</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">표시, 공간을 차지하지 않음</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">표시, 간격 결합</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">{n,}? 수량자는 n번 이상 이전 요소와 일치시키지만 가능한 한 적은 횟수로 일치시킵니다. 여기서, n은 정수입니다. 탐욕적 수량자 {n,}에 대응되는 게으른 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">'n'번 이상 일치(지연)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">{n,} 수량자는 n번 이상 이전 요소와 일치시킵니다. 여기서, n은 정수입니다. {n,}는 해당 게으른 수량자가 {n,}?인 탐욕적 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">'n'번 이상 일치</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">{n,m}? 수량자는 n 및 m번 사이로 이전 요소와 일치시키지만 가능한 한 적은 횟수로 일치시킵니다. 여기서, n 및 m은 정수입니다. 탐욕적 수량자 {n,m}에 대응되는 게으른 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">'n'번 이상 일치(지연)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">{n,m} 수량자는 n번 이상 m번 이하로 이전 요소와 일치시킵니다. 여기서, n 및 m은 정수입니다. {n,m}는 해당 게으른 수량자가 {n,m}?인 탐욕적 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">'m'에서 'n'번 사이 일치</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">{n}? 수량자는 정확히 n번을 이전 요소와 일치시킵니다. 여기서, n은 정수입니다. 탐욕적 수량자 {n}+에 대응되는 게으른 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">정확하게 'n'번 일치(지연)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">{n} 수량자는 정확히 n번을 이전 요소와 일치시킵니다. 여기서, n은 정수입니다. {n}는 해당 게으른 수량자가 {n}?인 탐욕적 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">정확하게 'n'번 일치</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">+? 수량자는 1번 이상 이전 요소와 일치시키지만 가능한 한 적은 횟수로 일치시킵니다. 탐욕적 수량자 +에 대응되는 게으른 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">1번 이상 일치(지연)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">+ 수량자는 1번 이상 이전 요소와 일치시킵니다. {1,} 수량자와 같습니다. +는 해당 게으른 수량자가 +?인 탐욕적 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">1번 이상 일치</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">*? 수량자는 0번 이상 이전 요소와 일치시키지만 가능한 한 적은 횟수로 일치시킵니다. 탐욕적 수량자 *에 대응되는 게으른 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">0번 이상 일치(지연)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">* 수량자는 0번 이상 이전 요소와 일치시킵니다. {0,} 수량자와 같습니다. *는 해당 게으른 수량자가 *?인 탐욕적 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">0번 이상 일치</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">?? 수량자는 0번 이상 이전 요소와 일치시키지만 가능한 한 적은 횟수로 일치시킵니다. 탐욕적 수량자 ?에 대응되는 게으른 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">0 또는 1번 일치(지연)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">? 수량자는 0번 이상 이전 요소와 일치시킵니다. {0,1} 수량자와 같습니다. ?는 해당 게으른 수량자가 ??인 탐욕적 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">0 또는 1번 일치</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">이 그룹화 생성자는 일치하는 'subexpression'을 캡처합니다. 여기서, 'subexpression'은 임의의 유효한 정규식 패턴입니다. 괄호를 사용하는 캡처는 정규식의 여는 괄호 순서를 기준으로 왼쪽에서 오른쪽으로 1부터 자동으로 번호가 매겨집니다. 0으로 번호가 매겨진 캡처는 전체 정규식 패턴과 일치하는 텍스트입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">일치하는 하위 식</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">이름</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">이름 또는 번호</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">명명되거나 번호가 매겨진 역참조입니다. 'name'은 정규식 패턴에 정의된 캡처링 그룹의 이름입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">명명된 역참조</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">일치하는 하위 식을 캡처하고 이름 또는 번호를 통해 해당 하위 식에 액세스할 수 있도록 허용합니다. 'name'은 유효한 그룹 이름이고 'subexpression'은 유효한 정규식 패턴입니다. 'name'은 문장 부호 문자를 사용하지 않아야 하며 숫자로 시작할 수 없습니다. 정규식 패턴 일치 메서드의 RegexOptions 매개 변수에 RegexOptions.ExplicitCapture 플래그가 포함되어 있거나 이 하위 식에 n 옵션이 적용되는 경우 하위 식을 캡처하는 유일한 방법은 명시적으로 캡처링 그룹 이름을 지정하는 것입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">명명된 일치하는 하위 식</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">부정 문자 그룹은 일치 항목을 찾을 입력 문자열에 표시되지 않아야 하는 문자 목록을 지정합니다. 문자 목록은 개별적으로 지정됩니다. 둘 이상의 문자 범위를 연결할 수 있습니다. 예를 들어 "0"에서 "9"까지의 10진수 범위, "a"에서 "f"까지의 소문자 범위 및 "A"에서 "F"까지의 대문자 범위를 지정하려면 [0-9a-fA-F]를 사용합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">부정 문자 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">부정 문자 범위는 일치 항목을 찾을 입력 문자열에 표시되지 않아야 하는 문자 목록을 지정합니다. 'firstCharacter'는 범위를 시작하는 문자이고 'lastCharacter'는 범위를 끝내는 문자입니다. 둘 이상의 문자 범위를 연결할 수 있습니다. 예를 들어 "0"에서 "9"까지의 10진수 범위, "a"에서 "f"까지의 소문자 범위 및 "A"에서 "F"까지의 대문자 범위를 지정하려면 [0-9a-fA-F]를 사용합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">부정 문자 범위</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">정규식 구문 \P{ name }는 유니코드 일반 범주 또는 명명된 블록에 속하지 않는 모든 문자와 일치시킵니다. 여기서, name은 범주 약어 또는 명명된 블록 이름입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">부정 유니코드 범주</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">줄 바꿈 문자 \u000A와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">줄 바꿈 문자</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">아니요</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D는 숫자가 아닌 문자와 일치시킵니다. \P{Nd} 정규식 패턴과 같습니다. ECMAScript 규격 동작을 지정한 경우 \D는 [^0-9]와 같습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">숫자가 아닌 문자</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S는 공백이 아닌 문자와 일치시킵니다. [^\f\n\r\t\v\x85\p{Z}] 정규식 패턴과 같거나, 공백 문자와 일치시키는 \s와 같은 정규식 패턴과 반대됩니다. ECMAScript 규격 동작을 지정한 경우 \S는 [^ \f\n\r\t\v]와 같습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">공백이 아닌 문자</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">\B 앵커는 단어 경계에서 일치 항목을 찾도록 지정합니다. \b 앵커와 반대입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">단어가 아닌 경계</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W는 단어가 아닌 문자와 일치시킵니다. 다음 유니코드 범주의 문자를 제외한 모든 문자와 일치시킵니다. Ll 문자, 소문자 Lu 문자, 대문자 Lt 문자, 첫 글자만 대문자 Lo 문자, 기타 Lm 문자, 한정자 Mn 표시, 공간을 차지하지 않는 문자 Nd 숫자, 10진수 Pc 문장 부호, 연결선 ECMAScript 규격 동작을 지정한 경우 \W는 [^a-zA-Z_0-9]와 같습니다.</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">단어가 아닌 문자</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">이 구문은 하위 식으로 일치되는 하위 문자열을 캡처하지 않습니다. 한정사가 그룹에 적용되는 경우 일반적으로 비캡처링 그룹 구문이 사용되지만 그룹에서 캡처된 하위 문자열과는 관련이 없습니다. 정규식에 중첩 그룹화 생성자가 포함되는 경우 외부 비캡처링 그룹 구문은 내부 중첩 그룹 구문에 적용되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">비캡처링 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">숫자, 10진수</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">숫자, 문자</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">숫자, 기타</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">번호가 매겨진 역참조입니다. 여기서 'number'는 정규식에 있는 캡처링 그룹의 서수 위치입니다. 예를 들어 \4는 네 번째 캡처링 그룹의 콘텐츠와 일치시킵니다. 8진수 이스케이프 코드(예: \16) 및 동일한 표기법을 사용하는 \number 역참조 사이에는 모호성이 있습니다. 모호성 문제가 발생하는 경우 명확하며 8진수 문자 코드와 혼동되지 않는 \k&lt;이름&gt; 표기법을 사용할 수 있습니다. 마찬가지로, \xdd와 같은 16진수 코드는 명확하며 역참조와 혼동되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">번호가 매겨진 역참조</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">기타, 제어</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">기타, 형식</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">기타, 할당되지 않음</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">기타, 프라이빗 사용</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">기타, 서로게이트</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">긍정 문자 그룹은 일치 항목을 찾을 입력 문자열에 표시될 수 있는 문자 목록을 지정합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">긍정 문자 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">긍정 문자 범위는 일치 항목을 찾을 입력 문자열에 표시될 수 있는 문자 범위를 지정합니다. 'firstCharacter'는 범위를 시작하는 문자이고 'lastCharacter'는 범위를 끝내는 문자입니다. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">긍정 문자 범위</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">문장 부호, 닫기</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">문장 부호, 연결선</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">문장 부호, 대시</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">문장 부호, 마지막 따옴표</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">문장 부호, 처음 따옴표</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">문장 부호, 열기</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">문장 부호, 기타</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">구분 기호, 줄</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">구분 기호, 단락</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">구분 기호, 공백</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">\A 앵커는 입력 문자열의 시작 부분에서 일치 항목을 찾도록 지정합니다. \A가 RegexOptions.Multiline 옵션을 무시한다는 점을 제외하고는 ^ 앵커와 동일합니다. 따라서 여러 줄 입력 문자열에서 첫 번째 줄의 시작 부분만 찾을 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">문자열의 시작만</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">^ 앵커는 다음 패턴이 문자열의 첫 번째 문자 위치에서 시작하도록 지정합니다. ^ 기호를 RegexOptions.Multiline 옵션과 함께 사용하는 경우 각 줄의 시작 부분에 일치 항목이 있어야 합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">문자열 또는 줄의 시작</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">하위 식</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">기호, 통화</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">기호, 수학</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">기호, 한정자</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">기호, 기타</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">탭 문자 \u0009와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">탭 문자</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">정규식 구문 \p{ name }는 유니코드 일반 범주 또는 명명된 블록에 속하는 모든 문자와 일치시킵니다. 여기서, name은 범주 약어 또는 명명된 블록 이름입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">유니코드 범주</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">값이 #### 16진수인 UTF-16 코드 단위와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">유니코드 이스케이프</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">유니코드 일반 범주: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">세로 탭 문자 \u000B와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">세로 탭 문자</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s는 공백 문자와 일치시킵니다. 다음 이스케이프 시퀀스 및 유니코드 범주와 같습니다. \f 용지 공급 문자, \u000C \n 줄 바꿈 문자, \u000A \r 캐리지 리턴 문자, \u000D \t 탭 문자, \u0009 \v 세로 탭 문자, \u000B \x85 줄임표 또는 NEXT LINE(NEL) 문자(…), \u0085 \p{Z} 구분 문자와 일치시킵니다. ECMAScript와 호환되는 동작을 지정한 경우 \s는 [ \f\n\r\t\v]와 같습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">공백 문자</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">\b 앵커는 단어 문자(\w 언어 요소)와 단어가 아닌 문자(\W 언어 요소) 사이의 경계에서 일치 항목을 찾도록 지정합니다. 단어 문자는 영숫자 문자 및 밑줄로 구성되고, 단어가 아닌 문자는 영숫자나 밑줄이 아닌 모든 문자입니다. 문자열의 시작 또는 끝부분 단어 경계에서 일치 항목을 찾을 수도 있습니다. \b 앵커는 하위 식이 단어의 시작 또는 끝부분이 아닌 전체 단어를 일치시키도록 하는 데 자주 사용됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">단어 경계</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w는 단어 문자와 일치시킵니다. 단어 문자는 다음 유니코드 범주의 멤버입니다. Ll 문자, 소문자 Lu 문자, 대문자 Lt 문자, 첫 글자만 대문자 Lo 문자, 기타 Lm 문자, 한정자 Mn 표시, 공간을 차지하지 않는 문자 Nd 숫자, 10진수 Pc 문장 부호, 연결선 ECMAScript 규격 동작을 지정한 경우 \w는 [a-zA-Z_0-9]와 같습니다.</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">단어 문자</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">예</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">너비가 0인 부정 lookahead 어설션입니다. 여기서, 일치 항목을 찾으려면 입력 문자열이 하위 식의 정규식 패턴과 일치하면 안 됩니다. 일치하는 문자열은 일치 결과에 포함되지 않습니다. 너비가 0인 부정 lookahead 어설션은 일반적으로 정규식의 시작 부분이나 끝부분에 사용됩니다. 정규식의 시작 부분에서는 일치시켜야 하는 유사하지만 보다 일반적인 패턴을 정의할 때 일치시키면 안 되는 특정 패턴을 정의할 수 있습니다. 이 경우 보통 역추적을 제한하는 데 사용됩니다. 정규식의 끝부분에서는 일치 항목의 끝부분에 있으면 안 되는 하위 식을 정의할 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">너비가 0인 부정 lookahead 어설션</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">너비가 0인 부정 lookbehind 어설션입니다. 여기서, 일치 항목을 찾으려면 입력 문자열에서 현재 위치 왼쪽에 'subexpression'이 없어야 합니다. 'subexpression'과 일치하지 않는 하위 문자열은 일치 결과에 포함되지 않습니다. 너비가 0인 부정 lookbehind 어설션은 일반적으로 정규식의 시작 부분에 사용됩니다. 어설션이 정의하는 패턴은 뒤에 오는 문자열에 일치 항목이 없도록 합니다. 캡처된 그룹에 있는 마지막 문자가 해당 그룹의 정규식 패턴과 일치하는 하나 이상의 문자가 아니어야 하는 경우 역추적을 제한하는 데도 사용됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">너비가 0인 부정 lookbehind 어설션</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">너비가 0인 긍정 lookahead 어설션입니다. 여기서, 일치 항목을 찾으려면 입력 문자열이 'subexpression'의 정규식 패턴과 일치해야 합니다. 일치된 하위 문자열은 일치 결과에 포함되지 않습니다. 너비가 0인 긍정 lookahead 어설션은 역추적하지 않습니다. 일반적으로 너비가 0인 긍정 lookahead 어설션은 정규식 패턴 끝에 있습니다. 이 어설션은 일치 항목을 찾을 문자열 끝에 있어야 하지만 일치에 포함되면 안 되는 하위 문자열을 정의합니다. 또한, 과도한 역추적을 방지하는 데에도 유용합니다. 너비가 0인 긍정 lookahead 어설션을 사용하면 캡처된 특정 그룹이 이 캡처된 그룹에 정의된 패턴의 하위 집합과 일치하는 텍스트로 시작하도록 할 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">너비가 0인 긍정 lookahead 어설션</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">너비가 0인 긍정 lookbehind 어설션입니다. 여기서, 일치 항목을 찾으려면 입력 문자열에서 현재 위치 왼쪽에 'subexpression'이 있어야 합니다. 'subexpression'은 일치 결과에 포함되지 않습니다. 너비가 0인 긍정 lookbehind 어설션은 역추적하지 않습니다. 너비가 0인 긍정 lookbehind 어설션은 일반적으로 정규식의 시작 부분에 사용됩니다. 어설션이 정의하는 패턴은 일치 항목의 사전 조건이지만 일치 결과에 포함되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">너비가 0인 긍정 lookbehind 어설션</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">메타데이터에서 찾은 관련 메서드 시그니처가 업데이트되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">지원되지 않는 문서 제거</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">'async' 한정자 제거</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">불필요한 캐스트 제거</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">사용하지 않는 변수 제거</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">'{0}'을(를) '{1}'(으)로 바꾸기</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">충돌 표식 확인</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">편집 다시 실행</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">접근성 한정자 정렬</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">연속 '{0}' 문으로 분할</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">중첩 '{0}' 문으로 분할</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">스트림은 읽기 및 찾기 작업을 지원해야 합니다.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">{0}을(를) 표시하지 않음</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: 비관리형 리소스(비관리형 개체)를 해제하고 종료자를 재정의합니다.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: 비관리형 리소스를 해제하는 코드가 '{0}'에 포함된 경우에만 종료자를 재정의합니다.</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">대상 유형 일치</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">'{1}' 형식을 포함하는 '{0}' 어셈블리가 지원되지 않는 .NET Framework를 참조합니다.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">선언이 없는 로컬 함수 호출이 선택 영역에 있습니다.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">(?()|)에 |가 너무 많습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">)가 너무 많습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">소스 파일 '{0}' 또는 포함하는 프로젝트에 대해 빌드된 PDB를 읽을 수 없습니다. 디버그하는 동안 이 파일의 변경된 모든 내용은 해당 콘텐츠가 빌드된 소스와 일치할 때까지 적용되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">알 수 없는 속성</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">알 수 없는 속성 '{0}'</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">인식할 수 없는 제어 문자입니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">인식할 수 없는 이스케이프 시퀀스 \{0}입니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">인식할 수 없는 그룹화 생성자입니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">종결되지 않은 [] 집합</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">종격되지 않은 (?#...) 주석</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">모든 인수 래핑 해제</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">모든 매개 변수 래핑 해제</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">모든 인수 래핑 해제 및 들여쓰기</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">모든 매개 변수 래핑 해제 및 들여쓰기</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">인수 목록 래핑 해제</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">호출 체인 래핑 해제</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">식 래핑 해제</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">매개 변수 목록 래핑 해제</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">람다 식에 블록 본문 사용</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">람다 식에 식 본문 사용</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">보간된 축자 문자열 사용</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">경고: 문을 변환할 때 의미 체계가 변경될 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">호출 체인 래핑 및 맞춤</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">식 래핑 및 맞추기</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">긴 호출 체인 래핑 및 맞춤</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">호출 체인 래핑</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">모든 인수 래핑</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">모든 매개 변수 래핑</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">식 래핑</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">긴 인수 목록 래핑</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">긴 호출 체인 래핑</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">긴 매개 변수 목록 래핑</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">래핑</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">탐색 모음을 사용하여 컨텍스트를 전환할 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}'은(는) Null이거나 비워 둘 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}'은(는) null이거나 공백일 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">'{0}'은(는) 여기에서 null이 아닙니다.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">'{0}'은(는) 여기에서 null일 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">10,000,000분의 1초</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffffff" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 7개를 나타냅니다. 즉, 날짜 및 시간 값에서 10,000,000분의 1초를 나타냅니다. 시간 값의 초 부분의 10,000,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">10,000,000분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFFF" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 7개를 나타냅니다. 즉, 날짜 및 시간 값에서 10,000,000분의 1초를 나타냅니다. 그러나 후행 0 또는 7개의 0은 표시되지 않습니다. 시간 값의 초 부분의 10,000,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1,000,000분의 1초</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffffff" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 6개를 나타냅니다. 즉, 날짜 및 시간 값에서 1,000,000분의 1초를 나타냅니다. 시간 값의 초 부분의 1,000,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1,000,000분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFF" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 6개를 나타냅니다. 즉, 날짜 및 시간 값에서 1,000,000분의 1초를 나타냅니다. 그러나 후행 0 또는 6개의 0은 표시되지 않습니다. 시간 값의 초 부분의 1,000,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">100,000분의 1초</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffff" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 5개를 나타냅니다. 즉, 날짜 및 시간 값에서 100,000분의 1초를 나타냅니다. 시간 값의 초 부분의 100,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">100,000분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFF" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 5개를 나타냅니다. 즉, 날짜 및 시간 값에서 100,000분의 1초를 나타냅니다. 그러나 후행 0 또는 5개의 0은 표시되지 않습니다. 시간 값의 초 부분의 100,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">10,000분의 1초</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffff" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 4개를 나타냅니다. 즉, 날짜 및 시간 값에서 10,000분의 1초를 나타냅니다. 시간 값의 초 부분의 10,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 버전 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">10,000분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFF" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 4개를 나타냅니다. 즉, 날짜 및 시간 값에서 10,000분의 1초를 나타냅니다. 그러나 후행 0 또는 4개의 0은 표시되지 않습니다. 시간 값의 초 부분의 10,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제에서의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1,000분의 1초</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">"fff" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 3개를 나타냅니다. 즉, 날짜 및 시간 값에서 1,000분의 1초를 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1,000분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">"FFF" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 3개를 나타냅니다. 즉, 날짜 및 시간 값에서 1,000분의 1초를 나타냅니다. 그러나 후행 0 또는 3개의 0은 표시되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">100분의 1초</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">"ff" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 2개를 나타냅니다. 즉, 날짜 및 시간 값에서 100분의 1초를 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">100분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">"FF" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 2개를 나타냅니다. 즉, 날짜 및 시간 값에서 100분의 1초를 나타냅니다. 그러나 후행 0 또는 2개의 0은 표시되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">10분의 1초</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">10분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">"F" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자를 나타냅니다. 즉, 날짜 및 시간 값에서 10분의 1초를 나타냅니다. 이 숫자가 0이면 아무것도 표시되지 않습니다. 다른 형식 지정자 없이 "F" 형식 지정자를 사용하면 "F" 표준 날짜 및 시간 형식 지정자로 해석됩니다. ParseExact, TryParseExact, ParseExact 또는 TryParseExact 메서드에서 사용되는 "F" 형식 지정자의 개수는 초 부분에서 문자열을 성공적으로 구문 분석하기 위해 존재할 수 있는 가장 유효한 숫자의 최대 개수를 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12시간제(1~2자리)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"h" 사용자 지정 형식 지정자는 시간을 1부터 12까지의 숫자로 나타냅니다. 즉, 시간은 자정 또는 정오부터 경과한 정수 시간을 계산하는 12시간제로 표현됩니다. 자정 이후의 특정 시간은 정오 이후의 동일한 시간과 구분되지 않습니다. 시간은 반올림되지 않으며, 한 자릿수 시간은 앞에 0이 없는 형식으로 지정됩니다. 예를 들어, 오전 또는 오후 5:43이라는 시간이 지정되면 이 사용자 지정 형식 지정자는 "5"를 표시합니다. 다른 사용자 지정 형식 지정자 없이 "h" 형식 지정자를 사용하면 표준 날짜 및 시간 형식 지정자로 해석되어 FormatException을 throw합니다.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12시간제(2자리)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">"hh" 사용자 지정 형식 지정자(및 임의 개수의 추가 "h" 지정자)는 시간을 01부터 12까지의 숫자로 나타냅니다. 즉, 시간은 자정 또는 정오부터 경과한 정수 시간을 계산하는 12시간제로 표현됩니다. 자정 이후의 특정 시간은 정오 이후의 동일한 시간과 구분되지 않습니다. 시간은 반올림되지 않으며, 한 자릿수 시간은 앞에 0이 있는 형식으로 지정됩니다. 예를 들어, 오전 또는 오후 5:43이라는 시간이 지정되면 이 형식 지정자는 "05"를 표시합니다.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24시간제(1~2자리)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"H" 사용자 지정 형식 지정자는 시간을 0부터 23까지의 숫자로 나타냅니다. 즉, 시간은 자정부터 경과한 시간을 계산하는 0 기반 24시간제로 표현됩니다. 한 자릿수 시간은 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "H" 형식 지정자를 사용하면 표준 날짜 및 시간 형식 지정자로 해석되어 FormatException을 throw합니다.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24시간제(2자리)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">"HH" 사용자 지정 형식 지정자(및 임의 개수의 추가 "H" 지정자)는 시간을 00부터 23까지의 숫자로 나타냅니다. 즉, 시간은 자정부터 경과한 시간을 계산하는 0 기반 24시간제로 표현됩니다. 한 자릿수 시간은 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">코드</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">날짜 구분 기호</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"/" 사용자 지정 형식 지정자는 년, 월, 일을 구분하는 데 사용되는 날짜 구분 기호를 나타냅니다. 지역화된 적절한 날짜 구분 기호가 현재 문화권 또는 지정된 문화권의 DateTimeFormatInfo.DateSeparator 속성에서 검색됩니다. 참고: 특정 날짜 및 시간 문자열의 날짜 구분 기호를 변경하려면 리터럴 문자열 구분 기호 내에서 구분 기호 문자를 지정하세요. 예를 들어, 사용자 지정 형식 문자열 mm'/'dd'/'yyyy는 "/"가 항상 날짜 구분 기호로 사용되는 결과 문자열을 생성합니다. 문화권의 모든 날짜에 대해 날짜 구분 기호를 변경하려면 현재 문화권의 DateTimeFormatInfo.DateSeparator 속성 값을 변경하거나 DateTimeFormatInfo 개체를 인스턴스화한 후 해당 DateSeparator 속성에 문자를 할당하고 IFormatProvider 매개 변수를 포함하는 형식 지정 메서드의 오버로드를 호출하세요. 다른 사용자 지정 형식 지정자 없이 "/" 형식 지정자를 사용하면 표준 날짜 및 시간 형식 지정자로 해석되어 FormatException을 throw합니다.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">일(1~2자리)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">"d" 사용자 지정 형식 지정자는 일을 1부터 31까지의 숫자로 나타냅니다. 한 자릿수 일은 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "d" 형식 지정자를 사용하면 "d" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">일(2자리)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">"dd" 사용자 지정 형식 문자열은 일을 01부터 31까지의 숫자로 나타냅니다. 한 자릿수 일은 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">요일(약식)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">"ddd" 사용자 지정 형식 지정자는 요일의 약식 이름을 나타냅니다. 요일의 지역화된 약식 이름은 현재 문화권 지정된 문화권의 DateTimeFormatInfo.AbbreviatedDayNames 속성에서 검색됩니다.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">요일(전체)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">"dddd" 사용자 지정 형식 지정자(및 임의 개수의 추가 "d" 지정자)는 요일의 전체 이름을 나타냅니다. 요일의 지역화된 이름은 현재 문화권 또는 지정된 문화권의 DateTimeFormatInfo.DayNames 속성에서 검색됩니다.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">무시 항목</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">메타데이터에서</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">자세한 전체 날짜/시간</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">"F" 표준 형식 지정자는 현재 DateTimeFormatInfo.FullDateTimePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 사용자 지정 형식 문자열은 "dddd, dd MMMM yyyy HH:mm:ss"입니다.</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">간단한 전체 날짜/시간</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">전체 날짜 간단한 시간("f") 형식 지정자 "f" 표준 형식 지정자는 공백으로 구분된 자세한 날짜("D") 패턴과 간단한 시간("t") 패턴의 조합을 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">자세한 일반 날짜/시간</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">"G" 표준 형식 지정자는 공백으로 구분된 간단한 날짜("d") 패턴과 자세한 시간("T") 패턴의 조합을 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">간단한 일반 날짜/시간</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">"g" 표준 형식 지정자는 공백으로 구분된 간단한 날짜("d") 패턴과 간단한 시간("t") 패턴의 조합을 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">제네릭 오버로드</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">제네릭 오버로드</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">{0}({1} - {2})에서</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">소스(특성)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">자세한 날짜</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">"D" 표준 형식 지정자는 현재 DateTimeFormatInfo.LongDatePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 사용자 지정 형식 문자열은 "dddd, dd MMMM yyyy"입니다.</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">자세한 시간</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">"T" 표준 형식 지정자는 특정 문화권의 DateTimeFormatInfo.LongTimePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 사용자 지정 형식 문자열은 "HH:mm:ss"입니다.</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">분(1~2자리)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">"m" 사용자 지정 형식 지정자는 분을 0부터 59까지의 숫자로 나타냅니다. 분은 마지막 정각으로부터 경과한 정수 분을 나타냅니다. 한 자릿수 분은 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "m" 형식 지정자를 사용하면 "m" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">분(2자리)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">"mm" 사용자 지정 형식 지정자(및 임의 개수의 추가 "m" 지정자)는 분을 00부터 59까지의 숫자로 나타냅니다. 분은 마지막 정각으로부터 경과한 정수 분을 나타냅니다. 한 자릿수 분은 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">월(1~2자리)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">"M" 사용자 지정 형식 지정자는 월을 1부터 12까지의 숫자(13개월이 있는 달력에서는 1부터 13까지의 숫자)로 나타냅니다. 한 자릿수 월은 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "M" 형식 지정자를 사용하면 "M" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">월(2자리)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">"MM" 사용자 지정 형식 지정자는 월을 01부터 12까지의 숫자(13개월이 있는 달력에서는 1부터 13까지의 숫자)로 나타냅니다. 한 자릿수 월은 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">월(약식)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">"MMM" 사용자 지정 형식 지정자는 월의 약식 이름을 나타냅니다. 월의 지역화된 약식 이름은 현재 문화권 또는 지정된 문화권의 DateTimeFormatInfo.AbbreviatedMonthNames 속성에서 검색됩니다.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">월 일</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">"M" 또는 "m" 표준 형식 지정자는 현재 DateTimeFormatInfo.MonthDayPattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 사용자 지정 형식 문자열은 "MMMM dd"입니다.</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">월(전체)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">"MMMM" 사용자 지정 형식 지정자는 월의 전체 이름을 나타냅니다. 월의 지역화된 이름은 현재 문화권 또는 지정된 문화권의 DateTimeFormatInfo.MonthNames 속성에서 검색됩니다.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">오버로드</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">오버로드</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} 키워드</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">필드 캡슐화: '{0}'(그리고 속성을 사용함)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">필드 캡슐화: '{0}'(그러나 여전히 필드를 사용함)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">필드 캡슐화(그리고 속성을 사용함)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">필드 캡슐화(그러나 여전히 필드를 사용함)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">인터페이스를 추출할 수 없습니다. 선택 영역이 class/interface/struct 내부에 없습니다.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">인터페이스를 추출할 수 없습니다. 형식에 인터페이스로 추출할 수 있는 멤버가 포함되어 있지 않습니다.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">최종 트리를 생성할 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">매개 변수 형식 또는 반환 형식은 익명 형식 [{0}]일 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">선택 영역에 활성 문이 포함되어 있지 않습니다.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">이 섹션에는 오류 또는 알 수 없는 형식이 포함되어 있습니다.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">'{0}' 형식 매개 변수가 다른 '{1}' 형식 매개 변수에 의해 숨겨집니다.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">변수 주소는 선택한 코드 내부에서 사용됩니다.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">생성자 [{0}]에서 읽기 전용 필드에 대한 할당 작업을 수행해야 합니다.</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">생성된 코드가 숨겨진 코드 부분과 겹쳐져 있습니다.</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">'{0}'에 선택적 매개 변수 추가</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">'{0}'에 매개 변수 추가</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">위임하는 생성자 '{0}({1})' 생성</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">생성자 '{0}({1})' 생성</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">생성자 '{0}({1})'을(를) 할당하는 필드 생성</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Equals 및 GetHashCode 생성</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Equals(object) 생성</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">GetHashCode() 생성</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">'{0}'에서 생성자 생성</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">모두 생성</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">열거형 멤버 '{1}.{0}' 생성</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">{1}.{0}' 상수 생성</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">{1}.{0}' 읽기 전용 속성 생성</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">{1}.{0}' 속성 생성</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">{1}.{0}' 읽기 전용 필드 생성</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">{1}.{0}' 필드 생성</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">'{0}' 로컬을 생성합니다.</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">새 파일에서 {0} '{1}' 생성</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">중첩된 {0} '{1}' 생성</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">전역 네임스페이스</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">추상적으로 인터페이스 구현</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">'{0}'을(를) 통해 인터페이스 구현</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">인터페이스 구현</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">'{0}'에 대한 필드 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">'{0}'에 대한 로컬 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">'{0}'에 대한 상수 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">'{0}'에 대한 지역 상수 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">'{0}'의 모든 항목에 대한 필드 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">'{0}'의 모든 항목에 대한 로컬 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">'{0}'의 모든 항목에 대한 상수 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">'{0}'의 모든 항목에 대한 지역 상수 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">'{0}'의 모든 항목에 대한 쿼리 변수 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">'{0}'에 대한 쿼리 변수 지정</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">익명 형식:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">은(는)</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">런타임에 확인될 작업이 포함된 개체를 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">상수</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">필드</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">지역 상수</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">지역 변수</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">레이블</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">기간/시대</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">"g" 또는 "gg" 사용자 지정 형식 지정자(및 임의 개수의 추가 "g" 지정자)는 기간 또는 시대(예: A.D.)를 나타냅니다. 형식 지정 연산은 형식을 지정할 날짜에 연결된 기간 또는 시대 문자열이 없으면 이 지정자를 무시합니다. 다른 사용자 지정 형식 지정자 없이 "g" 형식 지정자를 사용하면 "g" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">범위 변수</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">매개 변수</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">In</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">요약:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">로컬 항목 및 매개 변수</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">형식 매개 변수:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">반환 값:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">예외:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">설명:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">이 형식의 기호에 대한 소스는 생성할 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">어셈블리</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">위치를 알 수 없음</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">예기치 않은 인터페이스 멤버 종류: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">알 수 없는 기호 종류</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">추상 속성 '{1}.{0}' 생성</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">추상 메서드 '{1}.{0}' 생성</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">{1}.{0}' 메서드 생성</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">요청한 어셈블리가 이미 '{0}'에서 로드되었습니다.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">기호에 아이콘이 없습니다.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">비동기 메서드에는 ref/out 매개 변수 [{0}]을(를) 포함할 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">멤버가 메타데이터에 정의되어 있습니다.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">생성자, 인덱서, 메서드 또는 대리자의 서명만 변경할 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">이 기호에는 메타데이터에 관련된 정의 또는 참조가 있습니다. 시그니처를 변경하면 빌드 오류가 발생할 수 있습니다. 계속하시겠습니까?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">시그니처 변경...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">새 형식 생성...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">사용자 진단 분석기 오류입니다.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">분석기 '{0}'에서 '{2}' 메시지와 함께 '{1}' 형식의 예외를 throw했습니다.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">'{0}' 분석기에서 다음 예외를 throw했습니다. '{1}'</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">이름 단순화</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">멤버 액세스 단순화</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">한정자 제거</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">알 수 없는 오류 발생</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">사용할 수 있는</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">사용할 수 없음 ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">소스</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">비표시 오류(Suppression) 파일</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">비표시 오류(Suppression) {0} 제거</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">비표시 오류(Suppression) 제거</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;보류 중&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">참고: '{0}' 코드 조각을 삽입하려면 두 번 탭하세요.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">인터페이스를 Dispose 패턴으로 명시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">인터페이스를 Dispose 패턴으로 구현</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">{0}(현재 '{1}') 다시 심사</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">인수에는 null 요소가 있을 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">인수는 비워 둘 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">ID가 '{0}'인 보고된 진단이 분석기에서 지원되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">모든 항목 코드 수정 사항을 계산하는 중...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">모든 발생 수정</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">문서</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">프로젝트</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">솔루션</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: 관리형 상태(관리형 개체)를 삭제합니다.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: 큰 필드를 null로 설정합니다.</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">컴파일러</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">라이브</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">enum 값</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">const 필드</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">메서드</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">운영자</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">생성자</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">Auto 속성</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">속성</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">이벤트 접근자</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">rfc1123 날짜/시간</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"R" 또는 "r" 표준 형식 지정자는 DateTimeFormatInfo.RFC1123Pattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 패턴은 정의된 표준을 반영하며, 속성은 읽기 전용입니다. 따라서 사용된 문화권이나 지정된 형식 공급자와 관계없이 항상 동일합니다. 사용자 지정 형식 문자열은 "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'"입니다. 이 표준 형식 지정자를 사용하면 형식 지정 또는 구문 분석 연산에서 항상 고정 문화권이 사용됩니다.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">왕복 날짜/시간</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">"O" 또는 "o" 표준 형식 지정자는 표준 시간대 정보를 보존하고 ISO 8601을 준수하는 결과 문자열을 출력하는 패턴을 사용하여 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. DateTime 값의 경우, 이 형식 지정자는 텍스트의 DateTime.Kind 속성과 함께 날짜 및 시간 값을 보존하도록 설계되어 있습니다. 형식이 지정된 문자열은 styles 매개 변수가 DateTimeStyles.RoundtripKind로 설정된 경우 DateTime.Parse(String, IFormatProvider, DateTimeStyles) 또는 DateTime.ParseExact 메서드를 사용하여 다시 구문 분석할 수 있습니다. "O" 또는 "o" 표준 형식 지정자는 DateTime 값의 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" 사용자 지정 형식 문자열 및 DateTimeOffset 값의 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" 사용자 지정 형식 문자열에 대응됩니다. 이 문자열에서 하이픈, 콜론 및 문자 "T"와 같은 개별 문자를 구분하는 작은따옴표 쌍은 해당 개별 문자가 변경될 수 없는 리터럴임을 나타냅니다. 출력 문자열에는 아포스트로피가 표시되지 않습니다. "O" 또는 "o" 표준 형식 지정자(및 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" 사용자 지정 형식 문자열)는 ISO 8601이 표준 시간대 정보를 나타내는 세 가지 방법을 사용하여 DateTime 값의 Kind 속성을 보존합니다. DateTimeKind.Local 날짜 및 시간 값의 표준 시간대 부분은 UTC에서 가져온 오프셋(예: +01:00, -07:00)입니다. 모든 DateTimeOffset 값도 이 형식으로 표현됩니다. DateTimeKind.Utc 날짜 및 시간 값의 표준 시간대 부분은 "Z"(제로 오프셋을 나타냄)를 사용하여 UTC를 표현합니다. DateTimeKind.Unspecified 날짜 및 시간 값에는 표준 시간대 정보가 없습니다. "O" 또는 "o" 표준 형식 지정자는 국제 표준을 준수하므로 이 지정자를 사용하는 형식 지정 또는 구문 분석 연산은 항상 고정 문화권과 양력을 사용합니다. DateTime 및 DateTimeOffset의 Parse, TryParse, ParseExact 및 TryParseExact 메서드로 전달되는 문자열은 "O" 또는 "o"형식 중 하나인 경우 "O" 또는 "o" 형식 지정자를 사용하여 구문 분석될 수 있습니다. DateTime 개체의 경우, 호출하는 구문 분석 오버로드는 값이 DateTimeStyles.RoundtripKind인 styles 매개 변수도 포함해야 합니다. "O" 또는 "o" 형식 지정자에 대응되는 사용자 지정 형식 문자열을 사용하여 구문 분석 메서드를 호출해도 "O" 또는 "o"와 동일한 결과를 얻을 수 없습니다. 사용자 지정 형식 문자열을 사용하는 구문 분석 메서드는 표준 시간대 부분이 없거나 "Z"를 사용하여 UTC를 나타내는 날짜 및 시간 값의 문자열 표현을 구문 분석할 수 없기 때문입니다.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">초(1~2자리)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">"s" 사용자 지정 형식 지정자는 초를 0부터 59까지의 숫자로 나타냅니다. 결과는 마지막 분으로부터 경과한 정수 초를 나타냅니다. 한 자릿수 초는 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "s" 형식 지정자를 사용하면 "s" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">초(2자리)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">"ss" 사용자 지정 형식 지정자(및 임의 개수의 추가 "s" 지정자)는 초를 00부터 59까지의 숫자로 나타냅니다. 결과는 마지막 분으로부터 경과한 정수 초를 나타냅니다. 한 자릿수 초는 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">간단한 날짜</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">"d" 표준 형식 지정자는 특정 문화권의 DateTimeFormatInfo.ShortDatePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 ShortDatePattern 속성이 반환하는 사용자 지정 형식 문자열은 "MM/dd/yyyy"입니다.</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">간단한 시간</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">"t" 표준 형식 지정자는 현재 DateTimeFormatInfo.ShortTimePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 사용자 지정 형식 문자열은 "HH:mm"입니다.</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">정렬 가능한 날짜/시간</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"s" 표준 형식 지정자는 DateTimeFormatInfo.SortableDateTimePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 패턴은 정의된 표준(ISO 8601)을 반영하며, 속성은 읽기 전용입니다. 따라서 사용된 문화권이나 지정된 형식 공급자와 관계없이 항상 동일합니다. 사용자 지정 형식 문자열은 "yyyy'-'MM'-'dd'T'HH':'mm':'ss"입니다. "s" 형식 지정자의 목표는 날짜 및 시간 값을 기준으로 일관성 있게 오름차순 또는 내림차순으로 정렬되는 결과 문자열을 생성하는 것입니다. 그 결과 "s" 표준 형식 지정자는 일관성 있는 형식으로 날짜 및 시간 값을 나타내긴 하지만 형식 지정 연산은 형식 지정 대상인 날짜 및 시간 개체가 그 DateTime.Kind 속성 또는 DateTimeOffset.Offset 값을 반영하도록 수정하지 않습니다. 예를 들어, 날짜 및 시간 값 2014-11-15T18:32:17+00:00과 2014-11-15T18:32:17+08:00의 형식을 지정하여 생성되는 결과 문자열은 동일합니다. 이 표준 형식 지정자를 사용하면 형식 지정 또는 구문 분석 연산에서 항상 고정 문화권이 사용됩니다.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">정적 생성자</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'기호'는 네임스페이스일 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">시간 구분 기호</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">":" 사용자 지정 형식 지정자는 시간, 분, 초를 구분하는 데 사용되는 시간 구분 기호를 나타냅니다. 지역화된 적절한 시간 구분 기호가 현재 문화권 또는 지정된 문화권의 DateTimeFormatInfo.TimeSeparator 속성에서 검색됩니다. 참고: 특정 날짜 및 시간 문자열의 시간 구분 기호를 변경하려면 리터럴 문자열 구분 기호 내에서 구분 기호 문자를 지정하세요. 예를 들어, 사용자 지정 형식 문자열 hh'_'dd'_'ss는 "_"(밑줄)이 항상 시간 구분 기호로 사용되는 결과 문자열을 생성합니다. 문화권의 모든 날짜에 대해 시간 구분 기호를 변경하려면 현재 문화권의 DateTimeFormatInfo.TimeSeparator 속성 값을 변경하거나 DateTimeFormatInfo 개체를 인스턴스화한 후 해당 TimeSeparator 속성에 문자를 할당하고 IFormatProvider 매개 변수를 포함하는 형식 지정 메서드의 오버로드를 호출하세요. 다른 사용자 지정 형식 지정자 없이 ":" 형식 지정자를 사용하면 표준 날짜 및 시간 형식 지정자로 해석되어 FormatException을 throw합니다.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">표준 시간대</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"K" 사용자 지정 형식 지정자는 날짜 및 시간 값의 표준 시간대 정보를 나타냅니다. 이 형식 지정자를 DateTime 값과 함께 사용하면 결과 문자열은 DateTime.Kind 속성의 값으로 정의됩니다. 현지 표준 시간대(DateTimeKind.Local의 DateTime.Kind 속성 값)의 경우, 이 지정자는 "zzz" 지정자와 동일하며 UTC(협정 세계시)에서 가져온 로컬 오프셋을 포함하는 결과 문자열을 생성합니다. 예를 들면 "-07:00"과 같습니다. UTC 시간(DateTimeKind.Utc의 DateTime.Kind 속성 값)의 경우, 결과 문자열은 UTC 날짜를 나타내는 "Z" 문자를 포함합니다. 지정되지 않은 표준 시간대의 시간(DateTime.Kind 속성 값이 DateTimeKind.Unspecified와 같은 시간)의 경우, 결과는 String.Empty와 동일합니다. DateTimeOffset 값의 경우, "K" 형식 지정자는 "zzz" 형식 지정자와 동일하며 UTC에서 가져온 DateTimeOffset 값의 오프셋을 포함하는 결과 문자열을 생성합니다. 다른 사용자 지정 형식 지정자 없이 "K" 형식 지정자를 사용하면 표준 날짜 및 시간 형식 지정자로 해석되어 FormatException을 throw합니다.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">형식 제약 조건</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">형식 매개 변수</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">특성</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">속성으로 '{0}' 및 '{1}' 바꾸기</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">속성으로 '{0}' 바꾸기</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">메서드가 암시적으로 참조됨</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">'{0}' 형식 생성</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">{0} '{1}' 생성</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">'{0}'을(를) '{1}'(으)로 변경합니다.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">호출되지 않은 메서드는 속성으로 대체될 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">출력 변수 선언이 아닌, 단일 인수를 사용하는 메서드만 속성으로 대체될 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">{0} 분석기 인스턴스는 {1}에서 만들 수 없습니다. {2}</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">{0} 어셈블리에는 분석기가 포함되어 있지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">{0} 분석기 어셈블리를 로드할 수 없습니다. {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">메서드를 동기 메서드로 설정</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">소스: {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">최신 버전 찾기 및 설치</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">로컬 버전 '{0}' 사용</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">로컬에 설치된 '{0}' 버전 '{1}' 사용 이 버전 사용 대상: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">'{0}'의 최신 버전 찾기 및 설치</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">패키지 관리자를 사용하여 설치...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">{0} {1}' 설치</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">'{0}' 버전 설치</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">'{0}' 변수 생성</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">클래스</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">상수</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">대리자</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">열거형</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">이벤트</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">확장 메서드</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">필드</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">인터페이스</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">로컬 항목</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">메서드</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">모듈</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">네임스페이스</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">속성</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">구조</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">매개 변수:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Variadic SignatureHelpItem에는 매개 변수가 하나 이상 있어야 합니다.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">'{0}'을(를) 메서드로 대체</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">'{0}'을(를) 메서드로 대체</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">속성이 암시적으로 참조됩니다.</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">속성을 메서드 호출로 안전하게 대체할 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">보간된 문자열로 변환</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">{0}(으)로 형식 이동</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">{0}(으)로 파일 이름 바꾸기</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">{0}(으)로 형식 이름 바꾸기</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">태그 제거</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">누락된 매개 변수 노드 추가</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">포함 범위를 비동기로 설정</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">포함 범위를 비동기로 설정(Task 반환)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(알 수 없음)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Framework 형식 사용</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">'{0}' 패키지 설치</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">프로젝트 {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">'{0}' 정규화</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">'{0}'에 대한 참조를 제거합니다.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">키워드</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">코드 조각</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">모두 소문자</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">모두 대문자</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">첫 글자 대문자로 표시</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">파스칼식 대/소문자</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">문서 '{0}' 제거</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">문서 '{0}' 추가</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">인수 이름 '{0}' 추가</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">'{0}' 사용</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">둘 다 사용</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">맨 아래 사용</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">맨 위 사용</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">사용하지 않는 변수 제거</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">이진으로 변환</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">10진수로 변환</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">16진수로 변환</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">천 단위 구분</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">단어 구분</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">니블 구분</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">구분 기호 제거</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">'{0}'에 매개 변수 추가</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">생성자 생성...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">생성자 매개 변수로 사용할 멤버 선택</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Equals/GetHashCode에 사용할 멤버 선택</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">재정의 생성...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">재정의할 멤버 선택</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">null 검사 추가</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">string.IsNullOrEmpty' 검사 추가</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">string.IsNullOrWhiteSpace' 검사 추가</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">'{0}' 필드 초기화</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">'{0}' 속성 초기화</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">null 검사 추가</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">연산자 생성</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">{0} 구현</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">보고된 진단 '{0}'의 소스 위치가 분석되는 컴파일의 일부가 아닌 '{1}' 파일에 있습니다.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">보고된 진단 '{0}'의 소스 위치 '{1}'이(가) 지정된 파일의 범위 밖인 파일 '{2}'에 있습니다.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">{0}(프로젝트 {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">접근성 한정자 추가</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">참조 근처로 선언 이동</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">전체 속성으로 변환</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">경고: 메서드가 메타데이터의 기호를 재정의합니다.</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">{0} 사용</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">인수 이름 '{0}' 추가(후행 인수 포함)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">로컬 함수</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">인덱서</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">별칭 모호한 형식 '{0}'</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">경고: 반복 중 컬렉션이 수정되었습니다.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">경고: 반복 변수가 함수 경계를 벗어났습니다.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">경고: 반복 계산 중 컬렉션이 수정될 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">범용 전체 날짜/시간</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">"U" 표준 형식 지정자는 지정된 문화권의 DateTimeFormatInfo.FullDateTimePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 패턴은 "F" 패턴과 동일합니다. 그러나 DateTime 값은 형식이 지정되기 전에 자동으로 UTC로 변환됩니다.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">범용 정렬 가능한 날짜/시간</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">"u" 표준 형식 지정자는 DateTimeFormatInfo.UniversalSortableDateTimePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 패턴은 정의된 표준을 반영하며, 속성은 읽기 전용입니다. 따라서 사용된 문화권이나 지정된 형식 공급자와 관계없이 항상 동일합니다. 사용자 지정 형식 문자열은 "yyyy'-'MM'-'dd HH':'mm':'ss'Z'"입니다. 이 표준 형식 지정자를 사용하면 형식 지정 또는 구문 분석 연산에서 항상 고정 문화권이 사용됩니다.. 결과 문자열은 시간을 UTC(협정 세계시)로 표현해야 하지만, 형식 지정 연산 중에 원래 DateTime 값의 변환이 수행되지 않습니다. 따라서 형식을 지정하기 전에 먼저 DateTime.ToUniversalTime 메서드를 호출하여 DateTime 값을 UTC로 변환해야 합니다.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">포함하는 멤버에서 사용을 업데이트하는 중</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">포함하는 프로젝트에서 사용을 업데이트하는 중</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">포함하는 형식에서 사용을 업데이트하는 중</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">종속 프로젝트에서 사용을 업데이트하는 중</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">UTC 시간 및 분 오프셋</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">DateTime 값의 경우, "zzz" 사용자 지정 형식 지정자는 UTC에서 가져온 로컬 운영 체제의 표준 시간대의 부호 있는 오프셋을 나타내며(단위: 시간과 분), 인스턴스의 DateTime.Kind 속성의 값을 반영하지 않습니다. 따라서 DateTime 값과 함께 "zzz" 형식 지정자를 사용하는 것은 권장되지 않습니다. DateTimeOffset 값의 경우, 이 형식 지정자는 UTC에서 가져온 DateTimeOffset 값의 오프셋을 나타냅니다(단위: 시간과 분). 오프셋은 항상 앞에 있는 부호와 함께 표시됩니다. 더하기 부호(+)는 UTC보다 앞선 시간을, 빼기 부호(-)는 UTC보다 늦은 시간을 나타냅니다. 한 자릿수 오프셋은 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">UTC 시간 오프셋(1~2자리)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">DateTime 값의 경우, "z" 사용자 지정 형식 지정자는 UTC(협정 세계시)에서 가져온 로컬 운영 체제의 표준 시간대의 부호 있는 오프셋을 나타내며(단위: 시간), 인스턴스의 DateTime.Kind 속성의 값을 반영하지 않습니다. 따라서 DateTime 값과 함께 "z" 형식 지정자를 사용하는 것은 권장되지 않습니다. DateTimeOffset 값의 경우, 이 형식 지정자는 UTC에서 가져온 DateTimeOffset 값의 오프셋을 나타냅니다(단위: 시간). 오프셋은 항상 앞에 있는 부호와 함께 표시됩니다. 더하기 부호(+)는 UTC보다 앞선 시간을, 빼기 부호(-)는 UTC보다 늦은 시간을 나타냅니다. 한 자릿수 오프셋은 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "z" 형식 지정자를 사용하면 표준 날짜 및 시간 형식으로 해석되어 FormatException을 throw합니다.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">UTC 시간 오프셋(2자리)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">DateTime 값의 경우, "zz" 사용자 지정 형식 지정자는 UTC에서 가져온 로컬 운영 체제의 표준 시간대의 부호 있는 오프셋을 나타내며(단위: 시간), 인스턴스의 DateTime.Kind 속성의 값을 반영하지 않습니다. 따라서 DateTime 값과 함께 "zz" 형식 지정자를 사용하는 것은 권장되지 않습니다. DateTimeOffset 값의 경우, 이 형식 지정자는 UTC에서 가져온 DateTimeOffset 값의 오프셋을 나타냅니다(단위: 시간). 오프셋은 항상 앞에 있는 부호와 함께 표시됩니다. 더하기 부호(+)는 UTC보다 앞선 시간을, 빼기 부호(-)는 UTC보다 늦은 시간을 나타냅니다. 한 자릿수 오프셋은 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">[x-y] 범위가 역순으로 되어 있습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">년(1~2자리)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">"y" 사용자 지정 형식 지정자는 연도를 한 자릿수 또는 두 자릿수 숫자로 나타냅니다. 연도에 세 자릿수 이상이 있는 경우 결과에는 최하위 숫자 2개만 표시됩니다. 두 자릿수 연도의 첫 번째 숫자가 0으로 시작하면(예: 2008) 숫자는 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "y" 형식 지정자를 사용하면 "y" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">년(2자리)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">"yy" 사용자 지정 형식 지정자는 연도를 두 자릿수 숫자로 나타냅니다. 연도에 세 자릿수 이상이 있는 경우 결과에 최하위 숫자 2개만 표시됩니다. 두 자릿수 연도에 3개 미만의 유효숫자가 있는 경우 앞을 0으로 채워 두 자릿수를 생성합니다. 구문 분석 연산에서, "yy" 사용자 지정 형식 지정자를 사용하여 구문 분석되는 두 자릿수 연도는 형식 공급자의 현재 달력의 Calendar.TwoDigitYearMax 속성을 기준으로 해석됩니다. 다음 예제에서는 두 자릿수 연도를 갖는 날짜의 문자열 표현을 이 예제의 현재 문화권인 en-US 문화권의 기본 양력을 사용하여 구문 분석합니다. 그런 다음 TwoDigitYearMax 속성이 수정된 GregorianCalendar 개체를 사용하도록 현재 문화권의 CultureInfo 개체를 변경합니다.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">년(3~4자리)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">"yyy" 사용자 지정 형식 지정자는 세 자릿수 이상으로 연도를 나타냅니다. 연도에 4개 이상의 유효 숫자가 있는 경우 결과 문자열에 포함됩니다. 연도에 3개 미만의 유효 숫자가 있는 경우 앞을 0으로 채워 세 자릿수를 생성합니다.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">년(4자리)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">"yyyy" 사용자 지정 형식 지정자는 네 자릿수 이상으로 연도를 나타냅니다. 연도에 5개 이상의 유효 숫자가 있는 경우 결과 문자열에 포함됩니다. 연도에 4개 미만의 유효 숫자가 있는 경우 앞을 0으로 채워 네 자릿수를 생성합니다.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">년(5자리)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">"yyyyy" 사용자 지정 형식 지정자(및 임의 개수의 추가 "y" 지정자)는 다섯 자릿수 이상으로 연도를 나타냅니다. 연도에 6개 이상의 유효 숫자가 있는 경우 결과 문자열에 포함됩니다. 연도에 5개 미만의 유효 숫자가 있는 경우 앞을 0으로 채워 다섯 자릿수를 생성합니다. 추가 "y" 지정자가 있는 경우 "y" 지정자의 개수를 생성하는 데 필요한 만큼 숫자가 0으로 채워집니다.</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">년 월</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">"Y" 또는 "y" 표준 형식 지정자는 지정된 문화권의 DateTimeFormatInfo.YearMonthPattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 사용자 지정 형식 문자열은 "yyyy MMMM"입니다.</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="ko" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM(약식)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">"t" 사용자 지정 형식 지정자는 AM/PM 지정자의 첫 번째 문자를 나타냅니다. 지역화된 적절한 지정자는 현재 문화권 또는 특정 문화권의 DateTimeFormatInfo.AMDesignator 또는 DateTimeFormatInfo.PMDesignator 속성에서 검색됩니다. AM 지정자는 0:00:00(자정)부터 11:59:59.999까지의 모든 시간에 사용됩니다. PM 지정자는 12:00:00(정오)부터 23:59:59.999까지의 모든 시간에 사용됩니다. 다른 사용자 지정 형식 지정자 없이 "t" 형식 지정자를 사용하면 "t" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM(전체)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">"tt" 사용자 지정 형식 지정자(및 임의 개수의 추가 "t" 지정자)는 전체 AM/PM 지정자를 나타냅니다. 지역화된 적절한 지정자는 현재 문화권 또는 특정 문화권의 DateTimeFormatInfo.AMDesignator 또는 DateTimeFormatInfo.PMDesignator 속성에서 검색됩니다. AM 지정자는 0:00:00(자정)부터 11:59:59.999까지의 모든 시간에 사용됩니다. PM 지정자는 12:00:00(정오)부터 23:59:59.999까지의 모든 시간에 사용됩니다. "tt" 지정자는 AM과 PM 사이의 구분을 유지해야 하는 언어에 사용해야 합니다. 그 예로 일본어를 들 수 있는데, 일본어에서는 AM 지정자와 PM 지정자가 첫 번째 문자가 아닌 두 번째 문자에서 구분됩니다.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">빼기는 문자 클래스의 마지막 요소여야 합니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">'DebuggerDisplay' 특성을 추가합니다.</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">명시적 캐스트 추가</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">멤버 이름 추가</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">모든 매개 변수에 대한 null 검사 추가</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">생성자에 선택적 매개 변수 추가</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">'{0}'(및 재정의/구현)에 매개 변수 추가</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">생성자에 매개 변수 추가</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">프로젝트 참조를 '{0}'에 추가합니다.</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">참조를 '{0}'에 추가합니다.</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">작업은 비워 둘 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">튜플 요소 이름 '{0}' 추가</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">래핑된 인수 맞춤</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">래핑된 매개 변수 맞춤</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">교체 조건은 주석이 될 수 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">교체 조건은 캡처하지 않고 이름을 지정할 수 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">파일 헤더 기본 설정 적용</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">개체/컬렉션 초기화 기본 설정 적용</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">대기된 작업에서 '{0}'이(가) 반환됨</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">대기된 작업에서 값이 반환되지 않음</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">기본 클래스에 구현되지 않아 액세스할 수 없는 멤버가 포함되어 있습니다.</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">변경 내용을 적용할 수 없음 -- 예기치 않은 오류: '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">문자 범위에 \{0} 클래스를 포함할 수 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">캡처 그룹 번호는 Int32.MaxValue보다 작거나 같아야 합니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">캡처 번호는 0일 수 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;유추&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;생략&gt;</target> <note /> </trans-unit> <trans-unit id="Change_namespace_to_0"> <source>Change namespace to '{0}'</source> <target state="translated">네임스페이스를 '{0}'(으)로 변경</target> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">전역 네임스페이스로 변경</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">예외에서 중지된 동안에는 변경할 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">애플리케이션이 실행되는 동안에는 '{0}' 프로젝트의 변경 내용이 적용되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application"> <source>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</source> <target state="new">Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">{0} 코드 스타일 구성</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">{0} 심각도 구성</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">모든 '{0}' 분석기에 대해 심각도 구성</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">모든 분석기에 대해 심각도 구성</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">LINQ로 변환</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">'{0}'에 추가</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">클래스로 변환</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">LINQ로 변환(통화 양식)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">레코드로 변환</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">레코드 구조체로 변환</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">구조체로 변환</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">형식을 '{0}'(으)로 변환</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">'{0}' 필드 만들기 및 할당</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">'{0}' 속성 만들기 및 할당</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">나머지를 만들고 필드로 할당합니다.</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">나머지를 만들고 속성으로 할당합니다.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">이 코드를 변경하지 마세요. '{0}' 메서드에 정리 코드를 입력합니다.</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">소스 파일 '{0}'의 현재 콘텐츠가 빌드된 소스와 일치하지 않습니다. 디버그하는 동안 이 파일의 변경된 모든 내용은 해당 콘텐츠가 빌드된 소스와 일치할 때까지 적용되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">문서가 이 서비스를 만든 작업 영역에 포함되어 있어야 합니다.</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">편집하며 계속하기</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">모듈에서 편집하며 계속하기를 허용하지 않음</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">'{0}' 프로젝트에서 수행한 변경으로 디버그 세션을 계속할 수 없습니다. {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">편집하고 계속하기는 런타임에서 지원되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">'{0}' 파일을 읽는 동안 오류가 발생했습니다. {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">CodeFixProvider 인스턴스를 만드는 동안 오류가 발생했습니다.</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">CodeFixProvider '{0}' 인스턴스를 만드는 동안 오류가 발생했습니다.</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">예:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">예:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">명시적으로 구현된 레코드 메서드에는 컴파일러에서 생성된 것과 일치하는 매개 변수 이름 '{0}'이 있어야 합니다.</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">기본 클래스 추출...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">인터페이스 추출...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">로컬 함수 추출</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">메서드 추출</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">{0}의 데이터 흐름 분석 실패</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">서식 수정</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">오타 '{0}' 수정</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">문서 서식</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">문서 서식을 지정하는 중</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">비교 연산자 생성</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">'{0}'에 생성자 생성(필드 포함)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">'{0}'에 생성자 생성(속성 포함)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">'{0}'에 대해 생성</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">'{0}' 매개 변수 생성</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">'{0}' 매개 변수(및 재정의/구현) 생성</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">패턴 끝에 \를 사용할 수 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">x &gt; y인 잘못된 {x,y}입니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">'{0}'을(를) 명시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">'{0}'을(를) 암시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">추상 클래스 구현</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">모든 인터페이스를 명시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">모든 인터페이스를 암시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">모든 멤버를 명시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">명시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">암시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">나머지 멤버를 명시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">'{0}'을(를) 통해 구현</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">불완전한 \p{X} 문자 이스케이프</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">모든 인수 들여쓰기</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">모든 매개 변수 들여쓰기</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">래핑된 인수 들여쓰기</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">래핑된 매개 변수 들여쓰기</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">'{0}'을(를) 인라인으로 지정</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">'{0}'을(를) 인라인으로 지정 및 유지</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">16진수가 부족합니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">상수 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">필드 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">로컬 소개</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">쿼리 변수 지정</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">잘못된 그룹 이름: 그룹 이름은 단어 문자로 시작해야 합니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">'abstract' 클래스 만들기</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">정적으로 만들기</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">조건 반전</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">형식이 잘못되었습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">형식이 잘못된 \p{X} 문자 이스케이프</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">\k&lt;...&gt; 역참조 형식이 잘못되었습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">중첩 '{0}' 문과 병합</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">다음 '{0}' 문과 병합</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">외부 '{0}' 문과 병합</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">이전 '{0}' 문과 병합</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0}은(는) 읽기 및 검색 작업을 지원하는 스트림을 반환해야 합니다.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">제어 문자가 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">네임스페이스로 콘텐츠 이동...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">파일을 '{0}'(으)로 이동</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">파일을 프로젝트 루트 폴더로 이동</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">네임스페이스로 이동...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">중첩 수량자 {0}입니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">메서드 호출을 삽입할 유효한 위치가 없습니다.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">부족 )'s</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">연산자</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">속성 참조를 업데이트할 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">'{0}' 끌어오기</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">'{0}'을(를) '{1}'(으)로 끌어오기</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">기본 형식까지 멤버를 풀...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">새 기본 클래스까지 멤버를 풀하세요...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">수량자 {x,y} 앞에 아무 것도 없습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">정의되지 않은 그룹에 대한 참조</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">정의되지 않은 그룹 이름 {0}에 대한 참조입니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">정의되지 않은 그룹 번호 {0}을(를) 참조합니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">모든 제어 문자입니다. Cc, Cf, Cs, Co 및 Cn 범주가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">모든 제어 문자</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">모든 분음 부호입니다. Mn, Mc 및 Me 범주가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">모든 분음 부호</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">모든 문자입니다. Lu, Ll, Lt, Lm 및 Lo 문자가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">모든 문자</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">모든 숫자입니다. Nd, Nl 및 No 범주가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">모든 숫자</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">모든 문장 부호 문자입니다. Pc, Pd, Ps, Pe, Pi, Pf 및 Po 범주가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">모든 문장 부호 문자</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">모든 구분 문자입니다. Zs, Zl 및 Zp 범주가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">모든 구분 문자</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">모든 기호입니다. Sm, Sc, Sk 및 So 범주가 포함됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">모든 기호</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">세로 막대(|) 문자를 사용하여 일련의 패턴 중 하나를 일치시킬 수 있습니다. 여기서 | 문자는 각 패턴을 구분합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">대체</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">마침표(.) 문자는 \n(줄 바꿈 문자, \u000A)을 제외한 모든 문자와 일치시킵니다. 정규식 패턴이 RegexOptions.Singleline 옵션으로 수정되거나 . 문자 클래스가 포함된 패턴의 일부가 's' 옵션으로 수정된 경우 .는 모든 문자와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">모든 문자</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">원자성 그룹(다른 정규식 엔진에서 역추적하지 않는 하위 식, 원자성 하위 식 또는 한 번만 하위 식이라고 함)은 역추적을 사용하지 않도록 설정합니다. 정규식 엔진은 입력 문자열에서 가능한 한 많은 문자와 일치시킵니다. 더 이상 일치 항목을 찾을 수 없으면 대체 패턴 일치 항목 찾기를 시도하도록 역추적하지 않습니다. 즉, 하위 식은 해당 하위 식 단독으로 일치되는 문자열만 일치시킵니다. 해당 하위 식과 그 뒤에 오는 하위 식을 기반으로 문자열을 일치시키지 않습니다. 이 옵션은 역추적이 성공하지 못할 것을 알고 있는 경우에 사용하는 것이 좋습니다. 정규식 엔진이 불필요한 검색을 수행하지 않도록 하면 성능이 향상됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">원자성 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">백스페이스 문자 \u0008과 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">백스페이스 문자</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">균형 조정 그룹 정의는 이전에 정의된 그룹의 정의를 삭제하고, 이전에 정의된 그룹과 현재 그룹 사이의 간격을 현재 그룹에 저장합니다. 'name1'은 현재 그룹이고(선택 사항), 'name2'는 이전에 정의된 그룹이며, 'subexpression'은 유효한 정규식 패턴입니다. 균형 조정 그룹 정의는 name2의 정의를 삭제하고 name2와 name1 사이의 간격을 name1에 저장합니다. name2 그룹이 정의되어 있지 않으면 일치에서 역추적합니다. name2의 마지막 정의를 삭제하면 name2의 이전 정의가 표시되므로 이 구문을 통해 name2 그룹에 대한 캡처 스택을 괄호 또는 여는 대괄호 및 닫는 대괄호와 같은 중첩 구문을 추적하기 위한 카운터로 사용할 수 있습니다. 균형 조정 그룹 정의에서는 'name2'를 스택으로 사용합니다. 각 중첩 구문의 시작 문자는 그룹 및 해당 Group.Captures 컬렉션에 배치됩니다. 닫는 문자가 일치되면 해당하는 여는 문자가 그룹에서 제거되고 Captures 컬렉션이 하나 감소합니다. 모든 중첩 구문의 여는 문자와 닫는 문자가 일치되고 나면 'name1'은 비어 있는 상태가 됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">균형 조정 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">기본 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">벨(경보) 문자 \u0007과 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">벨 문자</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">캐리지 리턴 문자 \u000D와 일치시킵니다. \r은 줄 바꿈 문자 \n과 같지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">캐리지 리턴 문자</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">문자 클래스 빼기를 사용하면 한 문자 클래스의 문자를 다른 문자 클래스에서 제외한 결과인 문자 집합을 얻게 됩니다. 'base_group'은 긍정 또는 부정 문자 그룹이거나 문자 범위입니다. 'excluded_group' 구성 요소는 다른 긍정 또는 부정 문자 그룹이거나 다른 문자 클래스 빼기 식입니다(즉, 문자 클래스 빼기 식을 중첩할 수 있음).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">문자 클래스 빼기</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">문자 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">주석</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">이 언어 요소는 초기 패턴과 일치시킬 수 있는지 여부에 따라 두 패턴 중 하나와 일치시키려고 시도합니다. 'expression'은 일치시킬 초기 패턴이며 'yes'는 식이 일치하는 경우 일치시킬 패턴이고 'no'는 식이 일치하지 않는 경우 일치시킬 선택적 패턴입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">조건식 일치</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">이 언어 요소는 지정한 캡처링 그룹과 일치시켰는지 여부에 따라 두 패턴 중 하나와 일치시키려고 시도합니다. 'name'은 캡처링 그룹의 이름(또는 번호)이며 'yes'는 'name'(또는 'number')에 일치 항목이 있는 경우 일치시킬 식이고 'no'는 일치 항목이 없는 경우 일치시킬 선택적 식입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">조건 그룹 일치</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">\G 앵커는 이전 일치 항목 찾기가 끝난 지점에서 일치 항목을 찾도록 지정합니다. 이 앵커를 Regex.Matches 또는 Match.NextMatch 메서드와 함께 사용하면 모든 일치 항목이 연속되도록 합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">연속 일치</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">ASCII 제어 문자와 일치시킵니다. 여기서, X는 제어 문자의 문자입니다. 예를 들어 \cC는 CTRL-C입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">제어 문자</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d는 10진수와 일치시킵니다. 표준 10진수 0-9와 여러 다른 문자 집합의 10진수를 포함한 \p{Nd} 정규식 패턴과 같습니다. ECMAScript 규격 동작을 지정한 경우 \d는 [0-9]와 같습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">10진수 문자</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">숫자 기호(#)는 정규식 패턴의 끝에 있는 이스케이프되지 않은 # 문자에서 시작하고 줄의 끝까지 계속되는 x-모드 주석을 표시합니다. 이 구문을 사용하려면 인라인 옵션을 통해 x 옵션을 사용해야 합니다. 또는 Regex 개체를 인스턴스화하거나 정적 Regex 메서드를 호출할 때 RegexOptions.IgnorePatternWhitespace 값을 옵션 매개 변수에 제공해야 합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">줄의 끝 주석</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">\z 앵커는 입력 문자열의 끝부분에서 일치 항목을 찾도록 지정합니다. $ 언어 요소와 마찬가지로, \z는 RegexOptions.Multiline 옵션을 무시합니다. 하지만 \Z 언어 요소와 달리 \z는 문자열의 끝에 있는 \n 문자와 일치시키지 않습니다. 따라서 입력 문자열의 마지막 줄만 일치시킬 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">문자열의 끝만</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">\Z 앵커는 입력 문자열의 끝부분이나 입력 문자열의 끝부분에 있는 \n 앞에서 일치 항목을 찾도록 지정합니다. \Z는 RegexOptions.Multiline 옵션을 무시한다는 점을 제외하고는 $ 앵커와 동일합니다. 따라서 여러 줄 문자열에서는 마지막 줄의 끝이나 \n 앞의 마지막 줄만 일치시킬 수 있습니다. \Z 앵커는 \n은 일치시키지만 \r\n(CR/LF 문자 조합)은 일치시키지 않습니다. CR/LF와 일치시키려면 정규식 패턴에 \r?\Z를 포함하세요.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">문자열의 끝 또는 줄 바꿈 종료 전</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">$ 앵커는 입력 문자열의 끝부분이나 입력 문자열의 끝부분에 있는 \n 앞에 이전 패턴이 오도록 지정합니다. RegexOptions.Multiline 옵션과 함께 $를 사용하면 줄의 끝부분에서도 일치 항목을 찾을 수 있습니다. $ 앵커는 \n은 일치시키지만 \r\n(캐리지 리턴 및 줄 바꿈 문자 조합 또는 CR/LF)은 일치시키지 않습니다. CR/LF 문자 조합과 일치시키려면 정규식 패턴에 \r?$를 포함하세요.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">문자열 또는 줄의 끝</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">이스케이프 문자 \u001B와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">이스케이프 문자</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">제외된 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">식</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">용지 공급 문자 \u000C와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">용지 공급 문자</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">이 그룹화 생성자는 하위 식 내에서 지정된 옵션을 적용하거나 사용하지 않도록 설정합니다. 사용하도록 설정하는 옵션은 물음표 뒤에 지정되며 사용하지 않도록 설정하는 옵션은 빼기 기호 뒤에 지정됩니다. 허용되는 옵션은 다음과 같습니다. i 대/소문자를 구분하지 않는 일치를 사용합니다. m 여러 줄 모드를 사용합니다. 여기서, ^ 및 $는 각 줄의 시작 및 끝과 일치시킵니다(입력 문자열의 시작 및 끝이 아님). s 한 줄 모드를 사용합니다. 여기서, 마침표(.)는 모든 문자(\n을 제외한 모든 문자가 아님)와 일치시킵니다. n 명명되지 않은 그룹을 캡처하지 않습니다. 양식(?&lt;이름&gt; 하위 식)의 명시적으로 명명된 그룹 또는 번호가 매겨진 그룹만 유효한 캡처입니다. x 이스케이프되지 않은 공백은 패턴에서 제외하고 주석은 숫자 기호(#) 다음에 사용합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">그룹 옵션</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">ASCII 문자와 일치시킵니다. 여기서, ##은 두 자리 16진수 문자 코드입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">16진수 이스케이프</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">(?# comment) 구문에서는 정규식에 인라인 주석을 포함할 수 있습니다. Regex.ToString 메서드에서 반환된 문자열에 주석이 포함되어 있어도 정규식 엔진은 패턴 일치에 주석의 어떤 부분도 사용하지 않습니다. 주석은 첫 번째 닫는 괄호에서 종료됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">인라인 주석</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">정규식의 나머지 부분에 대해 특정 패턴 일치 옵션을 사용하거나 사용하지 않도록 설정합니다. 사용하도록 설정하는 옵션은 물음표 뒤에 지정되며 사용하지 않도록 설정하는 옵션은 빼기 기호 뒤에 지정됩니다. 허용되는 옵션은 다음과 같습니다. i 대/소문자를 구분하지 않는 일치를 사용합니다. m 여러 줄 모드를 사용합니다. 여기서, ^ 및 $는 각 줄의 시작 및 끝과 일치시킵니다(입력 문자열의 시작 및 끝이 아님). s 한 줄 모드를 사용합니다. 여기서, 마침표(.)는 모든 문자(\n을 제외한 모든 문자가 아님)와 일치시킵니다. n 명명되지 않은 그룹을 캡처하지 않습니다. 양식(?&lt;이름&gt; 하위 식)의 명시적으로 명명된 그룹 또는 번호가 매겨진 그룹만 유효한 캡처입니다. x 이스케이프되지 않은 공백은 패턴에서 제외하고 주석은 숫자 기호(#) 다음에 사용합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">인라인 옵션</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Regex 문제: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">문자, 소문자</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">문자, 한정자</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">문자, 기타</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">문자, 첫 글자만 대문자</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">문자, 대문자</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">표시, 묶음</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">표시, 공간을 차지하지 않음</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">표시, 간격 결합</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">{n,}? 수량자는 n번 이상 이전 요소와 일치시키지만 가능한 한 적은 횟수로 일치시킵니다. 여기서, n은 정수입니다. 탐욕적 수량자 {n,}에 대응되는 게으른 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">'n'번 이상 일치(지연)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">{n,} 수량자는 n번 이상 이전 요소와 일치시킵니다. 여기서, n은 정수입니다. {n,}는 해당 게으른 수량자가 {n,}?인 탐욕적 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">'n'번 이상 일치</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">{n,m}? 수량자는 n 및 m번 사이로 이전 요소와 일치시키지만 가능한 한 적은 횟수로 일치시킵니다. 여기서, n 및 m은 정수입니다. 탐욕적 수량자 {n,m}에 대응되는 게으른 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">'n'번 이상 일치(지연)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">{n,m} 수량자는 n번 이상 m번 이하로 이전 요소와 일치시킵니다. 여기서, n 및 m은 정수입니다. {n,m}는 해당 게으른 수량자가 {n,m}?인 탐욕적 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">'m'에서 'n'번 사이 일치</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">{n}? 수량자는 정확히 n번을 이전 요소와 일치시킵니다. 여기서, n은 정수입니다. 탐욕적 수량자 {n}+에 대응되는 게으른 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">정확하게 'n'번 일치(지연)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">{n} 수량자는 정확히 n번을 이전 요소와 일치시킵니다. 여기서, n은 정수입니다. {n}는 해당 게으른 수량자가 {n}?인 탐욕적 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">정확하게 'n'번 일치</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">+? 수량자는 1번 이상 이전 요소와 일치시키지만 가능한 한 적은 횟수로 일치시킵니다. 탐욕적 수량자 +에 대응되는 게으른 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">1번 이상 일치(지연)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">+ 수량자는 1번 이상 이전 요소와 일치시킵니다. {1,} 수량자와 같습니다. +는 해당 게으른 수량자가 +?인 탐욕적 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">1번 이상 일치</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">*? 수량자는 0번 이상 이전 요소와 일치시키지만 가능한 한 적은 횟수로 일치시킵니다. 탐욕적 수량자 *에 대응되는 게으른 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">0번 이상 일치(지연)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">* 수량자는 0번 이상 이전 요소와 일치시킵니다. {0,} 수량자와 같습니다. *는 해당 게으른 수량자가 *?인 탐욕적 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">0번 이상 일치</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">?? 수량자는 0번 이상 이전 요소와 일치시키지만 가능한 한 적은 횟수로 일치시킵니다. 탐욕적 수량자 ?에 대응되는 게으른 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">0 또는 1번 일치(지연)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">? 수량자는 0번 이상 이전 요소와 일치시킵니다. {0,1} 수량자와 같습니다. ?는 해당 게으른 수량자가 ??인 탐욕적 수량자입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">0 또는 1번 일치</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">이 그룹화 생성자는 일치하는 'subexpression'을 캡처합니다. 여기서, 'subexpression'은 임의의 유효한 정규식 패턴입니다. 괄호를 사용하는 캡처는 정규식의 여는 괄호 순서를 기준으로 왼쪽에서 오른쪽으로 1부터 자동으로 번호가 매겨집니다. 0으로 번호가 매겨진 캡처는 전체 정규식 패턴과 일치하는 텍스트입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">일치하는 하위 식</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">이름</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">이름 또는 번호</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">명명되거나 번호가 매겨진 역참조입니다. 'name'은 정규식 패턴에 정의된 캡처링 그룹의 이름입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">명명된 역참조</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">일치하는 하위 식을 캡처하고 이름 또는 번호를 통해 해당 하위 식에 액세스할 수 있도록 허용합니다. 'name'은 유효한 그룹 이름이고 'subexpression'은 유효한 정규식 패턴입니다. 'name'은 문장 부호 문자를 사용하지 않아야 하며 숫자로 시작할 수 없습니다. 정규식 패턴 일치 메서드의 RegexOptions 매개 변수에 RegexOptions.ExplicitCapture 플래그가 포함되어 있거나 이 하위 식에 n 옵션이 적용되는 경우 하위 식을 캡처하는 유일한 방법은 명시적으로 캡처링 그룹 이름을 지정하는 것입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">명명된 일치하는 하위 식</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">부정 문자 그룹은 일치 항목을 찾을 입력 문자열에 표시되지 않아야 하는 문자 목록을 지정합니다. 문자 목록은 개별적으로 지정됩니다. 둘 이상의 문자 범위를 연결할 수 있습니다. 예를 들어 "0"에서 "9"까지의 10진수 범위, "a"에서 "f"까지의 소문자 범위 및 "A"에서 "F"까지의 대문자 범위를 지정하려면 [0-9a-fA-F]를 사용합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">부정 문자 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">부정 문자 범위는 일치 항목을 찾을 입력 문자열에 표시되지 않아야 하는 문자 목록을 지정합니다. 'firstCharacter'는 범위를 시작하는 문자이고 'lastCharacter'는 범위를 끝내는 문자입니다. 둘 이상의 문자 범위를 연결할 수 있습니다. 예를 들어 "0"에서 "9"까지의 10진수 범위, "a"에서 "f"까지의 소문자 범위 및 "A"에서 "F"까지의 대문자 범위를 지정하려면 [0-9a-fA-F]를 사용합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">부정 문자 범위</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">정규식 구문 \P{ name }는 유니코드 일반 범주 또는 명명된 블록에 속하지 않는 모든 문자와 일치시킵니다. 여기서, name은 범주 약어 또는 명명된 블록 이름입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">부정 유니코드 범주</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">줄 바꿈 문자 \u000A와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">줄 바꿈 문자</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">아니요</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D는 숫자가 아닌 문자와 일치시킵니다. \P{Nd} 정규식 패턴과 같습니다. ECMAScript 규격 동작을 지정한 경우 \D는 [^0-9]와 같습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">숫자가 아닌 문자</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S는 공백이 아닌 문자와 일치시킵니다. [^\f\n\r\t\v\x85\p{Z}] 정규식 패턴과 같거나, 공백 문자와 일치시키는 \s와 같은 정규식 패턴과 반대됩니다. ECMAScript 규격 동작을 지정한 경우 \S는 [^ \f\n\r\t\v]와 같습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">공백이 아닌 문자</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">\B 앵커는 단어 경계에서 일치 항목을 찾도록 지정합니다. \b 앵커와 반대입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">단어가 아닌 경계</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W는 단어가 아닌 문자와 일치시킵니다. 다음 유니코드 범주의 문자를 제외한 모든 문자와 일치시킵니다. Ll 문자, 소문자 Lu 문자, 대문자 Lt 문자, 첫 글자만 대문자 Lo 문자, 기타 Lm 문자, 한정자 Mn 표시, 공간을 차지하지 않는 문자 Nd 숫자, 10진수 Pc 문장 부호, 연결선 ECMAScript 규격 동작을 지정한 경우 \W는 [^a-zA-Z_0-9]와 같습니다.</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">단어가 아닌 문자</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">이 구문은 하위 식으로 일치되는 하위 문자열을 캡처하지 않습니다. 한정사가 그룹에 적용되는 경우 일반적으로 비캡처링 그룹 구문이 사용되지만 그룹에서 캡처된 하위 문자열과는 관련이 없습니다. 정규식에 중첩 그룹화 생성자가 포함되는 경우 외부 비캡처링 그룹 구문은 내부 중첩 그룹 구문에 적용되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">비캡처링 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">숫자, 10진수</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">숫자, 문자</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">숫자, 기타</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">번호가 매겨진 역참조입니다. 여기서 'number'는 정규식에 있는 캡처링 그룹의 서수 위치입니다. 예를 들어 \4는 네 번째 캡처링 그룹의 콘텐츠와 일치시킵니다. 8진수 이스케이프 코드(예: \16) 및 동일한 표기법을 사용하는 \number 역참조 사이에는 모호성이 있습니다. 모호성 문제가 발생하는 경우 명확하며 8진수 문자 코드와 혼동되지 않는 \k&lt;이름&gt; 표기법을 사용할 수 있습니다. 마찬가지로, \xdd와 같은 16진수 코드는 명확하며 역참조와 혼동되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">번호가 매겨진 역참조</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">기타, 제어</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">기타, 형식</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">기타, 할당되지 않음</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">기타, 프라이빗 사용</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">기타, 서로게이트</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">긍정 문자 그룹은 일치 항목을 찾을 입력 문자열에 표시될 수 있는 문자 목록을 지정합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">긍정 문자 그룹</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">긍정 문자 범위는 일치 항목을 찾을 입력 문자열에 표시될 수 있는 문자 범위를 지정합니다. 'firstCharacter'는 범위를 시작하는 문자이고 'lastCharacter'는 범위를 끝내는 문자입니다. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">긍정 문자 범위</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">문장 부호, 닫기</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">문장 부호, 연결선</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">문장 부호, 대시</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">문장 부호, 마지막 따옴표</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">문장 부호, 처음 따옴표</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">문장 부호, 열기</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">문장 부호, 기타</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">구분 기호, 줄</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">구분 기호, 단락</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">구분 기호, 공백</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">\A 앵커는 입력 문자열의 시작 부분에서 일치 항목을 찾도록 지정합니다. \A가 RegexOptions.Multiline 옵션을 무시한다는 점을 제외하고는 ^ 앵커와 동일합니다. 따라서 여러 줄 입력 문자열에서 첫 번째 줄의 시작 부분만 찾을 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">문자열의 시작만</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">^ 앵커는 다음 패턴이 문자열의 첫 번째 문자 위치에서 시작하도록 지정합니다. ^ 기호를 RegexOptions.Multiline 옵션과 함께 사용하는 경우 각 줄의 시작 부분에 일치 항목이 있어야 합니다.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">문자열 또는 줄의 시작</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">하위 식</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">기호, 통화</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">기호, 수학</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">기호, 한정자</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">기호, 기타</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">탭 문자 \u0009와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">탭 문자</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">정규식 구문 \p{ name }는 유니코드 일반 범주 또는 명명된 블록에 속하는 모든 문자와 일치시킵니다. 여기서, name은 범주 약어 또는 명명된 블록 이름입니다.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">유니코드 범주</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">값이 #### 16진수인 UTF-16 코드 단위와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">유니코드 이스케이프</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">유니코드 일반 범주: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">세로 탭 문자 \u000B와 일치시킵니다.</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">세로 탭 문자</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s는 공백 문자와 일치시킵니다. 다음 이스케이프 시퀀스 및 유니코드 범주와 같습니다. \f 용지 공급 문자, \u000C \n 줄 바꿈 문자, \u000A \r 캐리지 리턴 문자, \u000D \t 탭 문자, \u0009 \v 세로 탭 문자, \u000B \x85 줄임표 또는 NEXT LINE(NEL) 문자(…), \u0085 \p{Z} 구분 문자와 일치시킵니다. ECMAScript와 호환되는 동작을 지정한 경우 \s는 [ \f\n\r\t\v]와 같습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">공백 문자</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">\b 앵커는 단어 문자(\w 언어 요소)와 단어가 아닌 문자(\W 언어 요소) 사이의 경계에서 일치 항목을 찾도록 지정합니다. 단어 문자는 영숫자 문자 및 밑줄로 구성되고, 단어가 아닌 문자는 영숫자나 밑줄이 아닌 모든 문자입니다. 문자열의 시작 또는 끝부분 단어 경계에서 일치 항목을 찾을 수도 있습니다. \b 앵커는 하위 식이 단어의 시작 또는 끝부분이 아닌 전체 단어를 일치시키도록 하는 데 자주 사용됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">단어 경계</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w는 단어 문자와 일치시킵니다. 단어 문자는 다음 유니코드 범주의 멤버입니다. Ll 문자, 소문자 Lu 문자, 대문자 Lt 문자, 첫 글자만 대문자 Lo 문자, 기타 Lm 문자, 한정자 Mn 표시, 공간을 차지하지 않는 문자 Nd 숫자, 10진수 Pc 문장 부호, 연결선 ECMAScript 규격 동작을 지정한 경우 \w는 [a-zA-Z_0-9]와 같습니다.</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">단어 문자</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">예</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">너비가 0인 부정 lookahead 어설션입니다. 여기서, 일치 항목을 찾으려면 입력 문자열이 하위 식의 정규식 패턴과 일치하면 안 됩니다. 일치하는 문자열은 일치 결과에 포함되지 않습니다. 너비가 0인 부정 lookahead 어설션은 일반적으로 정규식의 시작 부분이나 끝부분에 사용됩니다. 정규식의 시작 부분에서는 일치시켜야 하는 유사하지만 보다 일반적인 패턴을 정의할 때 일치시키면 안 되는 특정 패턴을 정의할 수 있습니다. 이 경우 보통 역추적을 제한하는 데 사용됩니다. 정규식의 끝부분에서는 일치 항목의 끝부분에 있으면 안 되는 하위 식을 정의할 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">너비가 0인 부정 lookahead 어설션</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">너비가 0인 부정 lookbehind 어설션입니다. 여기서, 일치 항목을 찾으려면 입력 문자열에서 현재 위치 왼쪽에 'subexpression'이 없어야 합니다. 'subexpression'과 일치하지 않는 하위 문자열은 일치 결과에 포함되지 않습니다. 너비가 0인 부정 lookbehind 어설션은 일반적으로 정규식의 시작 부분에 사용됩니다. 어설션이 정의하는 패턴은 뒤에 오는 문자열에 일치 항목이 없도록 합니다. 캡처된 그룹에 있는 마지막 문자가 해당 그룹의 정규식 패턴과 일치하는 하나 이상의 문자가 아니어야 하는 경우 역추적을 제한하는 데도 사용됩니다.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">너비가 0인 부정 lookbehind 어설션</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">너비가 0인 긍정 lookahead 어설션입니다. 여기서, 일치 항목을 찾으려면 입력 문자열이 'subexpression'의 정규식 패턴과 일치해야 합니다. 일치된 하위 문자열은 일치 결과에 포함되지 않습니다. 너비가 0인 긍정 lookahead 어설션은 역추적하지 않습니다. 일반적으로 너비가 0인 긍정 lookahead 어설션은 정규식 패턴 끝에 있습니다. 이 어설션은 일치 항목을 찾을 문자열 끝에 있어야 하지만 일치에 포함되면 안 되는 하위 문자열을 정의합니다. 또한, 과도한 역추적을 방지하는 데에도 유용합니다. 너비가 0인 긍정 lookahead 어설션을 사용하면 캡처된 특정 그룹이 이 캡처된 그룹에 정의된 패턴의 하위 집합과 일치하는 텍스트로 시작하도록 할 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">너비가 0인 긍정 lookahead 어설션</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">너비가 0인 긍정 lookbehind 어설션입니다. 여기서, 일치 항목을 찾으려면 입력 문자열에서 현재 위치 왼쪽에 'subexpression'이 있어야 합니다. 'subexpression'은 일치 결과에 포함되지 않습니다. 너비가 0인 긍정 lookbehind 어설션은 역추적하지 않습니다. 너비가 0인 긍정 lookbehind 어설션은 일반적으로 정규식의 시작 부분에 사용됩니다. 어설션이 정의하는 패턴은 일치 항목의 사전 조건이지만 일치 결과에 포함되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">너비가 0인 긍정 lookbehind 어설션</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">메타데이터에서 찾은 관련 메서드 시그니처가 업데이트되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">지원되지 않는 문서 제거</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">'async' 한정자 제거</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">불필요한 캐스트 제거</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">사용하지 않는 변수 제거</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">'{0}'을(를) '{1}'(으)로 바꾸기</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">충돌 표식 확인</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">편집 다시 실행</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">접근성 한정자 정렬</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">연속 '{0}' 문으로 분할</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">중첩 '{0}' 문으로 분할</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">스트림은 읽기 및 찾기 작업을 지원해야 합니다.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">{0}을(를) 표시하지 않음</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: 비관리형 리소스(비관리형 개체)를 해제하고 종료자를 재정의합니다.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: 비관리형 리소스를 해제하는 코드가 '{0}'에 포함된 경우에만 종료자를 재정의합니다.</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">대상 유형 일치</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">'{1}' 형식을 포함하는 '{0}' 어셈블리가 지원되지 않는 .NET Framework를 참조합니다.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">선언이 없는 로컬 함수 호출이 선택 영역에 있습니다.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">(?()|)에 |가 너무 많습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">)가 너무 많습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">소스 파일 '{0}' 또는 포함하는 프로젝트에 대해 빌드된 PDB를 읽을 수 없습니다. 디버그하는 동안 이 파일의 변경된 모든 내용은 해당 콘텐츠가 빌드된 소스와 일치할 때까지 적용되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">알 수 없는 속성</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">알 수 없는 속성 '{0}'</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">인식할 수 없는 제어 문자입니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">인식할 수 없는 이스케이프 시퀀스 \{0}입니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">인식할 수 없는 그룹화 생성자입니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">종결되지 않은 [] 집합</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">종격되지 않은 (?#...) 주석</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">모든 인수 래핑 해제</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">모든 매개 변수 래핑 해제</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">모든 인수 래핑 해제 및 들여쓰기</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">모든 매개 변수 래핑 해제 및 들여쓰기</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">인수 목록 래핑 해제</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">호출 체인 래핑 해제</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">식 래핑 해제</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">매개 변수 목록 래핑 해제</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">람다 식에 블록 본문 사용</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">람다 식에 식 본문 사용</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">보간된 축자 문자열 사용</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">경고: 문을 변환할 때 의미 체계가 변경될 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">호출 체인 래핑 및 맞춤</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">식 래핑 및 맞추기</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">긴 호출 체인 래핑 및 맞춤</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">호출 체인 래핑</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">모든 인수 래핑</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">모든 매개 변수 래핑</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">식 래핑</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">긴 인수 목록 래핑</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">긴 호출 체인 래핑</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">긴 매개 변수 목록 래핑</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">래핑</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">탐색 모음을 사용하여 컨텍스트를 전환할 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}'은(는) Null이거나 비워 둘 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}'은(는) null이거나 공백일 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">'{0}'은(는) 여기에서 null이 아닙니다.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">'{0}'은(는) 여기에서 null일 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">10,000,000분의 1초</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffffff" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 7개를 나타냅니다. 즉, 날짜 및 시간 값에서 10,000,000분의 1초를 나타냅니다. 시간 값의 초 부분의 10,000,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">10,000,000분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFFF" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 7개를 나타냅니다. 즉, 날짜 및 시간 값에서 10,000,000분의 1초를 나타냅니다. 그러나 후행 0 또는 7개의 0은 표시되지 않습니다. 시간 값의 초 부분의 10,000,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1,000,000분의 1초</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffffff" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 6개를 나타냅니다. 즉, 날짜 및 시간 값에서 1,000,000분의 1초를 나타냅니다. 시간 값의 초 부분의 1,000,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1,000,000분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFF" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 6개를 나타냅니다. 즉, 날짜 및 시간 값에서 1,000,000분의 1초를 나타냅니다. 그러나 후행 0 또는 6개의 0은 표시되지 않습니다. 시간 값의 초 부분의 1,000,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">100,000분의 1초</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffff" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 5개를 나타냅니다. 즉, 날짜 및 시간 값에서 100,000분의 1초를 나타냅니다. 시간 값의 초 부분의 100,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">100,000분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFF" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 5개를 나타냅니다. 즉, 날짜 및 시간 값에서 100,000분의 1초를 나타냅니다. 그러나 후행 0 또는 5개의 0은 표시되지 않습니다. 시간 값의 초 부분의 100,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">10,000분의 1초</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffff" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 4개를 나타냅니다. 즉, 날짜 및 시간 값에서 10,000분의 1초를 나타냅니다. 시간 값의 초 부분의 10,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 버전 3.5(및 이후 버전) 및 Windows Vista 운영 체제의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">10,000분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFF" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 4개를 나타냅니다. 즉, 날짜 및 시간 값에서 10,000분의 1초를 나타냅니다. 그러나 후행 0 또는 4개의 0은 표시되지 않습니다. 시간 값의 초 부분의 10,000분의 1초를 표시하는 것이 가능하긴 하나, 이 값은 의미가 없을 수 있습니다. 날짜 및 시간 값의 정밀도는 시스템 시계의 해상도에 따라 달라집니다. Windows NT 3.5(및 이후 버전) 및 Windows Vista 운영 체제에서의 시계 해상도는 약 10~15밀리초입니다.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1,000분의 1초</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">"fff" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 3개를 나타냅니다. 즉, 날짜 및 시간 값에서 1,000분의 1초를 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1,000분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">"FFF" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 3개를 나타냅니다. 즉, 날짜 및 시간 값에서 1,000분의 1초를 나타냅니다. 그러나 후행 0 또는 3개의 0은 표시되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">100분의 1초</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">"ff" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 2개를 나타냅니다. 즉, 날짜 및 시간 값에서 100분의 1초를 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">100분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">"FF" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자 2개를 나타냅니다. 즉, 날짜 및 시간 값에서 100분의 1초를 나타냅니다. 그러나 후행 0 또는 2개의 0은 표시되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">10분의 1초</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">10분의 1초(0이 아님)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">"F" 사용자 지정 형식 지정자는 초 부분의 가장 유효한 숫자를 나타냅니다. 즉, 날짜 및 시간 값에서 10분의 1초를 나타냅니다. 이 숫자가 0이면 아무것도 표시되지 않습니다. 다른 형식 지정자 없이 "F" 형식 지정자를 사용하면 "F" 표준 날짜 및 시간 형식 지정자로 해석됩니다. ParseExact, TryParseExact, ParseExact 또는 TryParseExact 메서드에서 사용되는 "F" 형식 지정자의 개수는 초 부분에서 문자열을 성공적으로 구문 분석하기 위해 존재할 수 있는 가장 유효한 숫자의 최대 개수를 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12시간제(1~2자리)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"h" 사용자 지정 형식 지정자는 시간을 1부터 12까지의 숫자로 나타냅니다. 즉, 시간은 자정 또는 정오부터 경과한 정수 시간을 계산하는 12시간제로 표현됩니다. 자정 이후의 특정 시간은 정오 이후의 동일한 시간과 구분되지 않습니다. 시간은 반올림되지 않으며, 한 자릿수 시간은 앞에 0이 없는 형식으로 지정됩니다. 예를 들어, 오전 또는 오후 5:43이라는 시간이 지정되면 이 사용자 지정 형식 지정자는 "5"를 표시합니다. 다른 사용자 지정 형식 지정자 없이 "h" 형식 지정자를 사용하면 표준 날짜 및 시간 형식 지정자로 해석되어 FormatException을 throw합니다.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12시간제(2자리)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">"hh" 사용자 지정 형식 지정자(및 임의 개수의 추가 "h" 지정자)는 시간을 01부터 12까지의 숫자로 나타냅니다. 즉, 시간은 자정 또는 정오부터 경과한 정수 시간을 계산하는 12시간제로 표현됩니다. 자정 이후의 특정 시간은 정오 이후의 동일한 시간과 구분되지 않습니다. 시간은 반올림되지 않으며, 한 자릿수 시간은 앞에 0이 있는 형식으로 지정됩니다. 예를 들어, 오전 또는 오후 5:43이라는 시간이 지정되면 이 형식 지정자는 "05"를 표시합니다.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24시간제(1~2자리)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"H" 사용자 지정 형식 지정자는 시간을 0부터 23까지의 숫자로 나타냅니다. 즉, 시간은 자정부터 경과한 시간을 계산하는 0 기반 24시간제로 표현됩니다. 한 자릿수 시간은 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "H" 형식 지정자를 사용하면 표준 날짜 및 시간 형식 지정자로 해석되어 FormatException을 throw합니다.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24시간제(2자리)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">"HH" 사용자 지정 형식 지정자(및 임의 개수의 추가 "H" 지정자)는 시간을 00부터 23까지의 숫자로 나타냅니다. 즉, 시간은 자정부터 경과한 시간을 계산하는 0 기반 24시간제로 표현됩니다. 한 자릿수 시간은 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">코드</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">날짜 구분 기호</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"/" 사용자 지정 형식 지정자는 년, 월, 일을 구분하는 데 사용되는 날짜 구분 기호를 나타냅니다. 지역화된 적절한 날짜 구분 기호가 현재 문화권 또는 지정된 문화권의 DateTimeFormatInfo.DateSeparator 속성에서 검색됩니다. 참고: 특정 날짜 및 시간 문자열의 날짜 구분 기호를 변경하려면 리터럴 문자열 구분 기호 내에서 구분 기호 문자를 지정하세요. 예를 들어, 사용자 지정 형식 문자열 mm'/'dd'/'yyyy는 "/"가 항상 날짜 구분 기호로 사용되는 결과 문자열을 생성합니다. 문화권의 모든 날짜에 대해 날짜 구분 기호를 변경하려면 현재 문화권의 DateTimeFormatInfo.DateSeparator 속성 값을 변경하거나 DateTimeFormatInfo 개체를 인스턴스화한 후 해당 DateSeparator 속성에 문자를 할당하고 IFormatProvider 매개 변수를 포함하는 형식 지정 메서드의 오버로드를 호출하세요. 다른 사용자 지정 형식 지정자 없이 "/" 형식 지정자를 사용하면 표준 날짜 및 시간 형식 지정자로 해석되어 FormatException을 throw합니다.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">일(1~2자리)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">"d" 사용자 지정 형식 지정자는 일을 1부터 31까지의 숫자로 나타냅니다. 한 자릿수 일은 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "d" 형식 지정자를 사용하면 "d" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">일(2자리)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">"dd" 사용자 지정 형식 문자열은 일을 01부터 31까지의 숫자로 나타냅니다. 한 자릿수 일은 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">요일(약식)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">"ddd" 사용자 지정 형식 지정자는 요일의 약식 이름을 나타냅니다. 요일의 지역화된 약식 이름은 현재 문화권 지정된 문화권의 DateTimeFormatInfo.AbbreviatedDayNames 속성에서 검색됩니다.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">요일(전체)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">"dddd" 사용자 지정 형식 지정자(및 임의 개수의 추가 "d" 지정자)는 요일의 전체 이름을 나타냅니다. 요일의 지역화된 이름은 현재 문화권 또는 지정된 문화권의 DateTimeFormatInfo.DayNames 속성에서 검색됩니다.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">무시 항목</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">메타데이터에서</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">자세한 전체 날짜/시간</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">"F" 표준 형식 지정자는 현재 DateTimeFormatInfo.FullDateTimePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 사용자 지정 형식 문자열은 "dddd, dd MMMM yyyy HH:mm:ss"입니다.</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">간단한 전체 날짜/시간</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">전체 날짜 간단한 시간("f") 형식 지정자 "f" 표준 형식 지정자는 공백으로 구분된 자세한 날짜("D") 패턴과 간단한 시간("t") 패턴의 조합을 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">자세한 일반 날짜/시간</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">"G" 표준 형식 지정자는 공백으로 구분된 간단한 날짜("d") 패턴과 자세한 시간("T") 패턴의 조합을 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">간단한 일반 날짜/시간</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">"g" 표준 형식 지정자는 공백으로 구분된 간단한 날짜("d") 패턴과 간단한 시간("t") 패턴의 조합을 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">제네릭 오버로드</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">제네릭 오버로드</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">{0}({1} - {2})에서</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">소스(특성)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">자세한 날짜</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">"D" 표준 형식 지정자는 현재 DateTimeFormatInfo.LongDatePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 사용자 지정 형식 문자열은 "dddd, dd MMMM yyyy"입니다.</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">자세한 시간</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">"T" 표준 형식 지정자는 특정 문화권의 DateTimeFormatInfo.LongTimePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 사용자 지정 형식 문자열은 "HH:mm:ss"입니다.</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">분(1~2자리)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">"m" 사용자 지정 형식 지정자는 분을 0부터 59까지의 숫자로 나타냅니다. 분은 마지막 정각으로부터 경과한 정수 분을 나타냅니다. 한 자릿수 분은 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "m" 형식 지정자를 사용하면 "m" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">분(2자리)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">"mm" 사용자 지정 형식 지정자(및 임의 개수의 추가 "m" 지정자)는 분을 00부터 59까지의 숫자로 나타냅니다. 분은 마지막 정각으로부터 경과한 정수 분을 나타냅니다. 한 자릿수 분은 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">월(1~2자리)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">"M" 사용자 지정 형식 지정자는 월을 1부터 12까지의 숫자(13개월이 있는 달력에서는 1부터 13까지의 숫자)로 나타냅니다. 한 자릿수 월은 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "M" 형식 지정자를 사용하면 "M" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">월(2자리)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">"MM" 사용자 지정 형식 지정자는 월을 01부터 12까지의 숫자(13개월이 있는 달력에서는 1부터 13까지의 숫자)로 나타냅니다. 한 자릿수 월은 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">월(약식)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">"MMM" 사용자 지정 형식 지정자는 월의 약식 이름을 나타냅니다. 월의 지역화된 약식 이름은 현재 문화권 또는 지정된 문화권의 DateTimeFormatInfo.AbbreviatedMonthNames 속성에서 검색됩니다.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">월 일</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">"M" 또는 "m" 표준 형식 지정자는 현재 DateTimeFormatInfo.MonthDayPattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 사용자 지정 형식 문자열은 "MMMM dd"입니다.</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">월(전체)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">"MMMM" 사용자 지정 형식 지정자는 월의 전체 이름을 나타냅니다. 월의 지역화된 이름은 현재 문화권 또는 지정된 문화권의 DateTimeFormatInfo.MonthNames 속성에서 검색됩니다.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">오버로드</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">오버로드</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} 키워드</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">필드 캡슐화: '{0}'(그리고 속성을 사용함)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">필드 캡슐화: '{0}'(그러나 여전히 필드를 사용함)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">필드 캡슐화(그리고 속성을 사용함)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">필드 캡슐화(그러나 여전히 필드를 사용함)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">인터페이스를 추출할 수 없습니다. 선택 영역이 class/interface/struct 내부에 없습니다.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">인터페이스를 추출할 수 없습니다. 형식에 인터페이스로 추출할 수 있는 멤버가 포함되어 있지 않습니다.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">최종 트리를 생성할 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">매개 변수 형식 또는 반환 형식은 익명 형식 [{0}]일 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">선택 영역에 활성 문이 포함되어 있지 않습니다.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">이 섹션에는 오류 또는 알 수 없는 형식이 포함되어 있습니다.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">'{0}' 형식 매개 변수가 다른 '{1}' 형식 매개 변수에 의해 숨겨집니다.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">변수 주소는 선택한 코드 내부에서 사용됩니다.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">생성자 [{0}]에서 읽기 전용 필드에 대한 할당 작업을 수행해야 합니다.</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">생성된 코드가 숨겨진 코드 부분과 겹쳐져 있습니다.</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">'{0}'에 선택적 매개 변수 추가</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">'{0}'에 매개 변수 추가</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">위임하는 생성자 '{0}({1})' 생성</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">생성자 '{0}({1})' 생성</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">생성자 '{0}({1})'을(를) 할당하는 필드 생성</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Equals 및 GetHashCode 생성</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Equals(object) 생성</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">GetHashCode() 생성</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">'{0}'에서 생성자 생성</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">모두 생성</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">열거형 멤버 '{1}.{0}' 생성</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">{1}.{0}' 상수 생성</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">{1}.{0}' 읽기 전용 속성 생성</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">{1}.{0}' 속성 생성</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">{1}.{0}' 읽기 전용 필드 생성</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">{1}.{0}' 필드 생성</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">'{0}' 로컬을 생성합니다.</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">새 파일에서 {0} '{1}' 생성</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">중첩된 {0} '{1}' 생성</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">전역 네임스페이스</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">추상적으로 인터페이스 구현</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">'{0}'을(를) 통해 인터페이스 구현</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">인터페이스 구현</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">'{0}'에 대한 필드 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">'{0}'에 대한 로컬 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">'{0}'에 대한 상수 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">'{0}'에 대한 지역 상수 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">'{0}'의 모든 항목에 대한 필드 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">'{0}'의 모든 항목에 대한 로컬 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">'{0}'의 모든 항목에 대한 상수 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">'{0}'의 모든 항목에 대한 지역 상수 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">'{0}'의 모든 항목에 대한 쿼리 변수 지정</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">'{0}'에 대한 쿼리 변수 지정</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">익명 형식:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">은(는)</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">런타임에 확인될 작업이 포함된 개체를 나타냅니다.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">상수</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">필드</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">지역 상수</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">지역 변수</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">레이블</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">기간/시대</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">"g" 또는 "gg" 사용자 지정 형식 지정자(및 임의 개수의 추가 "g" 지정자)는 기간 또는 시대(예: A.D.)를 나타냅니다. 형식 지정 연산은 형식을 지정할 날짜에 연결된 기간 또는 시대 문자열이 없으면 이 지정자를 무시합니다. 다른 사용자 지정 형식 지정자 없이 "g" 형식 지정자를 사용하면 "g" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">범위 변수</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">매개 변수</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">In</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">요약:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">로컬 항목 및 매개 변수</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">형식 매개 변수:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">반환 값:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">예외:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">설명:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">이 형식의 기호에 대한 소스는 생성할 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">어셈블리</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">위치를 알 수 없음</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">예기치 않은 인터페이스 멤버 종류: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">알 수 없는 기호 종류</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">추상 속성 '{1}.{0}' 생성</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">추상 메서드 '{1}.{0}' 생성</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">{1}.{0}' 메서드 생성</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">요청한 어셈블리가 이미 '{0}'에서 로드되었습니다.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">기호에 아이콘이 없습니다.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">비동기 메서드에는 ref/out 매개 변수 [{0}]을(를) 포함할 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">멤버가 메타데이터에 정의되어 있습니다.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">생성자, 인덱서, 메서드 또는 대리자의 서명만 변경할 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">이 기호에는 메타데이터에 관련된 정의 또는 참조가 있습니다. 시그니처를 변경하면 빌드 오류가 발생할 수 있습니다. 계속하시겠습니까?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">시그니처 변경...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">새 형식 생성...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">사용자 진단 분석기 오류입니다.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">분석기 '{0}'에서 '{2}' 메시지와 함께 '{1}' 형식의 예외를 throw했습니다.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">'{0}' 분석기에서 다음 예외를 throw했습니다. '{1}'</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">이름 단순화</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">멤버 액세스 단순화</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">한정자 제거</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">알 수 없는 오류 발생</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">사용할 수 있는</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">사용할 수 없음 ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">소스</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">비표시 오류(Suppression) 파일</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">비표시 오류(Suppression) {0} 제거</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">비표시 오류(Suppression) 제거</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;보류 중&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">참고: '{0}' 코드 조각을 삽입하려면 두 번 탭하세요.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">인터페이스를 Dispose 패턴으로 명시적으로 구현</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">인터페이스를 Dispose 패턴으로 구현</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">{0}(현재 '{1}') 다시 심사</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">인수에는 null 요소가 있을 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">인수는 비워 둘 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">ID가 '{0}'인 보고된 진단이 분석기에서 지원되지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">모든 항목 코드 수정 사항을 계산하는 중...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">모든 발생 수정</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">문서</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">프로젝트</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">솔루션</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: 관리형 상태(관리형 개체)를 삭제합니다.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: 큰 필드를 null로 설정합니다.</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">컴파일러</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">라이브</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">enum 값</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">const 필드</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">메서드</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">운영자</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">생성자</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">Auto 속성</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">속성</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">이벤트 접근자</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">rfc1123 날짜/시간</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"R" 또는 "r" 표준 형식 지정자는 DateTimeFormatInfo.RFC1123Pattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 패턴은 정의된 표준을 반영하며, 속성은 읽기 전용입니다. 따라서 사용된 문화권이나 지정된 형식 공급자와 관계없이 항상 동일합니다. 사용자 지정 형식 문자열은 "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'"입니다. 이 표준 형식 지정자를 사용하면 형식 지정 또는 구문 분석 연산에서 항상 고정 문화권이 사용됩니다.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">왕복 날짜/시간</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">"O" 또는 "o" 표준 형식 지정자는 표준 시간대 정보를 보존하고 ISO 8601을 준수하는 결과 문자열을 출력하는 패턴을 사용하여 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. DateTime 값의 경우, 이 형식 지정자는 텍스트의 DateTime.Kind 속성과 함께 날짜 및 시간 값을 보존하도록 설계되어 있습니다. 형식이 지정된 문자열은 styles 매개 변수가 DateTimeStyles.RoundtripKind로 설정된 경우 DateTime.Parse(String, IFormatProvider, DateTimeStyles) 또는 DateTime.ParseExact 메서드를 사용하여 다시 구문 분석할 수 있습니다. "O" 또는 "o" 표준 형식 지정자는 DateTime 값의 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" 사용자 지정 형식 문자열 및 DateTimeOffset 값의 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" 사용자 지정 형식 문자열에 대응됩니다. 이 문자열에서 하이픈, 콜론 및 문자 "T"와 같은 개별 문자를 구분하는 작은따옴표 쌍은 해당 개별 문자가 변경될 수 없는 리터럴임을 나타냅니다. 출력 문자열에는 아포스트로피가 표시되지 않습니다. "O" 또는 "o" 표준 형식 지정자(및 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" 사용자 지정 형식 문자열)는 ISO 8601이 표준 시간대 정보를 나타내는 세 가지 방법을 사용하여 DateTime 값의 Kind 속성을 보존합니다. DateTimeKind.Local 날짜 및 시간 값의 표준 시간대 부분은 UTC에서 가져온 오프셋(예: +01:00, -07:00)입니다. 모든 DateTimeOffset 값도 이 형식으로 표현됩니다. DateTimeKind.Utc 날짜 및 시간 값의 표준 시간대 부분은 "Z"(제로 오프셋을 나타냄)를 사용하여 UTC를 표현합니다. DateTimeKind.Unspecified 날짜 및 시간 값에는 표준 시간대 정보가 없습니다. "O" 또는 "o" 표준 형식 지정자는 국제 표준을 준수하므로 이 지정자를 사용하는 형식 지정 또는 구문 분석 연산은 항상 고정 문화권과 양력을 사용합니다. DateTime 및 DateTimeOffset의 Parse, TryParse, ParseExact 및 TryParseExact 메서드로 전달되는 문자열은 "O" 또는 "o"형식 중 하나인 경우 "O" 또는 "o" 형식 지정자를 사용하여 구문 분석될 수 있습니다. DateTime 개체의 경우, 호출하는 구문 분석 오버로드는 값이 DateTimeStyles.RoundtripKind인 styles 매개 변수도 포함해야 합니다. "O" 또는 "o" 형식 지정자에 대응되는 사용자 지정 형식 문자열을 사용하여 구문 분석 메서드를 호출해도 "O" 또는 "o"와 동일한 결과를 얻을 수 없습니다. 사용자 지정 형식 문자열을 사용하는 구문 분석 메서드는 표준 시간대 부분이 없거나 "Z"를 사용하여 UTC를 나타내는 날짜 및 시간 값의 문자열 표현을 구문 분석할 수 없기 때문입니다.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">초(1~2자리)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">"s" 사용자 지정 형식 지정자는 초를 0부터 59까지의 숫자로 나타냅니다. 결과는 마지막 분으로부터 경과한 정수 초를 나타냅니다. 한 자릿수 초는 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "s" 형식 지정자를 사용하면 "s" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">초(2자리)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">"ss" 사용자 지정 형식 지정자(및 임의 개수의 추가 "s" 지정자)는 초를 00부터 59까지의 숫자로 나타냅니다. 결과는 마지막 분으로부터 경과한 정수 초를 나타냅니다. 한 자릿수 초는 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">간단한 날짜</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">"d" 표준 형식 지정자는 특정 문화권의 DateTimeFormatInfo.ShortDatePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 ShortDatePattern 속성이 반환하는 사용자 지정 형식 문자열은 "MM/dd/yyyy"입니다.</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">간단한 시간</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">"t" 표준 형식 지정자는 현재 DateTimeFormatInfo.ShortTimePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 사용자 지정 형식 문자열은 "HH:mm"입니다.</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">정렬 가능한 날짜/시간</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"s" 표준 형식 지정자는 DateTimeFormatInfo.SortableDateTimePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 패턴은 정의된 표준(ISO 8601)을 반영하며, 속성은 읽기 전용입니다. 따라서 사용된 문화권이나 지정된 형식 공급자와 관계없이 항상 동일합니다. 사용자 지정 형식 문자열은 "yyyy'-'MM'-'dd'T'HH':'mm':'ss"입니다. "s" 형식 지정자의 목표는 날짜 및 시간 값을 기준으로 일관성 있게 오름차순 또는 내림차순으로 정렬되는 결과 문자열을 생성하는 것입니다. 그 결과 "s" 표준 형식 지정자는 일관성 있는 형식으로 날짜 및 시간 값을 나타내긴 하지만 형식 지정 연산은 형식 지정 대상인 날짜 및 시간 개체가 그 DateTime.Kind 속성 또는 DateTimeOffset.Offset 값을 반영하도록 수정하지 않습니다. 예를 들어, 날짜 및 시간 값 2014-11-15T18:32:17+00:00과 2014-11-15T18:32:17+08:00의 형식을 지정하여 생성되는 결과 문자열은 동일합니다. 이 표준 형식 지정자를 사용하면 형식 지정 또는 구문 분석 연산에서 항상 고정 문화권이 사용됩니다.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">정적 생성자</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'기호'는 네임스페이스일 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">시간 구분 기호</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">":" 사용자 지정 형식 지정자는 시간, 분, 초를 구분하는 데 사용되는 시간 구분 기호를 나타냅니다. 지역화된 적절한 시간 구분 기호가 현재 문화권 또는 지정된 문화권의 DateTimeFormatInfo.TimeSeparator 속성에서 검색됩니다. 참고: 특정 날짜 및 시간 문자열의 시간 구분 기호를 변경하려면 리터럴 문자열 구분 기호 내에서 구분 기호 문자를 지정하세요. 예를 들어, 사용자 지정 형식 문자열 hh'_'dd'_'ss는 "_"(밑줄)이 항상 시간 구분 기호로 사용되는 결과 문자열을 생성합니다. 문화권의 모든 날짜에 대해 시간 구분 기호를 변경하려면 현재 문화권의 DateTimeFormatInfo.TimeSeparator 속성 값을 변경하거나 DateTimeFormatInfo 개체를 인스턴스화한 후 해당 TimeSeparator 속성에 문자를 할당하고 IFormatProvider 매개 변수를 포함하는 형식 지정 메서드의 오버로드를 호출하세요. 다른 사용자 지정 형식 지정자 없이 ":" 형식 지정자를 사용하면 표준 날짜 및 시간 형식 지정자로 해석되어 FormatException을 throw합니다.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">표준 시간대</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"K" 사용자 지정 형식 지정자는 날짜 및 시간 값의 표준 시간대 정보를 나타냅니다. 이 형식 지정자를 DateTime 값과 함께 사용하면 결과 문자열은 DateTime.Kind 속성의 값으로 정의됩니다. 현지 표준 시간대(DateTimeKind.Local의 DateTime.Kind 속성 값)의 경우, 이 지정자는 "zzz" 지정자와 동일하며 UTC(협정 세계시)에서 가져온 로컬 오프셋을 포함하는 결과 문자열을 생성합니다. 예를 들면 "-07:00"과 같습니다. UTC 시간(DateTimeKind.Utc의 DateTime.Kind 속성 값)의 경우, 결과 문자열은 UTC 날짜를 나타내는 "Z" 문자를 포함합니다. 지정되지 않은 표준 시간대의 시간(DateTime.Kind 속성 값이 DateTimeKind.Unspecified와 같은 시간)의 경우, 결과는 String.Empty와 동일합니다. DateTimeOffset 값의 경우, "K" 형식 지정자는 "zzz" 형식 지정자와 동일하며 UTC에서 가져온 DateTimeOffset 값의 오프셋을 포함하는 결과 문자열을 생성합니다. 다른 사용자 지정 형식 지정자 없이 "K" 형식 지정자를 사용하면 표준 날짜 및 시간 형식 지정자로 해석되어 FormatException을 throw합니다.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">형식 제약 조건</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">형식 매개 변수</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">특성</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">속성으로 '{0}' 및 '{1}' 바꾸기</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">속성으로 '{0}' 바꾸기</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">메서드가 암시적으로 참조됨</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">'{0}' 형식 생성</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">{0} '{1}' 생성</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">'{0}'을(를) '{1}'(으)로 변경합니다.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">호출되지 않은 메서드는 속성으로 대체될 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">출력 변수 선언이 아닌, 단일 인수를 사용하는 메서드만 속성으로 대체될 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">{0} 분석기 인스턴스는 {1}에서 만들 수 없습니다. {2}</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">{0} 어셈블리에는 분석기가 포함되어 있지 않습니다.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">{0} 분석기 어셈블리를 로드할 수 없습니다. {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">메서드를 동기 메서드로 설정</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">소스: {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">최신 버전 찾기 및 설치</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">로컬 버전 '{0}' 사용</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">로컬에 설치된 '{0}' 버전 '{1}' 사용 이 버전 사용 대상: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">'{0}'의 최신 버전 찾기 및 설치</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">패키지 관리자를 사용하여 설치...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">{0} {1}' 설치</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">'{0}' 버전 설치</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">'{0}' 변수 생성</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">클래스</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">상수</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">대리자</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">열거형</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">이벤트</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">확장 메서드</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">필드</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">인터페이스</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">로컬 항목</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">메서드</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">모듈</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">네임스페이스</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">속성</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">구조</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">매개 변수:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Variadic SignatureHelpItem에는 매개 변수가 하나 이상 있어야 합니다.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">'{0}'을(를) 메서드로 대체</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">'{0}'을(를) 메서드로 대체</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">속성이 암시적으로 참조됩니다.</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">속성을 메서드 호출로 안전하게 대체할 수 없습니다.</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">보간된 문자열로 변환</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">{0}(으)로 형식 이동</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">{0}(으)로 파일 이름 바꾸기</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">{0}(으)로 형식 이름 바꾸기</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">태그 제거</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">누락된 매개 변수 노드 추가</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">포함 범위를 비동기로 설정</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">포함 범위를 비동기로 설정(Task 반환)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(알 수 없음)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Framework 형식 사용</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">'{0}' 패키지 설치</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">프로젝트 {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">'{0}' 정규화</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">'{0}'에 대한 참조를 제거합니다.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">키워드</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">코드 조각</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">모두 소문자</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">모두 대문자</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">첫 글자 대문자로 표시</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">파스칼식 대/소문자</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">문서 '{0}' 제거</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">문서 '{0}' 추가</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">인수 이름 '{0}' 추가</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">'{0}' 사용</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">둘 다 사용</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">맨 아래 사용</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">맨 위 사용</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">사용하지 않는 변수 제거</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">이진으로 변환</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">10진수로 변환</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">16진수로 변환</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">천 단위 구분</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">단어 구분</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">니블 구분</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">구분 기호 제거</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">'{0}'에 매개 변수 추가</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">생성자 생성...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">생성자 매개 변수로 사용할 멤버 선택</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Equals/GetHashCode에 사용할 멤버 선택</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">재정의 생성...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">재정의할 멤버 선택</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">null 검사 추가</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">string.IsNullOrEmpty' 검사 추가</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">string.IsNullOrWhiteSpace' 검사 추가</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">'{0}' 필드 초기화</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">'{0}' 속성 초기화</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">null 검사 추가</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">연산자 생성</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">{0} 구현</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">보고된 진단 '{0}'의 소스 위치가 분석되는 컴파일의 일부가 아닌 '{1}' 파일에 있습니다.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">보고된 진단 '{0}'의 소스 위치 '{1}'이(가) 지정된 파일의 범위 밖인 파일 '{2}'에 있습니다.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">{0}(프로젝트 {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">접근성 한정자 추가</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">참조 근처로 선언 이동</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">전체 속성으로 변환</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">경고: 메서드가 메타데이터의 기호를 재정의합니다.</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">{0} 사용</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">인수 이름 '{0}' 추가(후행 인수 포함)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">로컬 함수</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">인덱서</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">별칭 모호한 형식 '{0}'</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">경고: 반복 중 컬렉션이 수정되었습니다.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">경고: 반복 변수가 함수 경계를 벗어났습니다.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">경고: 반복 계산 중 컬렉션이 수정될 수 있습니다.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">범용 전체 날짜/시간</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">"U" 표준 형식 지정자는 지정된 문화권의 DateTimeFormatInfo.FullDateTimePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 패턴은 "F" 패턴과 동일합니다. 그러나 DateTime 값은 형식이 지정되기 전에 자동으로 UTC로 변환됩니다.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">범용 정렬 가능한 날짜/시간</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">"u" 표준 형식 지정자는 DateTimeFormatInfo.UniversalSortableDateTimePattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 패턴은 정의된 표준을 반영하며, 속성은 읽기 전용입니다. 따라서 사용된 문화권이나 지정된 형식 공급자와 관계없이 항상 동일합니다. 사용자 지정 형식 문자열은 "yyyy'-'MM'-'dd HH':'mm':'ss'Z'"입니다. 이 표준 형식 지정자를 사용하면 형식 지정 또는 구문 분석 연산에서 항상 고정 문화권이 사용됩니다.. 결과 문자열은 시간을 UTC(협정 세계시)로 표현해야 하지만, 형식 지정 연산 중에 원래 DateTime 값의 변환이 수행되지 않습니다. 따라서 형식을 지정하기 전에 먼저 DateTime.ToUniversalTime 메서드를 호출하여 DateTime 값을 UTC로 변환해야 합니다.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">포함하는 멤버에서 사용을 업데이트하는 중</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">포함하는 프로젝트에서 사용을 업데이트하는 중</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">포함하는 형식에서 사용을 업데이트하는 중</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">종속 프로젝트에서 사용을 업데이트하는 중</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">UTC 시간 및 분 오프셋</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">DateTime 값의 경우, "zzz" 사용자 지정 형식 지정자는 UTC에서 가져온 로컬 운영 체제의 표준 시간대의 부호 있는 오프셋을 나타내며(단위: 시간과 분), 인스턴스의 DateTime.Kind 속성의 값을 반영하지 않습니다. 따라서 DateTime 값과 함께 "zzz" 형식 지정자를 사용하는 것은 권장되지 않습니다. DateTimeOffset 값의 경우, 이 형식 지정자는 UTC에서 가져온 DateTimeOffset 값의 오프셋을 나타냅니다(단위: 시간과 분). 오프셋은 항상 앞에 있는 부호와 함께 표시됩니다. 더하기 부호(+)는 UTC보다 앞선 시간을, 빼기 부호(-)는 UTC보다 늦은 시간을 나타냅니다. 한 자릿수 오프셋은 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">UTC 시간 오프셋(1~2자리)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">DateTime 값의 경우, "z" 사용자 지정 형식 지정자는 UTC(협정 세계시)에서 가져온 로컬 운영 체제의 표준 시간대의 부호 있는 오프셋을 나타내며(단위: 시간), 인스턴스의 DateTime.Kind 속성의 값을 반영하지 않습니다. 따라서 DateTime 값과 함께 "z" 형식 지정자를 사용하는 것은 권장되지 않습니다. DateTimeOffset 값의 경우, 이 형식 지정자는 UTC에서 가져온 DateTimeOffset 값의 오프셋을 나타냅니다(단위: 시간). 오프셋은 항상 앞에 있는 부호와 함께 표시됩니다. 더하기 부호(+)는 UTC보다 앞선 시간을, 빼기 부호(-)는 UTC보다 늦은 시간을 나타냅니다. 한 자릿수 오프셋은 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "z" 형식 지정자를 사용하면 표준 날짜 및 시간 형식으로 해석되어 FormatException을 throw합니다.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">UTC 시간 오프셋(2자리)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">DateTime 값의 경우, "zz" 사용자 지정 형식 지정자는 UTC에서 가져온 로컬 운영 체제의 표준 시간대의 부호 있는 오프셋을 나타내며(단위: 시간), 인스턴스의 DateTime.Kind 속성의 값을 반영하지 않습니다. 따라서 DateTime 값과 함께 "zz" 형식 지정자를 사용하는 것은 권장되지 않습니다. DateTimeOffset 값의 경우, 이 형식 지정자는 UTC에서 가져온 DateTimeOffset 값의 오프셋을 나타냅니다(단위: 시간). 오프셋은 항상 앞에 있는 부호와 함께 표시됩니다. 더하기 부호(+)는 UTC보다 앞선 시간을, 빼기 부호(-)는 UTC보다 늦은 시간을 나타냅니다. 한 자릿수 오프셋은 앞에 0이 있는 형식으로 지정됩니다.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">[x-y] 범위가 역순으로 되어 있습니다.</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">년(1~2자리)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">"y" 사용자 지정 형식 지정자는 연도를 한 자릿수 또는 두 자릿수 숫자로 나타냅니다. 연도에 세 자릿수 이상이 있는 경우 결과에는 최하위 숫자 2개만 표시됩니다. 두 자릿수 연도의 첫 번째 숫자가 0으로 시작하면(예: 2008) 숫자는 앞에 0이 없는 형식으로 지정됩니다. 다른 사용자 지정 형식 지정자 없이 "y" 형식 지정자를 사용하면 "y" 표준 날짜 및 시간 형식 지정자로 해석됩니다.</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">년(2자리)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">"yy" 사용자 지정 형식 지정자는 연도를 두 자릿수 숫자로 나타냅니다. 연도에 세 자릿수 이상이 있는 경우 결과에 최하위 숫자 2개만 표시됩니다. 두 자릿수 연도에 3개 미만의 유효숫자가 있는 경우 앞을 0으로 채워 두 자릿수를 생성합니다. 구문 분석 연산에서, "yy" 사용자 지정 형식 지정자를 사용하여 구문 분석되는 두 자릿수 연도는 형식 공급자의 현재 달력의 Calendar.TwoDigitYearMax 속성을 기준으로 해석됩니다. 다음 예제에서는 두 자릿수 연도를 갖는 날짜의 문자열 표현을 이 예제의 현재 문화권인 en-US 문화권의 기본 양력을 사용하여 구문 분석합니다. 그런 다음 TwoDigitYearMax 속성이 수정된 GregorianCalendar 개체를 사용하도록 현재 문화권의 CultureInfo 개체를 변경합니다.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">년(3~4자리)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">"yyy" 사용자 지정 형식 지정자는 세 자릿수 이상으로 연도를 나타냅니다. 연도에 4개 이상의 유효 숫자가 있는 경우 결과 문자열에 포함됩니다. 연도에 3개 미만의 유효 숫자가 있는 경우 앞을 0으로 채워 세 자릿수를 생성합니다.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">년(4자리)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">"yyyy" 사용자 지정 형식 지정자는 네 자릿수 이상으로 연도를 나타냅니다. 연도에 5개 이상의 유효 숫자가 있는 경우 결과 문자열에 포함됩니다. 연도에 4개 미만의 유효 숫자가 있는 경우 앞을 0으로 채워 네 자릿수를 생성합니다.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">년(5자리)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">"yyyyy" 사용자 지정 형식 지정자(및 임의 개수의 추가 "y" 지정자)는 다섯 자릿수 이상으로 연도를 나타냅니다. 연도에 6개 이상의 유효 숫자가 있는 경우 결과 문자열에 포함됩니다. 연도에 5개 미만의 유효 숫자가 있는 경우 앞을 0으로 채워 다섯 자릿수를 생성합니다. 추가 "y" 지정자가 있는 경우 "y" 지정자의 개수를 생성하는 데 필요한 만큼 숫자가 0으로 채워집니다.</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">년 월</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">"Y" 또는 "y" 표준 형식 지정자는 지정된 문화권의 DateTimeFormatInfo.YearMonthPattern 속성으로 정의되는 사용자 지정 날짜 및 시간 형식 문자열을 나타냅니다. 예를 들어, 고정 문화권의 사용자 지정 형식 문자열은 "yyyy MMMM"입니다.</target> <note /> </trans-unit> </body> </file> </xliff>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/xlf/FeaturesResources.pl.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="pl" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (skrót)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">Indywidualny specyfikator formatu „t” reprezentuje pierwszą literę oznaczenia AM/PM. Odpowiednie zlokalizowane oznaczenie jest pobierane z właściwości DateTimeFormatInfo.AMDesignator lub DateTimeFormatInfo.PMDesignator bieżącej lub określonej kultury. Oznaczenie AM jest używane dla wszystkich godzin od 0:00:00 (północ) do 11:59:59,999. Oznaczenie PM jest używane dla wszystkich godzin od 12:00:00 (południe) do 23:59:59,999. Jeśli specyfikator formatu „t” zostanie użyty bez innych indywidualnych specyfikatorów formatu, będzie interpretowany jako standardowy specyfikator daty i godziny „t”.</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (pełne oznaczenie)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">Indywidualny specyfikator formatu „tt” (wraz z dowolną liczbą dodatkowych specyfikatorów „t”) reprezentuje całe oznaczenie AM/PM. Odpowiednie zlokalizowane oznaczenie jest pobierane z właściwości DateTimeFormatInfo.AMDesignator lub DateTimeFormatInfo.PMDesignator bieżącej lub określonej kultury. Oznaczenie AM jest używane dla wszystkich godzin od 0:00:00 (północ) do 11:59:59,999. Oznaczenie PM jest używane dla wszystkich godzin od 12:00:00 (południe) do 23:59:59,999. Pamiętaj, aby nie używać specyfikatora „tt” dla wszystkich języków, w których konieczne jest zachowanie rozróżnienia między godzinami AM a PM. Przykładem jest tutaj język japoński, w którym różnice w oznaczeniach AM i PM występują w drugim znaku a nie pierwszym.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Odejmowanie musi być ostatnim elementem w klasie znaków</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Dodaj atrybut "DebuggerDisplay"</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Dodaj rzutowanie jawne</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Dodaj nazwę składowej</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Dodaj sprawdzenia wartości null dla wszystkich parametrów</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Dodaj opcjonalny parametr do konstruktora</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Dodaj parametr do elementu „{0}” (oraz przesłonięć/implementacji)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Dodaj parametr do konstruktora</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Dodaj odwołanie do projektu do elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Dodaj odwołanie do elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Akcje nie mogą być puste.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Dodaj nazwę elementu krotki „{0}”</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Wyrównaj zawinięte argumenty</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Wyrównaj zawinięte parametry</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Warunki alternatywne nie mogą być komentarzami</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Warunki alternatywne nie przechwytują i nie mogą być nazywane</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Zastosuj preferencje nagłówka pliku</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Zastosuj preferencje inicjowania obiektu/kolekcji</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">Zadanie, na które oczekiwano, zwraca wartość „{0}”</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">Zadanie, na które oczekiwano, nie zwraca wartości</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Klasy podstawowe zawierają niedostępne niezaimplementowane składowe</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Nie można zastosować zmian — nieoczekiwany błąd: „{0}”</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Nie można uwzględnić klasy \{0} w zakresie znaków</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Wartość przechwytywania numerów grup musi być mniejsza lub równa wartości Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Numer przechwytywania nie może być równy zeru</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;wnioskuj&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;pomiń&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Zmień na globalną przestrzeń nazw</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Zmiany nie są dozwolone, gdy wyjątek został zatrzymany</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Zmiany wprowadzone w projekcie „{0}” nie zostaną zastosowane, gdy aplikacja jest uruchomiona</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Konfiguruj styl kodu {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Konfiguruj ważność {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Konfiguruj ważność wszystkich analizatorów „{0}”</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Konfiguruj ważność wszystkich analizatorów</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Konwertuj na składnię LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Dodaj do elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Konwertuj na klasę</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Konwertuj na składnię LINQ (wywołaj formularz)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Konwertuj na rekord</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Konwertuj na strukturę rekordów</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Konwertuj na strukturę</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Konwertuj typ na „{0}”</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Utwórz i przypisz pole „{0}”</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Utwórz i przypisz właściwość „{0}”</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Utwórz i przypisz pozostałe jako pola</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Utwórz i przypisz pozostałe jako właściwości</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Nie zmieniaj tego kodu. Umieść kod czyszczący w metodzie „{0}”.</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Bieżąca zawartość pliku źródłowego „{0}” nie pasuje do skompilowanego źródła. Wszystkie zmiany wprowadzone w tym pliku podczas debugowania nie zostaną zastosowane do czasu, aż jego zawartość będzie zgodna ze skompilowanym źródłem.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Dokument musi się znajdować w obszarze roboczym użytym do utworzenia tej usługi</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Edytuj i kontynuuj</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Edycja i kontynuowanie niedozwolone przez moduł</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Zmiany wprowadzone w projekcie „{0}” uniemożliwią kontynuowanie sesji debugowania: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">Środowisko uruchomieniowe nie obsługuje funkcji edycji i kontynuowania.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Błąd podczas odczytywania pliku „{0}”: {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Błąd podczas tworzenia wystąpienia elementu CodeFixProvider</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Błąd podczas tworzenia wystąpienia elementu CodeFixProvider „{0}”</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Przykład:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Przykłady:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Jawnie zaimplementowane metody rekordów muszą mieć nazwy parametrów pasujące do wygenerowanego odpowiednika kompilatora "{0}"</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Wyodrębnij klasę bazową...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Wyodrębnij interfejs...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Wyodrębnij funkcję lokalną</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Wyodrębnij metodę</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Nie można przeanalizować przepływu danych dla: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Napraw formatowanie</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Popraw błąd pisowni „{0}”</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Formatuj dokument</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Trwa formatowanie dokumentu...</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Generuj operatory porównania</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Generuj konstruktor w elemencie „{0}” (z polami)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Generuj konstruktor w elemencie „{0}” (z właściwościami)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Wygeneruj dla elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Generuj parametr „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Generowanie parametru „{0}” (i przesłonięć/implementacji)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Niedozwolony znak \ na końcu wzorca</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">Niedozwolone wyrażenie {x,y} z wartością x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Jawnie zaimplementuj interfejs „{0}”</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Niejawnie zaimplementuj interfejs „{0}”</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Implementuj klasę abstrakcyjną</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Jawnie zaimplementuj wszystkie interfejsy</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Niejawnie zaimplementuj wszystkie interfejsy</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Jawnie zaimplementuj wszystkie składowe</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Zaimplementuj jawnie</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Zaimplementuj niejawnie</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Jawnie zaimplementuj pozostałe składowe</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Implementuj za pomocą elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Niekompletna sekwencja ucieczki znaku \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Dodaj wcięcie dla wszystkich argumentów</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Dodaj wcięcie dla wszystkich parametrów</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Dodaj wcięcie dla zawiniętych argumentów</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Dodaj wcięcie dla zawiniętych parametrów</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">Wstaw środwierszowo metodę „{0}”</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Wstaw środwierszowo i zachowaj metodę „{0}”</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Zbyt mało cyfr szesnastkowych</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Wprowadź stałą</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Wprowadź pole</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Wprowadź zmienną lokalną</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Wprowadź zmienną zapytania</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Nieprawidłowa nazwa grupy: nazwy grup muszą rozpoczynać się od znaku wyrazu</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Ustaw specyfikator „abstract” dla klasy</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Ustaw jako statyczne</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Odwróć warunkowe</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">źle sformułowane</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Źle sformułowana sekwencja ucieczki znaku \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Odwołanie wsteczne \k&lt;...&gt; ma nieprawidłową postać</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Scal z zagnieżdżoną instrukcją „{0}”</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Scal z następną instrukcją „{0}”</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Scal z zewnętrzną instrukcją „{0}”</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Scal z poprzednią instrukcją „{0}”</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} musi zwrócić strumień, który obsługuje operacje odczytu i wyszukiwania.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Brak znaku kontrolnego</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Przenieś zawartość do przestrzeni nazw...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Przenieś plik do lokalizacji „{0}”</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Przenieś plik do folderu głównego projektu</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Przenieś do przestrzeni nazw...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Zagnieżdżony kwantyfikator {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Brak prawidłowej lokalizacji dla wstawienia wywołania metody.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Zbyt mało znaków )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operatory</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">Nie można zaktualizować referencji właściwości</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Ściągnij element „{0}” w górę</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Ściągnij elementy „{0}” aż do elementu „{1}”</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Ściągnij składowe aż do typu bazowego...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Ściągnij skladowe do nowej klasy bazowej...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Nic nie występuje przed kwantyfikatorem {x,y}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">odwołanie do niezdefiniowanej grupy</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Odwołanie do niezdefiniowanej nazwy grupy {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Odwołanie do niezdefiniowanego numeru grupy {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Wszystkie znaki kontrolne. Obejmuje to kategorie Cc, Cf, Cs, Co i Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">wszystkie znaki kontrolne</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Wszystkie znaki diakrytyczne. Obejmuje to kategorie Mn, Mc i Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">wszystkie znaki diakrytyczne</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Wszystkie litery. Obejmuje to znaki Lu, Ll, Lt, Lm i Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">wszystkie litery</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Wszystkie cyfry. Obejmuje to kategorie Nd, Nl i No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">wszystkie cyfry</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Wszystkie znaki interpunkcyjne. Obejmuje to kategorie Pc, Pd, Ps, Pe, Pi, Pf i Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">wszystkie znaki interpunkcyjne</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Wszystkie znaki separatora. Obejmuje to kategorie Zs, Zl i Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">wszystkie znaki separatora</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Wszystkie symbole. Obejmuje to kategorie Sm, Sc, Sk i So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">wszystkie symbole</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Możesz użyć znaku pionowej kreski (|) w celu dopasowania dowolnego z serii wzorców, przy czym znak | oddziela poszczególne wzorce.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">alternatywa</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Znak kropki (.) pasuje do dowolnego znaku oprócz \n (znaku nowego wiersza — \u000A). Jeśli wzorzec wyrażenia regularnego zostanie zmodyfikowany za pomocą opcji RegexOptions.Singleline lub jeśli część wzorca zawierająca klasę znaków . zostanie zmodyfikowana za pomocą opcji „s”, znak . będzie pasować do dowolnego znaku.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">dowolny znak</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Grupy atomowe (określane w niektórych innych aparatach wyrażeń regularnych jako podwyrażenie bez cofania się, podwyrażenie niepodzielne lub podwyrażenie używane tylko raz) wyłączają cofanie się. Aparat wyrażeń regularnych dopasuje tyle znaków w ciągu wejściowym, ile to możliwe. Jeśli dalsze dopasowywanie nie będzie możliwe, nie nastąpi cofnięcie się w celu wypróbowania dopasowania alternatywnych wzorców. (Oznacza to, że podwyrażenie będzie dopasowywane tylko do ciągów, które zostałyby dopasowane przez samo podwyrażenie; nie jest podejmowana próba dopasowania ciągu na podstawie podwyrażenia i wszelkich podwyrażeń następujących po nim). Ta opcja jest zalecana, jeśli wiesz, że cofanie się nie powiedzie się. Zapobiega ona wykonywaniu niepotrzebnego przeszukiwania przez aparat wyrażeń regularnych, co poprawia wydajność.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">grupa atomowa</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Pasuje do znaku backspace — \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">znak backspace</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Definicja grupy dopasowywania usuwa definicję uprzednio zdefiniowanej grupy i zapisuje w bieżącej grupie interwał między poprzednio zdefiniowaną grupą a bieżącą grupą. „Nazwa1” to bieżąca grupa (opcjonalna), „nazwa2” to wcześniej zdefiniowana grupa, a element „podwyrażenie” to dowolny prawidłowy wzorzec wyrażenia regularnego. Definicja grupy dopasowywania usuwa definicję elementu nazwa2 i zapisuje interwał między elementami nazwa2 i nazwa1 w elemencie nazwa1. Jeśli nie zdefiniowano grupy nazwa2, następuje cofanie dopasowywania. Ponieważ usunięcie ostatniej definicji elementu nazwa2 ujawnia jego poprzednią definicję, ta konstrukcja umożliwia użycie stosu przechwyceń dla grupy nazwa2 jako licznika służącego do śledzenia zagnieżdżonych konstrukcji, takich jak nawiasy lub otwierające i zamykające nawiasy klamrowe. Definicja grupy dopasowywania używa elementu „nazwa2” jako stosu. Początkowy znak każdej zagnieżdżonej konstrukcji jest umieszczany w grupie i w jej kolekcji Group.Captures. Po dopasowaniu znaku zamykającego odpowiadający mu znak otwierający jest usuwany z grupy, a kolekcja Captures jest zmniejszana o jeden. Po dopasowaniu otwierających i zamykających znaków wszystkich zagnieżdżonych konstrukcji element „nazwa1” jest pusty.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">grupa zrównoważona</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">grupa podstawowa</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Pasuje do znaku dzwonka (alarmu) — \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">znak dzwonka</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Pasuje do znaku powrotu karetki — \u000D. Zauważ, że znak \r nie jest równoważny znakowi nowego wiersza — \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">znak powrotu karetki</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">Odejmowanie klas znaków daje zestaw znaków, który jest wynikiem wykluczenia znaków w jednej klasie znaków z innej klasy znaków. Element „grupa_podstawowa” to pozytywna lub negatywna grupa lub zakres znaków. Składnik „wykluczona_grupa” to inna pozytywna lub negatywna grupa znaków lub inne wyrażenie odejmowania klas znaków (co oznacza, że można zagnieżdżać wyrażenia odejmowania klas znaków).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">odejmowanie klas znaków</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">grupa znaków</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">komentarz</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Ten element języka próbuje dopasować jeden z dwóch wzorców w zależności od tego, czy może dopasować wzorzec początkowy. Element „wyrażenie” to wzorzec początkowy do dopasowania, element „tak” to wzorzec do dopasowania w przypadku dopasowania wyrażenia, a element „nie” to opcjonalny wzorzec do dopasowania, jeśli wyrażenie nie zostanie dopasowane.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">warunkowe dopasowanie wyrażenia</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Ten element języka próbuje dopasować jeden z dwóch wzorców w zależności od tego, czy pasuje do określonej grupy przechwytującej. Element „nazwa” to nazwa (lub numer) grupy przechwytującej, element „tak” to wyrażenie do dopasowania, jeśli element „nazwa” (lub „numer”) został dopasowany, a element „nie” to wyrażenie opcjonalne do dopasowania w przeciwnym przypadku.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">warunkowe dopasowanie grupy</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">Kotwica \G określa, że dopasowanie musi nastąpić w miejscu zakończenia poprzedniego dopasowania. Jeśli użyjesz tej kotwicy w połączeniu z metodą Regex.Matches lub Match.NextMatch, zapewni ona ciągłość wszystkich dopasowań.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">dopasowania ciągłe</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Pasuje do znaku kontrolnego ASCII, gdzie X jest literą znaku kontrolnego. Na przykład \cC oznacza CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">znak kontrolny</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">Element \d pasuje do dowolnej cyfry dziesiętnej. Jest to równoważnik wzorca wyrażenia regularnego \p{Nd}, który obejmuje standardowe cyfry dziesiętne 0-9 oraz cyfry dziesiętne pewnych innych zestawów znaków. Jeśli zostanie określone zachowanie zgodne ze standardem ECMAScript, element \d jest równoważny elementowi [0-9].</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">znak cyfry dziesiętnej</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Znak numeru (#) oznacza komentarz w trybie x, który zaczyna się od znaku # bez zmiany znaczenia na końcu wzorca wyrażenia regularnego i jest kontynuowany do końca wiersza. Aby użyć tej konstrukcji, należy włączyć opcję x (za pośrednictwem opcji w tekście) lub podać wartość RegexOptions.IgnorePatternWhitespace w parametrze opcji podczas tworzenia wystąpienia obiektu Regex lub wywoływania metody statycznej obiektu Regex.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">komentarz na końcu wiersza</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">Kotwica \z określa, że dopasowanie musi nastąpić na końcu ciągu wejściowego. Podobnie jak element języka $, element \z ignoruje opcję RegexOptions.Multiline. W przeciwieństwie do elementu języka \Z, element \z nie pasuje do znaku \n na końcu ciągu. Dlatego może pasować tylko do ostatniego wiersza ciągu wejściowego.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">tylko koniec ciągu</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">Kotwica \Z określa, że dopasowanie musi nastąpić na końcu ciągu wejściowego lub przed znakiem \n na końcu ciągu wejściowego. Jest ona identyczna z kotwicą $ z wyjątkiem tego, że element \Z ignoruje opcję RegexOptions.Multiline. Dlatego w przypadku ciągu wielowierszowego może zostać dopasowany tylko na końcu ostatniego wiersza lub w ostatnim wierszu przed znakiem \n. Kotwica \Z pasuje do znaku \n, ale nie do znaków \r\n (kombinacji znaków CR/LF). Aby dopasować znaki CR/LF, dołącz element \r?\Z do wzorca wyrażenia regularnego.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">koniec ciągu lub przed końcowym znakiem nowego wiersza</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">Kotwica $ określa, że poprzedzający wzorzec musi wystąpić na końcu ciągu wejściowego lub przed znakiem \n na końcu ciągu wejściowego. Jeśli użyjesz elementu $ z opcją RegexOptions.Multiline, dopasowanie może także nastąpić na końcu wiersza. Kotwica $ pasuje do znaku \n, lecz nie do znaków \r\n (kombinacji znaków powrotu karetki i nowego wiersza, czyli CR/LF). Aby dopasować kombinację znaków CR/LF, dołącz element \r?$ do wzorca wyrażenia regularnego.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">koniec ciągu lub wiersza</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Pasuje do znaku ucieczki — \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">znak ucieczki</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">grupa wykluczona</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">wyrażenie</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Pasuje do znaku wysuwu strony — \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">znak wysuwu strony</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Ta konstrukcja grupująca stosuje określone opcje dla podwyrażenia lub wyłącza je. Opcje do włączenia określa się po znaku zapytania, a opcje do wyłączenia po znaku minus. Dozwolone opcje: i Użyj dopasowywania bez uwzględniania wielkości liter. m Użyj trybu wielowierszowego, gdzie znaki ^ i $ pasują na początku i na końcu każdego wiersza (zamiast na początku i na końcu ciągu wejściowego). s Użyj trybu jednowierszowego, gdzie kropka (.) pasuje do każdego znaku (zamiast do każdego znaku z wyjątkiem znaku \n). n Nie przechwytuj grup nienazwanych. Przechwytywane są tylko jawnie nazwane lub numerowane grupy w postaci (?&lt;nazwa&gt; podwyrażenie). x Wyklucz z wzorca białe znaki bez zmiany znaczenia i włącz komentarze po znaku numeru (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">opcje grupy</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Pasuje do znaku ASCII, gdzie ## to kod znaku w postaci dwóch cyfr szesnastkowych.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">szesnastkowy znak kontrolny</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">Konstrukcja (?# komentarz) umożliwia dołączenie komentarza w tekście do wyrażenia regularnego. Aparat wyrażeń regularnych nie używa żadnej części komentarza podczas dopasowywania wzorca, mimo że komentarz jest dołączony do ciągu zwracanego przez metodę Regex.ToString. Komentarz kończy się pierwszym nawiasem zamykającym.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">komentarz wewnętrzny</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Włącza lub wyłącza określone opcje dopasowania wzorca dla pozostałej części wyrażenia regularnego. Opcje do włączenia określa się po znaku zapytania, a opcje do wyłączenia określa się po znaku minus. Dozwolone opcje: i Użyj dopasowywania bez uwzględniania wielkości liter. m Użyj trybu wielowierszowego, gdzie znaki ^ i $ pasują na początku i na końcu każdego wiersza (zamiast na początku i na końcu ciągu wejściowego). s Użyj trybu jednowierszowego, gdzie kropka (.) pasuje do każdego znaku (zamiast do każdego znaku z wyjątkiem znaku \n). n Nie przechwytuj grup nienazwanych. Przechwytywane są tylko jawnie nazwane lub numerowane grupy w postaci (?&lt;nazwa&gt; podwyrażenie). x Wyklucz z wzorca białe znaki bez zmiany znaczenia i włącz komentarze po znaku numeru (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">opcje wewnętrzne</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Problem z wyrażeniem regularnym: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">litera, mała</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">litera, modyfikator</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">litera, inna</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">litera, jak nazwy własne</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">litera, wielka</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">znacznik, otaczający</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">znacznik, nierozdzielający</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">znacznik, rozdzielający łączący</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">Kwantyfikator {n,}? dopasowuje poprzedzający element co najmniej n razy, gdzie n jest dowolną liczbą całkowitą, lecz najmniejszą możliwą liczbę razy. Jest to powściągliwy odpowiednik kwantyfikatora zachłannego {n,}.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">dopasuj co najmniej „n” razy (powściągliwie)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">Kwantyfikator {n,} dopasowuje poprzedzający element co najmniej n razy, gdzie n jest dowolną liczbą całkowitą. Jest to kwantyfikator zachłanny, a jego powściągliwy odpowiednik to {n,}?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">dopasuj co najmniej „n” razy</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">Kwantyfikator {n,m}? dopasowuje poprzedzający element od n do m razy, gdzie n i m to dowolne liczby całkowite, lecz najmniejszą możliwą liczbę razy. Jest to powściągliwy odpowiednik kwantyfikatora zachłannego {n,m}.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">dopasuj co najmniej „n” razy (powściągliwie)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">Kwantyfikator {n,m} dopasowuje poprzedzający element co najmniej n razy, lecz nie więcej niż m razy, gdzie n i m to liczby całkowite. {n,m} to kwantyfikator zachłanny, którego powściągliwy równoważnik to {n,m}?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">dopasuj od „m” do „n” razy</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">Kwantyfikator {n}? dopasowuje poprzedzający element dokładnie n razy, gdzie n jest dowolną liczbą całkowitą. Jest to powściągliwy odpowiednik kwantyfikatora zachłannego {n}+.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">dopasuj dokładnie „n” razy (powściągliwie)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">Kwantyfikator {n} dopasowuje poprzedzający element dokładnie n razy, gdzie n jest dowolną liczbą całkowitą. {n} to kwantyfikator zachłanny, a jego powściągliwy równoważnik to {n}?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">dopasuj dokładnie „n” razy</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">Kwantyfikator +? dopasowuje poprzedzający element co najmniej raz, lecz możliwie jak najmniej razy. Jest to powściągliwy odpowiednik kwantyfikatora zachłannego +.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">dopasuj co najmniej raz (powściągliwie)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">Kwantyfikator + dopasowuje poprzedzający element co najmniej raz. Jest to równoważnik kwantyfikatora {1,}. Kwantyfikator + jest zachłanny, a jego powściągliwy równoważnik to +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">dopasuj co najmniej raz</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">Kwantyfikator *? dopasowuje poprzedzający element zero lub więcej razy, lecz możliwie jak najmniej razy. Jest to powściągliwy odpowiednik kwantyfikatora zachłannego *.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">dopasuj zero lub więcej razy (powściągliwie)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">Kwantyfikator + dopasowuje poprzedzający element zero lub więcej razy. Jest to równoważnik kwantyfikatora {0,}. Kwantyfikator * jest zachłanny, a jego powściągliwy równoważnik to *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">dopasuj zero lub więcej razy</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">Kwantyfikator ?? dopasowuje poprzedzający element zero lub więcej razy, lecz możliwie jak najmniej razy. Jest to powściągliwy odpowiednik kwantyfikatora zachłannego ?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">dopasuj zero razy lub jeden raz (powściągliwie)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">Kwantyfikator ? dopasowuje poprzedzający element zero razy lub jeden raz. Jest to równoważnik kwantyfikatora {0,1}. Kwantyfikator ? jest zachłanny, a jego powściągliwy równoważnik to ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">dopasuj zero razy lub jeden raz</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Ta konstrukcja grupująca przechwytuje dopasowane „podwyrażenie”, gdzie „podwyrażenie” to dowolny prawidłowy wzorzec wyrażenia regularnego. Przechwycenia używające nawiasów są numerowane automatycznie od lewej do prawej na podstawie kolejności nawiasów otwierających w wyrażeniu regularnym, rozpoczynając od numeru jeden. Przechwycenie o numerze zero to tekst dopasowany przez cały wzorzec wyrażenia regularnego.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">dopasowane podwyrażenie</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">nazwa</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">nazwa1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">nazwa2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">nazwa lub numer</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Nazwane lub numerowane odwołanie wsteczne. „Nazwa” to nazwa grupy przechwytującej zdefiniowanej we wzorcu wyrażenia regularnego.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">nazwane odwołanie wsteczne</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Przechwytuje dopasowane podwyrażenie i umożliwia dostęp do niego za pomocą nazwy lub numeru. Element „nazwa” to prawidłowa nazwa grupy, a element „podwyrażenie” to dowolny prawidłowy wzorzec wyrażenia regularnego. Element „nazwa” nie może zawierać żadnych znaków interpunkcyjnych i nie może zaczynać się od cyfry. Jeśli parametr RegexOptions metody dopasowywania wzorca wyrażenia regularnego zawiera flagę RegexOptions.ExplicitCapture lub jeśli dla tego wyrażenia zastosowano opcję n, jedynym sposobem przechwycenia podwyrażenia jest jawne nazwanie grup przechwytujących.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">nazwane dopasowane podwyrażenie</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Negatywna grupa znaków określa listę znaków, które nie mogą pojawić się w ciągu wejściowym, jeśli ma nastąpić dopasowanie. Znaki na liście są określane pojedynczo. Można połączyć dwa lub więcej zakresów znaków. Na przykład aby określić zakres cyfr dziesiętnych od „0” do „9”, zakres małych liter od „a” do „f” i zakres wielkich liter od „A” do „F”, użyj elementu [0-9A-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">negatywna grupa znaków</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Negatywny zakres znaków określa listę znaków, które nie mogą pojawić się w ciągu wejściowym, jeśli ma nastąpić dopasowanie. Element „firstCharacter” to znak rozpoczynający zakres, a element „lastCharacter” to znak kończący zakres. Można połączyć dwa lub więcej zakresów znaków. Na przykład aby określić zakres cyfr dziesiętnych od „0” do „9”, zakres małych liter od „a” do „f” i zakres wielkich liter od „A” do „F”, użyj elementu [0-9A-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">negatywny zakres znaków</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Konstrukcja wyrażenia regularnego \P{ nazwa } pasuje do dowolnego znaku, który nie należy do kategorii ogólnej znaków Unicode ani do bloku nazwanego, gdzie „nazwa” to skrót kategorii lub nazwa bloku nazwanego.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">negatywna kategoria unicode</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Pasuje do znaku nowego wiersza — \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">znak nowego wiersza</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">nie</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">Element \D pasuje do dowolnego znaku innego niż cyfra. Jest to równoważnik wzorca wyrażenia regularnego \P{Nd}. Jeśli zostanie określone zachowanie zgodne ze standardem ECMAScript, element \D jest równoważnikiem elementu [^0-9].</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">znak inny niż cyfra</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">Element \S pasuje do dowolnego znaku innego niż biały znak. Jest to równoważnik wzorca wyrażenia regularnego [^\f\n\r\t\v\x85\p{Z}] lub odwrotność wzorca wyrażenia regularnego \s, który pasuje do białych znaków. Jeśli zostało określone zachowanie zgodne ze standardem ECMAScript, element \S jest równoważny elementowi [^ \f\n\r\t\v].</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">znak inny niż biały</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">Kotwica \B określa, że dopasowanie nie może nastąpić na granicy słowa. Jest to przeciwieństwo kotwicy \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">granica inna niż słowa</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">Element \W pasuje do dowolnego znaku niebędącego częścią słowa. Pasuje do dowolnego znaku z wyjątkiem znaków należących do następujących kategorii Unicode: Ll Litera, mała Lu Litera, wielka Lt Litera, jak nazwy własne Lo Litera, inna Lm Litera, modyfikator Mn Znacznik, nierozdzielający Nd Cyfra, cyfra dziesiętna Pc Interpunkcja, łącznik Jeśli określono zachowanie zgodne ze standardem ECMAScript, element \W jest równoważny elementowi [^a-zA-Z_0-9].</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">znak nienależący do słowa</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Ta konstrukcja nie przechwytuje podciągu dopasowanego przez podwyrażenie: Konstrukcja grupy nieprzechwytującej jest zazwyczaj używana, gdy kwantyfikator stosuje się do grupy, lecz podciągi przechwycone przez grupę mogą zostać zignorowane. Jeśli wyrażenie regularne zawiera zagnieżdżone konstrukcje grupujące, konstrukcja zewnętrznej grupy nieprzechwytującej nie stosuje się do wewnętrznych zagnieżdżonych konstrukcji grup.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">grupa nieprzechwytująca</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">cyfra, cyfra dziesiętna</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">cyfra, litera</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">cyfra, inna</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Numerowane odwołanie wsteczne, gdzie element „numer” to numer kolejny grupy przechwytującej w wyrażeniu regularnym. Na przykład element \4 pasuje do zawartości czwartej grupy przechwytującej. Istnieje niejednoznaczność między ósemkowymi kodami ucieczki (takimi jak \16) i odwołaniami wstecznymi \numer, które używają tej samej notacji. Jeśli niejednoznaczność jest problemem, możesz użyć notacji \k&lt;nazwa&gt;, która jest jednoznaczna i której nie można pomylić z ósemkowymi kodami znaków. Podobnie kody szesnastkowe, takie jak \xdd, są jednoznaczne i nie można ich pomylić z odwołaniami wstecznymi.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">numerowane odwołanie wsteczne</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">inne, kontrolne</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">inne, formatujące</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">inne, nieprzypisane</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">inne, użytek prywatny</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">inne, dwuskładnikowe</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Pozytywna grupa znaków określa listę znaków, z których dowolny może się pojawić się w ciągu wejściowym, aby nastąpiło dopasowanie.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">pozytywna grupa znaków</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Pozytywny zakres znaków określa zakres znaków, z których dowolny może się pojawić się w ciągu wejściowym, aby nastąpiło dopasowanie. Element „firstCharacter” to znak rozpoczynający zakres, a element „lastCharacter” to znak kończący zakres. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">pozytywny zakres znaków</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">interpunkcja, zamknięcie</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">interpunkcja, łącznik</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">interpunkcja, myślnik</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">interpunkcja, cudzysłów końcowy</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">interpunkcja, cudzysłów początkowy</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">interpunkcja, otwarcie</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">interpunkcja, inne</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">separator, wiersz</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">separator, akapit</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">separator, spacja</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">Kotwica \A określa, że dopasowanie musi nastąpić na początku ciągu wejściowego. Jest ona identyczna z kotwicą ^ z tym wyjątkiem, że kotwica \A ignoruje opcję RegexOptions.Multiline. Dlatego może pasować tylko na początku pierwszego wiersza wielowierszowego ciągu wejściowego.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">tylko początek ciągu</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">Kotwica ^ określa, że następujący wzorzec musi rozpoczynać się od położenia pierwszego znaku ciągu. Jeśli użyjesz kotwicy ^ z opcją RegexOptions.Multiline, dopasowanie musi nastąpić na początku każdego wiersza.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">początek ciągu lub wiersza</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">podwyrażenie</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">symbol, waluta</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">symbol, matematyka</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">symbol, modyfikator</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">symbol, inny</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Pasuje do znaku tabulacji — \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">znak tabulacji</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Konstrukcja wyrażenia regularnego \p{ nazwa } pasuje do dowolnego znaku należącego do ogólnej kategorii Unicode lub bloku nazwanego, gdzie „nazwa” to skrót kategorii lub nazwa bloku nazwanego.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">kategoria unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Pasuje do jednostki kodu UTF-16, której wartość szesnastkowa to ####.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">znak ucieczki unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Kategoria ogólna Unicode: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Pasuje do znaku tabulacji pionowej — \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">znak tabulacji pionowej</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">Element \s pasuje do dowolnego znaku innego niż biały. Jest to równoważne następującym sekwencjom ucieczki i kategoriom Unicode: \f Znak wysuwu strony — \u000C \n Znak nowego wiersza — \u000A \r Znak powrotu karetki — \u000D \t Znak tabulacji — \u0009 \v Znak tabulacji pionowej — \u000B \x85 Znak wielokropka lub następnego wiersza (NEL), (…) — \u0085 \p{Z} Pasuje do dowolnego znaku separatora Jeśli określono zachowanie zgodne ze standardem ECMAScript, element \s jest równoważny elementowi [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">biały znak</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">Kotwica \b określa, że dopasowanie musi nastąpić na granicy między znakiem słowa (elementem języka \w) a znakiem innym niż słowa (elementem języka \W). Znaki słowa obejmują znaki alfanumeryczne i podkreślenia; znaki inne niż słowa obejmują wszystkie pozostałe znaki. Dopasowanie może także nastąpić na granicy słowa na początku lub na końcu ciągu. Kotwica \b jest często używana w celu zapewnienia, że podwyrażenie pasuje do całego wyrazu, a nie tylko na początku lub końcu słowa.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">granica słowa</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">Element \w pasuje do dowolnego znaku słowa. Znak słowa należy do dowolnej z następujących kategorii Unicode: Ll Litera, mała Lu Litera, wielka Lt Litera, jak nazwy własne Lo Litera, inna Lm Litera, modyfikator Mn Znacznik, nierozdzielający Nd Cyfra, cyfra dziesiętna Pc Interpunkcja, łącznik Jeśli określono zachowanie zgodne ze standardem ECMAScript, element \w jest równoważny elementowi [a-zA-Z_0-9].</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">znak słowa</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">tak</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Negatywna asercja wyprzedzająca o zerowej szerokości, w przypadku której powodzenie dopasowania wymaga, aby ciąg wejściowy nie pasował do wzorca wyrażenia regularnego w podwyrażeniu. Dopasowany ciąg nie jest dołączany do wyniku dopasowania. Negatywna asercja wyprzedzająca o zerowej szerokości jest zwykle używana na początku lub na końcu wyrażenia regularnego. Na początku wyrażenia regularnego może definiować konkretny wzorzec, który nie powinien zostać dopasowany, jeśli początek wyrażenia regularnego definiuje podobny, ale bardziej ogólny wzorzec dopasowania. W takim przypadku jest często używana do ograniczenia cofania się. Na końcu wyrażenia regularnego może definiować podwyrażenie, które nie może wystąpić na końcu dopasowania.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">negatywna asercja wyprzedzająca o zerowej szerokości</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Negatywna asercja wsteczna o zerowej szerokości, w przypadku której powodzenie dopasowania wymaga, aby „podwyrażenie” nie występowało w ciągu wejściowym po lewej stronie bieżącej pozycji. Dowolny podciąg niepasujący do „podwyrażenia” nie jest dołączany do wyniku dopasowania. Negatywne asercje wsteczne o zerowej szerokości są zwykle używane na początku wyrażeń regularnych. Definiowany przez nie wzorzec wyklucza dopasowanie w następującym ciągu. Są one także używane do ograniczenia cofania się, jeśli ostatni znak lub znaki w przechwyconej grupie nie mogą być znakami pasującymi do wzorca wyrażenie regularnego tej grupy.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">negatywna asercja wsteczna o zerowej szerokości</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Pozytywna asercja wyprzedzająca o zerowej szerokości, w przypadku której powodzenie dopasowania wymaga, aby ciąg wejściowy pasował do wzorca wyrażenia regularnego w „podwyrażeniu”. Dopasowany podciąg nie jest dołączany do wyniku dopasowania. Pozytywna asercja wyprzedzająca o zerowej szerokości nie wykonuje cofania się. Zwykle pozytywna asercja wyprzedzająca o zerowej szerokości znajduje się na końcu wzorca wyrażenia regularnego. Definiuje ona podciąg, który musi znajdować się na końcu ciągu, aby nastąpiło dopasowanie, lecz który nie powinien zostać dołączony do dopasowania. Jest także przydatna do ograniczenia nadmiernego cofania się. Pozytywnej asercji wyprzedzającej o zerowej szerokości możesz użyć, aby zapewnić, że konkretna przechwycona grupa zaczyna się tekstem pasującym do podzbioru wzorca definiującego tę przechwyconą grupę.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">pozytywna asercja wyprzedzająca o zerowej szerokości</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Pozytywna asercja wsteczna o zerowej szerokości, w przypadku której powodzenie dopasowania wymaga, aby „podwyrażenie” występowało w ciągu wejściowym po lewej stronie bieżącej pozycji. „Podwyrażenie” nie jest dołączane do wyniku dopasowania. Pozytywna asercja wsteczna o zerowej szerokości nie wykonuje cofania. Pozytywne asercje wsteczne o zerowej szerokości są zwykle używane na początku wyrażeń regularnych. Definiowany przez nie wzorzec jest warunkiem wstępnym dopasowania, lecz sam nie jest częścią wyniku dopasowania.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">pozytywna asercja wsteczna o zerowej szerokości</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Sygnatury powiązanych metod znalezione w metadanych nie zostaną zaktualizowane.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Usunięcie dokumentu nie jest obsługiwane</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Usuń modyfikator „async”</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Usuń niepotrzebne rzutowania</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Usuń nieużywane zmienne</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Zamień element „{0}” na element „{1}”</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Rozwiąż znaczniki konfliktów</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Edycja reguły</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Sortuj modyfikatory dostępności</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Podziel na kolejne instrukcje „{0}”</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Podziel na zagnieżdżone instrukcje „{0}”</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Strumień musi obsługiwać operacje odczytu i wyszukiwania.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Pomiń element {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: Zwolnić niezarządzane zasoby (niezarządzane obiekty) i przesłonić finalizator</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: Przesłonić finalizator tylko w sytuacji, gdy powyższa metoda „{0}” zawiera kod służący do zwalniania niezarządzanych zasobów</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Dopasowania typu docelowego</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">Zestaw „{0}” zawierający typ „{1}” odwołuje się do platformy .NET Framework, co nie jest obsługiwane.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">Zaznaczenie zawiera wywołanie funkcji lokalnej bez jego deklaracji.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Zbyt wiele znaków | w wyrażeniu (?()|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Zbyt wiele znaków )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Nie można odczytać pliku źródłowego „{0}” lub pliku PDB skompilowanego dla projektu, w którym jest on zawarty. Wszystkie zmiany wprowadzone w tym pliku podczas debugowania nie zostaną zastosowane do czasu, aż jego zawartość będzie zgodna ze skompilowanym źródłem.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Nieznana właściwość</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Nieznana właściwość „{0}”</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Nierozpoznany znak kontrolny</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Nierozpoznana sekwencja ucieczki \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Nierozpoznana konstrukcja grupująca</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Niezakończony zestaw []</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Niezakończony komentarz (?#...)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Odwijaj wszystkie argumenty</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Odwijaj wszystkie parametry</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Odwijaj wszystkie argumenty i dodawaj dla nich wcięcie</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Odwijaj wszystkie parametry i dodawaj dla nich wcięcie</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Odwijaj listę argumentów</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Odwijaj łańcuch wywołań</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Odwijaj wyrażenie</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Odwijaj listę parametrów</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Użyj treści bloku dla wyrażeń lambda</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Użyj treści wyrażenia dla wyrażeń lambda</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Użyj interpolowanego ciągu dosłownego wyrażenia</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Wartość:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Ostrzeżenie: semantyka może ulec zmianie podczas konwertowania instrukcji.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Zawijaj i wyrównuj łańcuch wywołań</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Zawijaj i wyrównuj wyrażenie</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Zawijaj i wyrównuj długi łańcuch wywołań</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Zawijaj łańcuch wywołań</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Zawijaj każdy argument</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Zawijaj każdy parametr</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Zawijaj wyrażenie</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Zawijaj długą listę argumentów</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Zawijaj długi łańcuch wywołań</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Zawijaj długą listę parametrów</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Zawijanie</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Za pomocą paska nawigacyjnego można przełączać konteksty.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">Element „{0}” nie może mieć wartości null ani być pusty.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">Element „{0}” nie może mieć wartości null ani składać się ze znaków odstępu.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">Element „{0}” nie ma wartości null w tym miejscu.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">Element „{0}” może mieć wartość null w tym miejscu.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">1/10 000 000 sekundy</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „fffffff” reprezentuje siedem najbardziej znaczących cyfr ułamka sekundy; tzn. reprezentuje dziesięciomilionową część sekundy w wartości daty i godziny. Co prawda możliwe jest wyświetlenie składnika dziesięciomilionowej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">1/10 000 000 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „FFFFFFF” reprezentuje siedem najbardziej znaczących cyfr ułamka sekundy; tzn. reprezentuje dziesięciomilionową część sekundy w wartości daty i godziny. Zera końcowe ani liczby z siedmioma zerami nie są jednak wyświetlane. Co prawda możliwe jest wyświetlenie składnika dziesięciomilionowej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1/1 000 000 sekundy</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „ffffff” reprezentuje sześć najbardziej znaczących cyfr ułamka sekundy; tzn. reprezentuje milionową część sekundy w wartości daty i godziny. Co prawda możliwe jest wyświetlenie składnika milionowej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1/1 000 000 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „FFFFFF” reprezentuje sześć najbardziej znaczących cyfr ułamka sekundy; tzn. reprezentuje milionową część sekundy w wartości daty i godziny. Zera końcowe ani liczby z sześcioma zerami nie są jednak wyświetlane. Co prawda możliwe jest wyświetlenie składnika milionowej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">1/100 000 sekundy</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „fffff” reprezentuje pięć najbardziej znaczących cyfr ułamka sekundy; tzn. reprezentuje stutysięczną część sekundy w wartości daty i godziny. Co prawda możliwe jest wyświetlenie składnika stutysięcznej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">1/100 000 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „FFFFF” reprezentuje pięć najbardziej znaczących cyfr ułamka sekundy; tzn. reprezentuje stutysięczną część sekundy w wartości daty i godziny. Zera końcowe ani liczby z pięcioma zerami nie są jednak wyświetlane. Co prawda możliwe jest wyświetlenie składnika stutysięcznej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">1/10 000 sekundy</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „ffff” reprezentuje cztery najbardziej znaczące cyfry ułamka sekundy; tzn. reprezentuje dziesięciotysięczną część sekundy w wartości daty i godziny. Co prawda możliwe jest wyświetlenie składnika dziesięciotysięcznej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">1/10 000 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „FFFF” reprezentuje cztery najbardziej znaczące cyfry ułamka sekundy; tzn. reprezentuje dziesięciotysięczną część sekundy w wartości daty i godziny. Zera końcowe ani liczby z czterema zerami nie są jednak wyświetlane. Co prawda możliwe jest wyświetlenie składnika dziesięciotysięcznej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1/1000 sekundy</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">Indywidualny specyfikator formatu „fff” reprezentuje trzy najbardziej znaczące cyfry ułamka sekundy; tzn. reprezentuje milisekundy w wartości daty i godziny.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1/1000 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">Indywidualny specyfikator formatu „FFF” reprezentuje trzy najbardziej znaczące cyfry ułamka sekundy; tzn. reprezentuje milisekundy w wartości daty i godziny. Zera końcowe ani liczby z trzema zerami nie są jednak wyświetlane.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">1/100 sekundy</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">Indywidualny specyfikator formatu „ff” reprezentuje dwie najbardziej znaczące cyfry ułamka sekundy; tzn. reprezentuje setną część sekundy w wartości daty i godziny.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">1/100 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">Indywidualny specyfikator formatu „FF” reprezentuje dwie najbardziej znaczące cyfry ułamka sekundy; tzn. reprezentuje setną część sekundy w wartości daty i godziny. Zera końcowe ani liczby z dwoma zerami nie są jednak wyświetlane.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">1/10 sekundy</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">1/10 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">Indywidualny specyfikator formatu „F” reprezentuje najbardziej znaczącą cyfrę ułamka sekundy; tzn. reprezentuje dziesiątą część sekundy w wartości daty i godziny. Jeśli tą cyfrą jest zero, nic nie jest wyświetlane. Jeśli specyfikator formatu „F” zostanie użyty bez innych indywidualnych specyfikatorów formatu, będzie interpretowany jako standardowy specyfikator daty i godziny „F”. Liczba specyfikatorów formatu „f” używanych z metodą ParseExact, TryParseExact, ParseExact lub TryParseExact wskazuje maksymalną liczbę najważniejszych cyfr ułamka sekund, jaka może być reprezentowana, aby pomyślnie przeanalizować ciąg.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">Zegar 12-godzinny (1–2 cyfr)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Indywidualny specyfikator formatu „h” reprezentuje godzinę jako liczbę z zakresu od 1 do 12; tzn. godzina jest reprezentowana przez 12-godzinny zegar liczący pełne godziny od północy lub południa. Określona godzina po północy jest nie do odróżnienia od tej samej godziny po południu. Godzina nie jest zaokrąglana, a godzina 1-cyfrowa jest wyświetlana w formacie bez wiodącego zera. Na przykład w przypadku godziny 5:43 rano lub po południu ten indywidualny specyfikator formatu wyświetla wartość „5”. Jeśli specyfikator formatu „h” zostanie użyty bez innych indywidualnych specyfikatorów formatu, będzie interpretowany jako standardowy specyfikator daty i godziny i zwróci wyjątek FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">Zegar 12-godzinny (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">Indywidualny specyfikator formatu „hh” (wraz z dowolną liczbą dodatkowych specyfikatorów „h”) reprezentuje godzinę jako liczbę z zakresu od 01 do 12; tzn. godzina jest reprezentowana przez 12-godzinny zegar liczący pełne godziny od północy lub południa. Określona godzina po północy jest nie do odróżnienia od tej samej godziny po południu. Godzina nie jest zaokrąglana, a godzina 1-cyfrowa jest wyświetlana w formacie z wiodącym zerem. Na przykład w przypadku godziny 5:43 rano lub po południu ten specyfikator formatu wyświetla wartość „05”.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">Zegar 24-godzinny (1–2 cyfr)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Indywidualny specyfikator formatu „H” reprezentuje godzinę jako liczbę z zakresu od 0 do 23; tzn. godzina jest reprezentowana przez 24-godzinny zegar zaczynający się od zera i liczący godziny od północy lub południa. Godzina 1-cyfrowa jest wyświetlana w formacie bez wiodącego zera. Jeśli specyfikator formatu „H” zostanie użyty bez innych indywidualnych specyfikatorów formatu, będzie interpretowany jako standardowy specyfikator daty i godziny i zwróci wyjątek FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">Zegar 24-godzinny (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">Indywidualny specyfikator formatu „HH” (wraz z dowolną liczbą dodatkowych specyfikatorów „H”) reprezentuje godzinę jako liczbę z zakresu od 00 do 23; tzn. godzina jest reprezentowana przez 24-godzinny zegar zaczynający się od zera i liczący godziny od północy. Godzina 1-cyfrowa jest wyświetlana w formacie z wiodącym zerem.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">kod</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">separator daty</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Indywidualny specyfikator formatu „/” reprezentuje separator daty, który służy do rozdzielania lat, miesięcy i dni. Odpowiedni zlokalizowany separator jest pobierany z właściwości DateTimeFormatInfo.DateSeparator bieżącej lub określonej kultury. Uwaga: Aby zmienić separator daty dla określonego ciągu daty i godziny, określ znak separatora w ograniczniku ciągu literału. Na przykład ciąg formatu niestandardowego mm'/'dd'/'yyyy daje ciąg wyniku, w którym znak „/” jest zawsze używany jako separator daty. Aby zmienić separator daty dla wszystkich dat w kulturze, zmień wartość właściwości DateTimeFormatInfo.DateSeparator bieżącej kultury lub utwórz wystąpienie obiektu DateTimeFormatInfo, przypisz dany znak do jego właściwości DateSeparator i wywołaj przeciążenie metody formatowania, która zawiera parametr IFormatProvider. Jeśli specyfikator formatu „/” zostanie użyty bez innych indywidualnych specyfikatorów formatu, będzie interpretowany jako standardowy specyfikator daty i godziny i zwróci wyjątek FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">dzień miesiąca (1–2 cyfr)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">Indywidualny specyfikator formatu „d” reprezentuje dzień miesiąca jako liczbę z zakresu od 1 do 31. Dzień 1-cyfrowy jest wyświetlany w formacie bez wiodącego zera. Jeśli specyfikator formatu „d” zostanie użyty bez innych indywidualnych specyfikatorów formatu, będzie interpretowany jako standardowy specyfikator daty i godziny „d”.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">dzień miesiąca (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">Ciąg formatu niestandardowego „dd” reprezentuje dzień miesiąca jako liczbę z zakresu od 01 do 31. Dzień 1-cyfrowy jest wyświetlany w formacie z wiodącym zerem.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">dzień tygodnia (skrót)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">Indywidualny specyfikator formatu „ddd” reprezentuje skróconą nazwę dnia tygodnia. Zlokalizowana skrócona nazwa dnia tygodnia jest pobierana z właściwości DateTimeFormatInfo.AbbreviatedDayNames bieżącej lub określonej kultury.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">dzień tygodnia (pełna nazwa)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">Indywidualny specyfikator formatu „dddd” (wraz z dowolną liczbą dodatkowych specyfikatorów „d”) reprezentuje pełną nazwę dnia tygodnia. Zlokalizowana nazwa dnia tygodnia jest pobierana z właściwości DateTimeFormatInfo.DayNames bieżącej lub określonej kultury.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">odrzuć</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">z metadanych</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">pełna długa data/godzina</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">Standardowy specyfikator formatu „F” reprezentuje niestandardowy ciąg formatu daty i godziny definiowany przez bieżącą właściwość DateTimeFormatInfo.FullDateTimePattern. Na przykład niestandardowy ciąg formatu dla kultury niezmiennej to „dddd, dd MMMM yyyy HH:mm:ss”.</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">pełna krótka data/godzina</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Specyfikator formatu pełnej daty i krótkiej godziny („f”) Standardowy specyfikator formatu „f” reprezentuje połączenie wzorców długiej daty(„D”) i krótkiej godziny („t”) rozdzielonych spacją.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">ogólna data/godzina długa</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">Standardowy specyfikator formatu „G” reprezentuje kombinację wzorców daty krótkiej („d”) i godziny długiej („T”) rozdzielonych spacją.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">ogólna data/godzina krótka</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">Standardowy specyfikator formatu „g” reprezentuje kombinację wzorców daty krótkiej („d”) i godziny krótkiej („t”) rozdzielonych spacją.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">przeciążenie ogólne</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">przeciążenia ogólne</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">w {0} ({1} — {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">w źródle (atrybut)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">data długa</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">Standardowy specyfikator formatu „D” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez bieżącą właściwość DateTimeFormatInfo.LongDatePattern. Na przykład niestandardowy ciąg formatu dla kultury niezmiennej to „dddd, dd MMMM yyyy”.</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">godzina długa</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">Standardowy specyfikator formatu „T” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez właściwość DateTimeFormatInfo.LongTimePattern konkretnej kultury. Na przykład niestandardowy ciąg formatu dla kultury niezmiennej to „HH:mm:ss”.</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} „{1}”</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">minuta (1-2 cyfry)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">Niestandardowy specyfikator formatu „m” reprezentuje minutę jako liczbę z zakresu od 0 do 59. Wartość minuty reprezentuje całe minuty, które upłynęły od ostatniej godziny. Jednocyfrowa wartość minuty jest formatowana bez zera wiodącego. Jeśli specyfikator formatu „m” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny „m”.</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">minuta (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">Niestandardowy specyfikator formatu „mm” (oraz dowolna liczba dodatkowych specyfikatorów „m”) reprezentuje minutę jako liczbę z zakresu od 00 do 59. Wartość minuty reprezentuje całe minuty, które upłynęły od ostatniej godziny. Jednocyfrowa wartość minuty jest formatowana za pomocą zera wiodącego.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">miesiąc (1-2 cyfry)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">Niestandardowy specyfikator formatu „M” reprezentuje miesiąc jako liczbę z zakresu od 1 do 12 (lub od 1 do 13 dla kalendarzy z 13 miesiącami). Jednocyfrowa wartość miesiąca jest formatowana bez zera wiodącego. Jeśli specyfikator formatu „M” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny „M”.</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">miesiąc (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">Niestandardowy specyfikator formatu „MM” reprezentuje miesiąc jako liczbę z zakresu od 01 do 12 (lub od 01 do 13 dla kalendarzy z 13 miesiącami). Miesiąc jednocyfrowy jest formatowany przy użyciu zera wiodącego.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">miesiąc (skrót)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">Niestandardowy specyfikator formatu „MMM” reprezentujący skróconą nazwę miesiąca. Zlokalizowana skrócona nazwa miesiąca jest pobierana z właściwości DateTimeFormatInfo.AbbreviatedMonthNames bieżącej lub określonej kultury.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">dzień miesiąca</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">Standardowy specyfikator formatu „M” lub „m” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez bieżącą właściwość DateTimeFormatInfo.MonthDayPattern. Na przykład niestandardowy ciąg formatu dla kultury niezmiennej to „MMMM dd”.</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">miesiąc (pełny)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">Niestandardowy specyfikator formatu „MMMM” reprezentuje pełną nazwę miesiąca. Zlokalizowana nazwa miesiąca jest pobierana z właściwości DateTimeFormatInfo.MonthNames bieżącej lub określonej kultury.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">przeciążenie</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">przeciążenia</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">Słowo kluczowe {0}</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Hermetyzuj pole: „{0}” (i używaj właściwości)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Hermetyzuj pole: „{0}” (ale nadal używaj pola)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Hermetyzuj pola (i używaj właściwości)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Hermetyzuj pola (ale nadal używaj pola)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Nie można wyodrębnić interfejsu: zaznaczenie nie znajduje się w ramach klasy, interfejsu lub struktury.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Nie można wyodrębnić interfejsu: typ nie zawiera żadnej składowa, która może zostać wyodrębniona do interfejsu.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">nie można utworzyć drzewa końcowego</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Typ parametrów lub typ zwracany nie może być typu anonimowego: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">Zaznaczenie nie zawiera żadnej aktywnej instrukcji.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">Zaznaczenie zawiera błąd lub nieznany typ.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Parametr typu „{0}” jest ukryty przez inny parametr typu „{1}”.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">Adres zmiennej został użyty w zaznaczonym kodzie.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">Przypisywanie do pól tylko do odczytu musi zostać wykonane w konstruktorze: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">wygenerowany kod pokrywa się z ukrytą częścią kodu</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Dodaj opcjonalne parametry do elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Dodaj parametry do elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Generuj konstruktor delegowania „{0}({1})”</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Generuj konstruktor „{0}({1})”</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Generuj konstruktor przypisujący pola „{0}({1})”</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Generuj element Equals i GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Generuj element Equals(object)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Generuj element GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Generuj konstruktor w elemencie „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Generuj wszystko</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Generuj składową wyliczenia „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Generuj stałą „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Generuj właściwość tylko do odczytu „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Generuj właściwość „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Generuj pole tylko do odczytu „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Generuj pole „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Generuj lokalny element „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Generuj element {0} „{1}” w nowym pliku</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Generuj zagnieżdżony element {0} „{1}”</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Globalna przestrzeń nazw</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Implementuj interfejs abstrakcyjnie</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Implementuj interfejs za pomocą elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Zaimplementuj interfejs</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Wprowadź pole dla elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Wprowadź element lokalny dla elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Wprowadź stałą dla elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Wprowadź stałą lokalną dla elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Wprowadź pole dla wszystkich wystąpień elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Wprowadź element lokalny dla wszystkich wystąpień elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Wprowadź stałą dla wszystkich wystąpień elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Wprowadź stałą lokalną dla wszystkich wystąpień elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Wprowadź zmienną zapytania dla wszystkich wystąpień elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Wprowadź zmienną zapytania dla elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Typy anonimowe:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">jest</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Reprezentuje obiekt, którego operacje będą rozpoznane w czasie wykonania.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">stała</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">pole</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">stała lokalna</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">zmienna lokalna</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">etykieta</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">okres/era</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Niestandardowe specyfikatory formatu „g” lub „gg” (oraz dowolna liczba dodatkowych specyfikatorów „g”) reprezentują okres lub erę taką jak A.D. Operacja formatowania ignoruje ten specyfikator, jeśli formatowana data nie ma skojarzonego ciągu okresu lub ery. Jeśli specyfikator formatu „g” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny „g”.</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">zmienna zakresu</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">parametr</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">w</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Podsumowanie:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Elementy lokalne i parametry</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Parametry typu:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Zwraca:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Wyjątki:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Uwagi:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">generowanie źródła dla symboli tego typu nie jest obsługiwane</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">zestaw</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">lokalizacja nieznana</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Nieoczekiwany rodzaj składowej interfejsu: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Nieznany rodzaj symbolu</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Generuj właściwość abstrakcyjną „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Generuj metodę abstrakcyjną „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Generuj metodę „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">Żądany zestaw został już załadowany z elementu „{0}”.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Symbol nie ma ikony.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Metoda asynchroniczna nie może zawierać parametrów ref/out: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Składowa jest zdefiniowana w metadanych.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Możesz zmienić tylko sygnaturę konstruktora, indeksatora, metody lub delegata.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Ten symbol zawiera powiązane definicje lub odwołania w metadanych. Zmiana jego sygnatury może spowodować błędy kompilacji. Czy chcesz kontynuować?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Zmień sygnaturę...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Generuj nowy typ...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Błąd analizatora diagnostycznego użytkownika.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">Analizator „{0}” zgłosił wyjątek typu „{1}” z komunikatem „{2}”.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">Analizator „{0}” zgłosił następujący wyjątek: „{1}”.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Uprość nazwy</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Uprość dostęp do składowej</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Usuń kwalifikacje</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Wystąpił nieznany błąd</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Dostępne</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Niedostępne ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">w źródle</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">w pliku pominięć</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Usuń pominięcie {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Usuń pominięcie</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;Oczekujące&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Uwaga: naciśnij dwa razy klawisz Tab, aby wstawić fragment kodu „{0}”.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Jawnie implementuj interfejs za pomocą wzorca likwidacji</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Implementuj interfejs za pomocą wzorca likwidacji</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Sklasyfikuj ponownie element {0} (obecnie „{1}”)</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">Argument nie może zawierać elementu o wartości null.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">Argument nie może być pusty.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">Zgłoszona diagnostyka z identyfikatorem „{0}” nie jest obsługiwana przez analizatora.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Trwa obliczanie poprawki kodu naprawiającej wszystkie obliczenia...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Popraw wszystkie wystąpienia</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Dokument</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Projekt</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Rozwiązanie</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: Wyczyścić stan zarządzany (obiekty zarządzane)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: Ustawić wartość null dla dużych pól</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Kompilator</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">Na żywo</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">wartość enum</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">pole const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">metoda</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">operator</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">konstruktor</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">właściwość automatyczna</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">właściwość</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">metoda dostępu do zdarzeń</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">data/godzina zgodna z rfc1123</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Standardowy specyfikator formatu „R” lub „r” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez właściwość DateTimeFormatInfo.RFC1123Pattern. Wzorzec odpowiada zdefiniowanemu standardowi, a właściwość jest tylko do odczytu. Dlatego jest on zawsze taki sam niezależnie od użytej kultury lub określonego dostawcy formatu. Niestandardowy ciąg formatu to „ddd, dd MMM yyyy HH':'mm':'ss 'GMT'”. Gdy jest używany ten standardowy specyfikator formatu, operacja formatowania lub analizowania zawsze używa kultury niezmiennej.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">data/godzina rundy</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">Standardowy specyfikator formatu „O” lub „o” reprezentuje niestandardowy ciąg formatu daty i godziny przy użyciu wzorca, który zachowuje informacje o strefie czasowej i generuje ciąg wynikowy zgodny z normą ISO 8601. W przypadku wartości DateTime ten specyfikator formatu został zaprojektowany tak, aby zachowywać wartości daty i godziny wraz z właściwością DateTime.Kind w postaci tekstu. Sformatowany ciąg można z powrotem przeanalizować przy użyciu metody DateTime.Parse(String, IFormatProvider, DateTimeStyles) lub DateTime.ParseExact, jeśli parametr stylów ma wartość DateTimeStyles.RoundtripKind. Standardowy specyfikator formatu „O” lub „o” odpowiada niestandardowemu ciągowi formatu „yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK” dla wartości DateTime i niestandardowemu ciągowi formatu „yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz” dla wartości DateTimeOffset. W tym ciągu pary apostrofów ograniczające pojedyncze znaki, takie jak łączniki, dwukropki i litera „T” wskazują, że dany znak jest literałem, którego nie można zmienić. Apostrofy nie pojawiają się w ciągu wyjściowym. Standardowy specyfikator formatu „O” lub „o” (oraz niestandardowy ciąg formatu „yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK”) używają trzech sposobów zdefiniowanych przez normę ISO 8601 do reprezentowania informacji o strefie czasowej w celu zachowania właściwości Kind wartości DateTime: Składnik strefy czasowej DateTimeKind.Local wartości daty i godziny to przesunięcie względem czasu UTC (na przykład +01:00, -07:00). Wszystkie wartości DateTimeOffset są także reprezentowane za pomocą tego formatu. Składnik strefy czasowej DateTimeKind.Utc wartości daty i godziny używa elementu „Z” (oznaczającego zerowe przesunięcie) do reprezentowania czasu UTC. Wartości daty i godziny ze składnikiem DateTimeKind.Unspecified nie mają informacji o strefie czasowej. Ponieważ standardowy specyfikator formatu „O” lub „o” jest zgodny ze standardem międzynarodowym, operacja formatowania lub przetwarzania używająca tego specyfikatora zawsze używa kultury niezmiennej i kalendarza gregoriańskiego. Ciągi przekazywane do metod Parse, TryParse, ParseExact i TryParseExact wartości DateTime i DateTimeOffset mogą być analizowane przy użyciu specyfikatora formatu „O” lub „o”, jeśli mają one jeden z tych formatów. W przypadku obiektów DateTime wywołanie przeciążenia analizy powinno także obejmować parametr stylu o wartości DateTimeStyles.RoundtripKind. Zauważ, że wywołanie metody analizy z niestandardowym ciągiem formatu odpowiadającym specyfikatorowi formatu „O” lub „o” da inne wyniki niż w przypadku specyfikatora „O” lub „o”. Dzieje się tak dlatego, że metody analizy używające niestandardowego ciągu formatu nie mogą analizować wartości daty i godziny w postaci ciągu, który nie zawiera składnika strefy czasowej lub elementu „Z” wskazującego czas UTC.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">sekunda (1-2 cyfry)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">Niestandardowy specyfikator formatu „s” reprezentuje sekundy jako liczbę z zakresu od 0 do 59. Wynik reprezentuje całe sekundy, które upłynęły od ostatniej minuty. Jednocyfrowa wartość sekundy jest formatowana bez zera wiodącego. Jeśli specyfikator formatu „s” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny „s”.</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">sekunda (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">Niestandardowy specyfikator formatu „ss” (oraz dowolna liczba dodatkowych specyfikatorów „s”) reprezentuje sekundę jako liczbę z zakresu od 00 do 59. Wartość sekundy reprezentuje całe sekundy, które upłynęły od ostatniej minuty. Jednocyfrowa wartość sekundy jest formatowana przy użyciu zera wiodącego.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">data krótka</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">Standardowy specyfikator formatu „d” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez właściwość DateTimeFormatInfo.ShortDatePattern konkretnej kultury. Na przykład niestandardowy ciąg formatu zwracany przez właściwość ShortDatePattern dla kultury niezmiennej to „MM/dd/yyyy”.</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">godzina krótka</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">Standardowy specyfikator formatu „t” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez bieżącą właściwość DateTimeFormatInfo.ShortTimePattern. Na przykład niestandardowy ciąg formatu dla kultury niezmiennej to „HH:mm”.</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">sortowalna data/godzina</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Standardowy specyfikator formatu „s” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez właściwość DateTimeFormatInfo.SortableDateTimePattern. Wzorzec odpowiada zdefiniowanemu standardowi (ISO 8601), a właściwość jest tylko do odczytu. Dlatego jest zawsze taki sam niezależnie od użytej kultury lub określonego dostawcy formatu. Niestandardowy ciąg formatu to „yyyy'-'MM'-'dd'T'HH':'mm':'ss”. Specyfikator formatu „s” jest przeznaczony do tworzenia ciągów wyniku, które można spójnie sortować w kolejności rosnącej lub malejącej na podstawie wartości daty i godziny. Dlatego mimo że standardowy specyfikator formatu „s” reprezentuje wartość daty i godziny w spójnym formacie, operacja formatowania nie modyfikuje wartości formatowanego obiektu daty i godziny w celu odzwierciedlenia jego właściwości DateTime.Kind lub wartości DateTimeOffset.Offset. Na przykład ciągi wyniku generowane przez formatowanie wartości daty i godziny 2014-11-15T18:32:17+00:00 oraz 2014-11-15T18:32:17+08:00 są identyczne. Gdy jest używany ten standardowy specyfikator formatu, operacja formatowania lub analizowania zawsze używa kultury niezmiennej.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">konstruktor statyczny</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'Element „symbol” nie może być przestrzenią nazw.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">separator godziny</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Niestandardowy specyfikator formatu „:” reprezentuje separator godziny, który jest używany do rozdzielania godzin, minut i sekund. Odpowiedni zlokalizowany separator godziny jest pobierany z właściwości DateTimeFormatInfo.TimeSeparator bieżącej lub określonej kultury. Uwaga: aby zmienić separator godziny dla określonego ciągu daty i godziny, określ znak separatora w ramach ogranicznika ciągu literału. Na przykład niestandardowy ciąg formatu hh'_'dd'_'ss tworzy ciąg wyniku, w którym znak „_” (podkreślenie) jest zawsze używany jako separator godziny. Aby zmienić separator godziny dla wszystkich dat kultury, zmień wartość właściwości DateTimeFormatInfo.TimeSeparator bieżącej kultury lub utwórz wystąpienie obiektu DateTimeFormatInfo, przypisz znak do jego właściwości TimeSeparator i wywołaj przeciążenie metody formatowania, które obejmuje parametr IFormatProvider. Jeśli specyfikator formatu „:” zostanie użyty bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny i powoduje zgłoszenie wyjątku FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">strefa czasowa</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Niestandardowy specyfikator formatu „K” reprezentuje informacje o strefie czasowej dla wartości daty i godziny. Jeśli ten specyfikator formatu jest używany dla wartości DateTime, ciąg wyniku jest definiowany przez wartość właściwości DateTime.Kind: W przypadku lokalnej strefy czasowej (właściwość DateTime.Kind o wartości DateTimeKind.Local) ten specyfikator jest równoważny specyfikatorowi „zzz” i tworzy ciąg wyniku zawierający przesunięcie lokalne względem uniwersalnego czasu koordynowanego (UTC), na przykład „-07:00”. W przypadku czasu UTC (właściwość DateTime.Kind o wartości DateTimeKind.Utc) ciąg wyniku zawiera znak „Z” reprezentujący datę UTC. W przypadku godziny z nieokreślonej strefy czasowej (właściwość DateTime.Kind o wartości DateTimeKind.Unspecified) wynik jest równoważny wartości String.Empty. W przypadku wartości typu DateTimeOffset specyfikator formatu „K” jest równoważny specyfikatorowi formatu „zzz”" i tworzy ciąg wyniku zawierający przesunięcie wartości DateTimeOffset względem czasu UTC. Jeśli specyfikator formatu „K” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny i powoduje zgłoszenie wyjątku FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">ograniczenie typu</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">parametr typu</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">atrybut</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Zastąp elementy „{0}” i „{1}” właściwością</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Zastąp element „{0}” właściwością</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Metoda z odwołaniem utworzonym niejawnie</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Generuj typ „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Generuj element {0} „{1}”</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Zmień element „{0}” na „{1}”.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Niewywołanej metody nie można zastąpić właściwością.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Tylko metody z pojedynczym argumentem, który nie jest deklaracją zmiennej wyjściowej, można zastąpić właściwością.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Nie można utworzyć wystąpienia analizatora {0} z elementu {1}: {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">Zestaw {0} nie zawiera żadnych analizatorów.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Nie można załadować zestawu analizatora {0}: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Ustaw metodę jako synchroniczną</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">z {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Znajdź i zainstaluj najnowszą wersję</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Użyj wersji lokalnej „{0}”</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Użyj lokalnie zainstalowanej wersji „{0}” („{1}”) Ta wersja jest używana wersja: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Znajdź i zainstaluj najnowszą wersję pakietu „{0}”</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Zainstaluj za pomocą menedżera pakietów...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Zainstaluj pakiet „{0} {1}”</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Zainstaluj wersję „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Generuj zmienną „{0}”</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Klasy</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Stałe</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Delegaci</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Wyliczenia</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Zdarzenia</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Metody rozszerzenia</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Pola</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Interfejsy</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Elementy lokalne</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Metody</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Moduły</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Przestrzenie nazw</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Właściwości</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Struktury</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parametry:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Element SignatureHelpItem ze zmienną liczbą argumentów musi mieć co najmniej jeden parametr.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Zastąp element „{0}” metodą</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Zastąp element „{0}” metodami</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Niejawne odwołanie do właściwości</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Właściwości nie można bezpiecznie zastąpić wywołaniem metody</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Konwertuj na ciąg interpolowany</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Przenieś typ do {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Zmień nazwę pliku na {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Zmień nazwę typu na {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Usuń tag</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Dodaj brakujące węzły parametrów</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Ustaw zawierający zakres jako asynchroniczny</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Ustaw zawierający zakres jako asynchroniczny (zwróć typ Task)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Nieznany)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Użyj typu platformy</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Zainstaluj pakiet „{0}“</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">projekt {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">W pełni kwalifikowany element „{0}”</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Usuń odwołanie do elementu „{0}”.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Słowa kluczowe</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Fragmenty kodu</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Same małe litery</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Same wielkie litery</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Pierwsze słowo wielką literą</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">PascalCase</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Usuń dokument „{0}”</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Dodaj dokument „{0}”</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Dodaj nazwę argumentu „{0}”</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Przyjmij „{0}”</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Przyjmij oba</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Przyjmij dół</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Przyjmij górę</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Usuń nieużywaną zmienną</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Konwertuj na wartość binarną</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Konwertuj na wartość dziesiętną</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Konwertuj na wartość szesnastkową</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Oddziel tysiące</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Oddziel wyrazy</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Oddziel półbajty</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Usuń separatory</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Dodaj parametr do elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Generuj konstruktor...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Wybierz składowe, które zostaną użyte jako parametry konstruktora</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Wybierz składowe, które zostaną użyte w elementach Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Generuj zastąpienia...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Wybierz składowe do zastąpienia</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Dodaj sprawdzenie wartości null</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Dodaj sprawdzenie elementu „string.IsNullOrEmpty”</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Dodaj sprawdzenie elementu „string.IsNullOrWhiteSpace”</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Inicjuj pole „{0}”</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Inicjuj właściwość „{0}”</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Dodaj sprawdzenia wartości null</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Generuj operatory</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Implementuj {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">Lokalizacja źródłowa zgłoszonych danych diagnostycznych „{0}” znajduje się w pliku „{1}”, który nie jest częścią analizowanej kompilacji.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">Zgłoszone dane diagnostyczne „{0}” mają lokalizację źródłową „{1}” w pliku „{2}”, który jest spoza podanego pliku.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">w {0} (projekt {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Dodaj modyfikatory dostępności</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Przenieś deklarację blisko odwołania</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Konwertuj na pełną właściwość</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Ostrzeżenie: metoda zastępuje symbol z metadanych</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Użyj {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Dodaj nazwę argumentu „{0}” (w tym końcowe argumenty)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">funkcja lokalna</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">indeksator</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Niejednoznaczny typ aliasu „{0}”</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Ostrzeżenie: kolekcja została zmodyfikowana podczas iteracji.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Ostrzeżenie: zmienna iteracji przekroczyła granicę funkcji.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Ostrzeżenie: kolekcja mogła zostać zmodyfikowana podczas iteracji.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">uniwersalna pełna data/godzina</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">Standardowy specyfikator formatu „U” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez właściwość DateTimeFormatInfo.FullDateTimePattern określonej kultury. Wzorzec ten działa tak samo jak wzorzec „F”, jednak wartość DateTime jest automatycznie konwertowana na czas UTC przed formatowaniem.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">uniwersalna sortowalna data/godzina</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">Standardowy specyfikator formatu „u” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez właściwość DateTimeFormatInfo.UniversalSortableDateTimePattern. Wzorzec odpowiada zdefiniowanemu standardowi, a właściwość jest tylko do odczytu. Dlatego jest on zawsze taki sam niezależnie od użytej kultury lub określonego dostawcy formatu. Niestandardowy ciąg formatu to „yyyy'-'MM'-'dd HH':'mm':'ss'Z'”. Gdy jest używany ten standardowy specyfikator formatu, operacja formatowania lub analizowania zawsze używa kultury niezmiennej. Mimo że ciąg wyniku powinien wyrażać godzinę za pomocą uniwersalnego czasu koordynowanego (UTC), podczas operacji formatowania nie jest wykonywana żadna konwersja oryginalnej wartości DateTime. Dlatego przed sformatowaniem wartości DateTime należy skonwertować ją na czas UTC za pomocą wywołania metody DateTime.ToUniversalTime.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">aktualizowanie użyć w zawierającym elemencie członkowskim</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">aktualizowanie użyć w projekcie zawierającym</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">aktualizowanie użyć w typie zawierającym</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">aktualizowanie użyć w projektach zależnych</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">przesunięcie godziny i minuty utc</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">W przypadku wartości DateTime niestandardowy specyfikator formatu „zzz” reprezentuje przesunięcie ze znakiem strefy czasowej lokalnego systemu operacyjnego względem czasu UTC wyrażone w godzinach i minutach. Nie uwzględnia on wartości właściwości DateTime.Kind wystąpienia. Z tego powodu nie zaleca się użycia specyfikatora formatu „zzz” z wartościami DateTime. W przypadku wartości DateTimeOffset ten specyfikator formatu reprezentuje przesunięcie wartości DateTimeOffset względem czasu UTC w godzinach i minutach. Przesunięcie jest zawsze wyświetlane ze znakiem wiodącym. Znak plus (+) wskazuje godzinę po czasie UTC, a znak minus (-) wskazuje godzinę przed czasem UTC. Jednocyfrowa wartość przesunięcia jest formatowana przy użyciu wiodącego zera.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">przesunięcie godziny utc (1-2 cyfry)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">W przypadku wartości DateTime niestandardowy specyfikator formatu „z” reprezentuje przesunięcie ze znakiem strefy czasowej lokalnego systemu operacyjnego względem uniwersalnego czasu koordynowanego (UTC) wyrażone w godzinach. Nie uwzględnia on wartości właściwości DateTime.Kind wystąpienia. Z tego powodu nie zaleca się użycia specyfikatora formatu „z” z wartościami DateTime. W przypadku wartości DateTimeOffset ten specyfikator formatu reprezentuje przesunięcie wartości DateTimeOffset względem czasu UTC w godzinach. Przesunięcie jest zawsze wyświetlane ze znakiem wiodącym. Znak plus (+) wskazuje godzinę po czasie UTC, a znak minus (-) wskazuje godzinę przed czasem UTC. Jednocyfrowa wartość przesunięcia jest formatowana przy użyciu wiodącego zera. Jeśli specyfikator formatu „z” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator daty i godziny i powoduje zgłoszenie wyjątku FormatException.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">przesunięcie godziny UTC (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">W przypadku wartości DateTime niestandardowy specyfikator formatu „zz” reprezentuje przesunięcie ze znakiem strefy czasowej lokalnego systemu operacyjnego względem czasu UTC wyrażone w godzinach. Nie uwzględnia on wartości właściwości DateTime.Kind wystąpienia. Z tego powodu nie zaleca się użycia specyfikatora formatu „zz” z wartościami DateTime. W przypadku wartości DateTimeOffset ten specyfikator formatu reprezentuje przesunięcie wartości DateTimeOffset względem czasu UTC w godzinach. Przesunięcie jest zawsze wyświetlane ze znakiem wiodącym. Znak plus (+) wskazuje godzinę po czasie UTC, a znak minus (-) wskazuje godzinę przed czasem UTC. Jednocyfrowa wartość przesunięcia jest formatowana przy użyciu wiodącego zera.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">Zakres [x-y] w odwrotnej kolejności</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">rok (1-2 cyfry)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">Niestandardowy specyfikator formatu „y” reprezentuje rok w postaci liczby składającej się z jednej lub dwóch cyfr. Jeśli rok składa się z więcej niż dwóch cyfr, w wyniku pojawiają się tylko dwie najmniej znaczące cyfry. Jeśli pierwsza cyfra roku dwucyfrowego zaczyna się od zera (na przykład 2008), liczba jest formatowana bez zera wiodącego. Jeśli specyfikator formatu „y” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny „y”.</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">rok (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">Niestandardowy specyfikator formatu „yy” reprezentuje rok w postaci liczby dwucyfrowej. Jeśli rok składa się z więcej niż dwóch cyfr, w wyniku pojawiają się tylko dwie najmniej znaczące cyfry. Jeśli rok dwucyfrowy ma mniej niż dwie cyfry znaczące, liczba jest uzupełniana zerami wiodącymi w celu uzyskania dwóch cyfr. W ramach operacji analizowania rok dwucyfrowy analizowany przy użyciu niestandardowego specyfikatora formatu „yy” jest interpretowany na podstawie właściwości Calendar.TwoDigitYearMax bieżącego kalendarza dostawcy formatu. Poniższy przykład przedstawia analizowanie reprezentacji ciągu daty, który zawiera rok dwucyfrowy, za pomocą domyślnego kalendarza gregoriańskiego kultury en-US, która w tym przypadku jest kulturą bieżącą. Następnie jest zmieniany obiekt CultureInfo bieżącej kultury, tak aby używał obiektu GregorianCalendar ze zmodyfikowaną właściwością TwoDigitYearMax.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">rok (3-4 cyfry)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">Niestandardowy specyfikator formatu „yyy” reprezentuje rok za pomocą minimalnie 3 cyfr. Jeśli rok ma więcej niż trzy cyfry znaczące, są one uwzględniane w ciągu wyniku. Jeśli rok ma mniej niż trzy cyfry, liczba jest uzupełniana zerami wiodącymi, tak aby otrzymać trzy cyfry.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">rok (4 cyfry)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">Niestandardowy specyfikator formatu „yyyy” reprezentuje rok za pomocą minimalnie 4 cyfr. Jeśli rok ma więcej niż cztery cyfry znaczące, są one uwzględniane w ciągu wyniku. Jeśli rok ma mniej niż cztery cyfry, liczba jest uzupełniana zerami wiodącymi, tak aby otrzymać cztery cyfry.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">rok (5 cyfr)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">Niestandardowy specyfikator formatu „yyyyy” (oraz dowolna liczba dodatkowych specyfikatorów „y”) reprezentuje rok za pomocą minimalnie 5 cyfr. Jeśli rok ma więcej niż pięć cyfr znaczących, są one uwzględniane w ciągu wyniku. Jeśli rok ma mniej niż pięć cyfr, liczba jest uzupełniana zerami wiodącymi, tak aby otrzymać pięć cyfr. Jeśli podano dodatkowe specyfikatory „y”, liczba jest uzupełniana taką liczbą zer wiodących, aby otrzymać liczbę cyfr równą liczbie specyfikatorów „y”.</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">rok miesiąc</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">Standardowy specyfikator formatu „R” lub „r” reprezentuje ciąg niestandardowego formatu daty i godziny, który jest definiowany przez właściwość DateTimeFormatInfo.YearMonthPattern określonej kultury. Na przykład ciąg niestandardowego formatu dla niezmiennej kultury to „rrrr MMMM”.</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="pl" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (skrót)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">Indywidualny specyfikator formatu „t” reprezentuje pierwszą literę oznaczenia AM/PM. Odpowiednie zlokalizowane oznaczenie jest pobierane z właściwości DateTimeFormatInfo.AMDesignator lub DateTimeFormatInfo.PMDesignator bieżącej lub określonej kultury. Oznaczenie AM jest używane dla wszystkich godzin od 0:00:00 (północ) do 11:59:59,999. Oznaczenie PM jest używane dla wszystkich godzin od 12:00:00 (południe) do 23:59:59,999. Jeśli specyfikator formatu „t” zostanie użyty bez innych indywidualnych specyfikatorów formatu, będzie interpretowany jako standardowy specyfikator daty i godziny „t”.</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (pełne oznaczenie)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">Indywidualny specyfikator formatu „tt” (wraz z dowolną liczbą dodatkowych specyfikatorów „t”) reprezentuje całe oznaczenie AM/PM. Odpowiednie zlokalizowane oznaczenie jest pobierane z właściwości DateTimeFormatInfo.AMDesignator lub DateTimeFormatInfo.PMDesignator bieżącej lub określonej kultury. Oznaczenie AM jest używane dla wszystkich godzin od 0:00:00 (północ) do 11:59:59,999. Oznaczenie PM jest używane dla wszystkich godzin od 12:00:00 (południe) do 23:59:59,999. Pamiętaj, aby nie używać specyfikatora „tt” dla wszystkich języków, w których konieczne jest zachowanie rozróżnienia między godzinami AM a PM. Przykładem jest tutaj język japoński, w którym różnice w oznaczeniach AM i PM występują w drugim znaku a nie pierwszym.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Odejmowanie musi być ostatnim elementem w klasie znaków</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Dodaj atrybut "DebuggerDisplay"</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Dodaj rzutowanie jawne</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Dodaj nazwę składowej</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Dodaj sprawdzenia wartości null dla wszystkich parametrów</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Dodaj opcjonalny parametr do konstruktora</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Dodaj parametr do elementu „{0}” (oraz przesłonięć/implementacji)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Dodaj parametr do konstruktora</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Dodaj odwołanie do projektu do elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Dodaj odwołanie do elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Akcje nie mogą być puste.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Dodaj nazwę elementu krotki „{0}”</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Wyrównaj zawinięte argumenty</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Wyrównaj zawinięte parametry</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Warunki alternatywne nie mogą być komentarzami</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Warunki alternatywne nie przechwytują i nie mogą być nazywane</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Zastosuj preferencje nagłówka pliku</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Zastosuj preferencje inicjowania obiektu/kolekcji</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">Zadanie, na które oczekiwano, zwraca wartość „{0}”</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">Zadanie, na które oczekiwano, nie zwraca wartości</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Klasy podstawowe zawierają niedostępne niezaimplementowane składowe</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Nie można zastosować zmian — nieoczekiwany błąd: „{0}”</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Nie można uwzględnić klasy \{0} w zakresie znaków</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Wartość przechwytywania numerów grup musi być mniejsza lub równa wartości Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Numer przechwytywania nie może być równy zeru</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;wnioskuj&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;pomiń&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Zmień na globalną przestrzeń nazw</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Zmiany nie są dozwolone, gdy wyjątek został zatrzymany</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Zmiany wprowadzone w projekcie „{0}” nie zostaną zastosowane, gdy aplikacja jest uruchomiona</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application"> <source>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</source> <target state="new">Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Konfiguruj styl kodu {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Konfiguruj ważność {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Konfiguruj ważność wszystkich analizatorów „{0}”</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Konfiguruj ważność wszystkich analizatorów</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Konwertuj na składnię LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Dodaj do elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Konwertuj na klasę</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Konwertuj na składnię LINQ (wywołaj formularz)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Konwertuj na rekord</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Konwertuj na strukturę rekordów</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Konwertuj na strukturę</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Konwertuj typ na „{0}”</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Utwórz i przypisz pole „{0}”</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Utwórz i przypisz właściwość „{0}”</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Utwórz i przypisz pozostałe jako pola</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Utwórz i przypisz pozostałe jako właściwości</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Nie zmieniaj tego kodu. Umieść kod czyszczący w metodzie „{0}”.</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Bieżąca zawartość pliku źródłowego „{0}” nie pasuje do skompilowanego źródła. Wszystkie zmiany wprowadzone w tym pliku podczas debugowania nie zostaną zastosowane do czasu, aż jego zawartość będzie zgodna ze skompilowanym źródłem.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Dokument musi się znajdować w obszarze roboczym użytym do utworzenia tej usługi</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Edytuj i kontynuuj</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Edycja i kontynuowanie niedozwolone przez moduł</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Zmiany wprowadzone w projekcie „{0}” uniemożliwią kontynuowanie sesji debugowania: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">Środowisko uruchomieniowe nie obsługuje funkcji edycji i kontynuowania.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Błąd podczas odczytywania pliku „{0}”: {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Błąd podczas tworzenia wystąpienia elementu CodeFixProvider</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Błąd podczas tworzenia wystąpienia elementu CodeFixProvider „{0}”</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Przykład:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Przykłady:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Jawnie zaimplementowane metody rekordów muszą mieć nazwy parametrów pasujące do wygenerowanego odpowiednika kompilatora "{0}"</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Wyodrębnij klasę bazową...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Wyodrębnij interfejs...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Wyodrębnij funkcję lokalną</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Wyodrębnij metodę</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Nie można przeanalizować przepływu danych dla: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Napraw formatowanie</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Popraw błąd pisowni „{0}”</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Formatuj dokument</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Trwa formatowanie dokumentu...</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Generuj operatory porównania</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Generuj konstruktor w elemencie „{0}” (z polami)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Generuj konstruktor w elemencie „{0}” (z właściwościami)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Wygeneruj dla elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Generuj parametr „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Generowanie parametru „{0}” (i przesłonięć/implementacji)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Niedozwolony znak \ na końcu wzorca</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">Niedozwolone wyrażenie {x,y} z wartością x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Jawnie zaimplementuj interfejs „{0}”</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Niejawnie zaimplementuj interfejs „{0}”</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Implementuj klasę abstrakcyjną</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Jawnie zaimplementuj wszystkie interfejsy</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Niejawnie zaimplementuj wszystkie interfejsy</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Jawnie zaimplementuj wszystkie składowe</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Zaimplementuj jawnie</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Zaimplementuj niejawnie</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Jawnie zaimplementuj pozostałe składowe</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Implementuj za pomocą elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Niekompletna sekwencja ucieczki znaku \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Dodaj wcięcie dla wszystkich argumentów</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Dodaj wcięcie dla wszystkich parametrów</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Dodaj wcięcie dla zawiniętych argumentów</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Dodaj wcięcie dla zawiniętych parametrów</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">Wstaw środwierszowo metodę „{0}”</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Wstaw środwierszowo i zachowaj metodę „{0}”</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Zbyt mało cyfr szesnastkowych</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Wprowadź stałą</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Wprowadź pole</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Wprowadź zmienną lokalną</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Wprowadź zmienną zapytania</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Nieprawidłowa nazwa grupy: nazwy grup muszą rozpoczynać się od znaku wyrazu</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Ustaw specyfikator „abstract” dla klasy</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Ustaw jako statyczne</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Odwróć warunkowe</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">źle sformułowane</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Źle sformułowana sekwencja ucieczki znaku \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Odwołanie wsteczne \k&lt;...&gt; ma nieprawidłową postać</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Scal z zagnieżdżoną instrukcją „{0}”</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Scal z następną instrukcją „{0}”</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Scal z zewnętrzną instrukcją „{0}”</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Scal z poprzednią instrukcją „{0}”</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} musi zwrócić strumień, który obsługuje operacje odczytu i wyszukiwania.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Brak znaku kontrolnego</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Przenieś zawartość do przestrzeni nazw...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Przenieś plik do lokalizacji „{0}”</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Przenieś plik do folderu głównego projektu</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Przenieś do przestrzeni nazw...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Zagnieżdżony kwantyfikator {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Brak prawidłowej lokalizacji dla wstawienia wywołania metody.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Zbyt mało znaków )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operatory</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">Nie można zaktualizować referencji właściwości</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Ściągnij element „{0}” w górę</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Ściągnij elementy „{0}” aż do elementu „{1}”</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Ściągnij składowe aż do typu bazowego...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Ściągnij skladowe do nowej klasy bazowej...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Nic nie występuje przed kwantyfikatorem {x,y}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">odwołanie do niezdefiniowanej grupy</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Odwołanie do niezdefiniowanej nazwy grupy {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Odwołanie do niezdefiniowanego numeru grupy {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Wszystkie znaki kontrolne. Obejmuje to kategorie Cc, Cf, Cs, Co i Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">wszystkie znaki kontrolne</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Wszystkie znaki diakrytyczne. Obejmuje to kategorie Mn, Mc i Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">wszystkie znaki diakrytyczne</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Wszystkie litery. Obejmuje to znaki Lu, Ll, Lt, Lm i Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">wszystkie litery</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Wszystkie cyfry. Obejmuje to kategorie Nd, Nl i No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">wszystkie cyfry</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Wszystkie znaki interpunkcyjne. Obejmuje to kategorie Pc, Pd, Ps, Pe, Pi, Pf i Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">wszystkie znaki interpunkcyjne</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Wszystkie znaki separatora. Obejmuje to kategorie Zs, Zl i Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">wszystkie znaki separatora</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Wszystkie symbole. Obejmuje to kategorie Sm, Sc, Sk i So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">wszystkie symbole</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Możesz użyć znaku pionowej kreski (|) w celu dopasowania dowolnego z serii wzorców, przy czym znak | oddziela poszczególne wzorce.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">alternatywa</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Znak kropki (.) pasuje do dowolnego znaku oprócz \n (znaku nowego wiersza — \u000A). Jeśli wzorzec wyrażenia regularnego zostanie zmodyfikowany za pomocą opcji RegexOptions.Singleline lub jeśli część wzorca zawierająca klasę znaków . zostanie zmodyfikowana za pomocą opcji „s”, znak . będzie pasować do dowolnego znaku.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">dowolny znak</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Grupy atomowe (określane w niektórych innych aparatach wyrażeń regularnych jako podwyrażenie bez cofania się, podwyrażenie niepodzielne lub podwyrażenie używane tylko raz) wyłączają cofanie się. Aparat wyrażeń regularnych dopasuje tyle znaków w ciągu wejściowym, ile to możliwe. Jeśli dalsze dopasowywanie nie będzie możliwe, nie nastąpi cofnięcie się w celu wypróbowania dopasowania alternatywnych wzorców. (Oznacza to, że podwyrażenie będzie dopasowywane tylko do ciągów, które zostałyby dopasowane przez samo podwyrażenie; nie jest podejmowana próba dopasowania ciągu na podstawie podwyrażenia i wszelkich podwyrażeń następujących po nim). Ta opcja jest zalecana, jeśli wiesz, że cofanie się nie powiedzie się. Zapobiega ona wykonywaniu niepotrzebnego przeszukiwania przez aparat wyrażeń regularnych, co poprawia wydajność.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">grupa atomowa</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Pasuje do znaku backspace — \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">znak backspace</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Definicja grupy dopasowywania usuwa definicję uprzednio zdefiniowanej grupy i zapisuje w bieżącej grupie interwał między poprzednio zdefiniowaną grupą a bieżącą grupą. „Nazwa1” to bieżąca grupa (opcjonalna), „nazwa2” to wcześniej zdefiniowana grupa, a element „podwyrażenie” to dowolny prawidłowy wzorzec wyrażenia regularnego. Definicja grupy dopasowywania usuwa definicję elementu nazwa2 i zapisuje interwał między elementami nazwa2 i nazwa1 w elemencie nazwa1. Jeśli nie zdefiniowano grupy nazwa2, następuje cofanie dopasowywania. Ponieważ usunięcie ostatniej definicji elementu nazwa2 ujawnia jego poprzednią definicję, ta konstrukcja umożliwia użycie stosu przechwyceń dla grupy nazwa2 jako licznika służącego do śledzenia zagnieżdżonych konstrukcji, takich jak nawiasy lub otwierające i zamykające nawiasy klamrowe. Definicja grupy dopasowywania używa elementu „nazwa2” jako stosu. Początkowy znak każdej zagnieżdżonej konstrukcji jest umieszczany w grupie i w jej kolekcji Group.Captures. Po dopasowaniu znaku zamykającego odpowiadający mu znak otwierający jest usuwany z grupy, a kolekcja Captures jest zmniejszana o jeden. Po dopasowaniu otwierających i zamykających znaków wszystkich zagnieżdżonych konstrukcji element „nazwa1” jest pusty.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">grupa zrównoważona</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">grupa podstawowa</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Pasuje do znaku dzwonka (alarmu) — \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">znak dzwonka</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Pasuje do znaku powrotu karetki — \u000D. Zauważ, że znak \r nie jest równoważny znakowi nowego wiersza — \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">znak powrotu karetki</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">Odejmowanie klas znaków daje zestaw znaków, który jest wynikiem wykluczenia znaków w jednej klasie znaków z innej klasy znaków. Element „grupa_podstawowa” to pozytywna lub negatywna grupa lub zakres znaków. Składnik „wykluczona_grupa” to inna pozytywna lub negatywna grupa znaków lub inne wyrażenie odejmowania klas znaków (co oznacza, że można zagnieżdżać wyrażenia odejmowania klas znaków).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">odejmowanie klas znaków</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">grupa znaków</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">komentarz</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Ten element języka próbuje dopasować jeden z dwóch wzorców w zależności od tego, czy może dopasować wzorzec początkowy. Element „wyrażenie” to wzorzec początkowy do dopasowania, element „tak” to wzorzec do dopasowania w przypadku dopasowania wyrażenia, a element „nie” to opcjonalny wzorzec do dopasowania, jeśli wyrażenie nie zostanie dopasowane.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">warunkowe dopasowanie wyrażenia</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Ten element języka próbuje dopasować jeden z dwóch wzorców w zależności od tego, czy pasuje do określonej grupy przechwytującej. Element „nazwa” to nazwa (lub numer) grupy przechwytującej, element „tak” to wyrażenie do dopasowania, jeśli element „nazwa” (lub „numer”) został dopasowany, a element „nie” to wyrażenie opcjonalne do dopasowania w przeciwnym przypadku.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">warunkowe dopasowanie grupy</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">Kotwica \G określa, że dopasowanie musi nastąpić w miejscu zakończenia poprzedniego dopasowania. Jeśli użyjesz tej kotwicy w połączeniu z metodą Regex.Matches lub Match.NextMatch, zapewni ona ciągłość wszystkich dopasowań.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">dopasowania ciągłe</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Pasuje do znaku kontrolnego ASCII, gdzie X jest literą znaku kontrolnego. Na przykład \cC oznacza CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">znak kontrolny</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">Element \d pasuje do dowolnej cyfry dziesiętnej. Jest to równoważnik wzorca wyrażenia regularnego \p{Nd}, który obejmuje standardowe cyfry dziesiętne 0-9 oraz cyfry dziesiętne pewnych innych zestawów znaków. Jeśli zostanie określone zachowanie zgodne ze standardem ECMAScript, element \d jest równoważny elementowi [0-9].</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">znak cyfry dziesiętnej</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Znak numeru (#) oznacza komentarz w trybie x, który zaczyna się od znaku # bez zmiany znaczenia na końcu wzorca wyrażenia regularnego i jest kontynuowany do końca wiersza. Aby użyć tej konstrukcji, należy włączyć opcję x (za pośrednictwem opcji w tekście) lub podać wartość RegexOptions.IgnorePatternWhitespace w parametrze opcji podczas tworzenia wystąpienia obiektu Regex lub wywoływania metody statycznej obiektu Regex.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">komentarz na końcu wiersza</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">Kotwica \z określa, że dopasowanie musi nastąpić na końcu ciągu wejściowego. Podobnie jak element języka $, element \z ignoruje opcję RegexOptions.Multiline. W przeciwieństwie do elementu języka \Z, element \z nie pasuje do znaku \n na końcu ciągu. Dlatego może pasować tylko do ostatniego wiersza ciągu wejściowego.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">tylko koniec ciągu</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">Kotwica \Z określa, że dopasowanie musi nastąpić na końcu ciągu wejściowego lub przed znakiem \n na końcu ciągu wejściowego. Jest ona identyczna z kotwicą $ z wyjątkiem tego, że element \Z ignoruje opcję RegexOptions.Multiline. Dlatego w przypadku ciągu wielowierszowego może zostać dopasowany tylko na końcu ostatniego wiersza lub w ostatnim wierszu przed znakiem \n. Kotwica \Z pasuje do znaku \n, ale nie do znaków \r\n (kombinacji znaków CR/LF). Aby dopasować znaki CR/LF, dołącz element \r?\Z do wzorca wyrażenia regularnego.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">koniec ciągu lub przed końcowym znakiem nowego wiersza</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">Kotwica $ określa, że poprzedzający wzorzec musi wystąpić na końcu ciągu wejściowego lub przed znakiem \n na końcu ciągu wejściowego. Jeśli użyjesz elementu $ z opcją RegexOptions.Multiline, dopasowanie może także nastąpić na końcu wiersza. Kotwica $ pasuje do znaku \n, lecz nie do znaków \r\n (kombinacji znaków powrotu karetki i nowego wiersza, czyli CR/LF). Aby dopasować kombinację znaków CR/LF, dołącz element \r?$ do wzorca wyrażenia regularnego.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">koniec ciągu lub wiersza</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Pasuje do znaku ucieczki — \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">znak ucieczki</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">grupa wykluczona</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">wyrażenie</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Pasuje do znaku wysuwu strony — \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">znak wysuwu strony</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Ta konstrukcja grupująca stosuje określone opcje dla podwyrażenia lub wyłącza je. Opcje do włączenia określa się po znaku zapytania, a opcje do wyłączenia po znaku minus. Dozwolone opcje: i Użyj dopasowywania bez uwzględniania wielkości liter. m Użyj trybu wielowierszowego, gdzie znaki ^ i $ pasują na początku i na końcu każdego wiersza (zamiast na początku i na końcu ciągu wejściowego). s Użyj trybu jednowierszowego, gdzie kropka (.) pasuje do każdego znaku (zamiast do każdego znaku z wyjątkiem znaku \n). n Nie przechwytuj grup nienazwanych. Przechwytywane są tylko jawnie nazwane lub numerowane grupy w postaci (?&lt;nazwa&gt; podwyrażenie). x Wyklucz z wzorca białe znaki bez zmiany znaczenia i włącz komentarze po znaku numeru (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">opcje grupy</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Pasuje do znaku ASCII, gdzie ## to kod znaku w postaci dwóch cyfr szesnastkowych.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">szesnastkowy znak kontrolny</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">Konstrukcja (?# komentarz) umożliwia dołączenie komentarza w tekście do wyrażenia regularnego. Aparat wyrażeń regularnych nie używa żadnej części komentarza podczas dopasowywania wzorca, mimo że komentarz jest dołączony do ciągu zwracanego przez metodę Regex.ToString. Komentarz kończy się pierwszym nawiasem zamykającym.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">komentarz wewnętrzny</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Włącza lub wyłącza określone opcje dopasowania wzorca dla pozostałej części wyrażenia regularnego. Opcje do włączenia określa się po znaku zapytania, a opcje do wyłączenia określa się po znaku minus. Dozwolone opcje: i Użyj dopasowywania bez uwzględniania wielkości liter. m Użyj trybu wielowierszowego, gdzie znaki ^ i $ pasują na początku i na końcu każdego wiersza (zamiast na początku i na końcu ciągu wejściowego). s Użyj trybu jednowierszowego, gdzie kropka (.) pasuje do każdego znaku (zamiast do każdego znaku z wyjątkiem znaku \n). n Nie przechwytuj grup nienazwanych. Przechwytywane są tylko jawnie nazwane lub numerowane grupy w postaci (?&lt;nazwa&gt; podwyrażenie). x Wyklucz z wzorca białe znaki bez zmiany znaczenia i włącz komentarze po znaku numeru (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">opcje wewnętrzne</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Problem z wyrażeniem regularnym: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">litera, mała</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">litera, modyfikator</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">litera, inna</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">litera, jak nazwy własne</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">litera, wielka</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">znacznik, otaczający</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">znacznik, nierozdzielający</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">znacznik, rozdzielający łączący</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">Kwantyfikator {n,}? dopasowuje poprzedzający element co najmniej n razy, gdzie n jest dowolną liczbą całkowitą, lecz najmniejszą możliwą liczbę razy. Jest to powściągliwy odpowiednik kwantyfikatora zachłannego {n,}.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">dopasuj co najmniej „n” razy (powściągliwie)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">Kwantyfikator {n,} dopasowuje poprzedzający element co najmniej n razy, gdzie n jest dowolną liczbą całkowitą. Jest to kwantyfikator zachłanny, a jego powściągliwy odpowiednik to {n,}?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">dopasuj co najmniej „n” razy</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">Kwantyfikator {n,m}? dopasowuje poprzedzający element od n do m razy, gdzie n i m to dowolne liczby całkowite, lecz najmniejszą możliwą liczbę razy. Jest to powściągliwy odpowiednik kwantyfikatora zachłannego {n,m}.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">dopasuj co najmniej „n” razy (powściągliwie)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">Kwantyfikator {n,m} dopasowuje poprzedzający element co najmniej n razy, lecz nie więcej niż m razy, gdzie n i m to liczby całkowite. {n,m} to kwantyfikator zachłanny, którego powściągliwy równoważnik to {n,m}?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">dopasuj od „m” do „n” razy</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">Kwantyfikator {n}? dopasowuje poprzedzający element dokładnie n razy, gdzie n jest dowolną liczbą całkowitą. Jest to powściągliwy odpowiednik kwantyfikatora zachłannego {n}+.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">dopasuj dokładnie „n” razy (powściągliwie)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">Kwantyfikator {n} dopasowuje poprzedzający element dokładnie n razy, gdzie n jest dowolną liczbą całkowitą. {n} to kwantyfikator zachłanny, a jego powściągliwy równoważnik to {n}?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">dopasuj dokładnie „n” razy</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">Kwantyfikator +? dopasowuje poprzedzający element co najmniej raz, lecz możliwie jak najmniej razy. Jest to powściągliwy odpowiednik kwantyfikatora zachłannego +.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">dopasuj co najmniej raz (powściągliwie)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">Kwantyfikator + dopasowuje poprzedzający element co najmniej raz. Jest to równoważnik kwantyfikatora {1,}. Kwantyfikator + jest zachłanny, a jego powściągliwy równoważnik to +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">dopasuj co najmniej raz</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">Kwantyfikator *? dopasowuje poprzedzający element zero lub więcej razy, lecz możliwie jak najmniej razy. Jest to powściągliwy odpowiednik kwantyfikatora zachłannego *.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">dopasuj zero lub więcej razy (powściągliwie)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">Kwantyfikator + dopasowuje poprzedzający element zero lub więcej razy. Jest to równoważnik kwantyfikatora {0,}. Kwantyfikator * jest zachłanny, a jego powściągliwy równoważnik to *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">dopasuj zero lub więcej razy</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">Kwantyfikator ?? dopasowuje poprzedzający element zero lub więcej razy, lecz możliwie jak najmniej razy. Jest to powściągliwy odpowiednik kwantyfikatora zachłannego ?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">dopasuj zero razy lub jeden raz (powściągliwie)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">Kwantyfikator ? dopasowuje poprzedzający element zero razy lub jeden raz. Jest to równoważnik kwantyfikatora {0,1}. Kwantyfikator ? jest zachłanny, a jego powściągliwy równoważnik to ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">dopasuj zero razy lub jeden raz</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Ta konstrukcja grupująca przechwytuje dopasowane „podwyrażenie”, gdzie „podwyrażenie” to dowolny prawidłowy wzorzec wyrażenia regularnego. Przechwycenia używające nawiasów są numerowane automatycznie od lewej do prawej na podstawie kolejności nawiasów otwierających w wyrażeniu regularnym, rozpoczynając od numeru jeden. Przechwycenie o numerze zero to tekst dopasowany przez cały wzorzec wyrażenia regularnego.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">dopasowane podwyrażenie</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">nazwa</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">nazwa1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">nazwa2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">nazwa lub numer</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Nazwane lub numerowane odwołanie wsteczne. „Nazwa” to nazwa grupy przechwytującej zdefiniowanej we wzorcu wyrażenia regularnego.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">nazwane odwołanie wsteczne</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Przechwytuje dopasowane podwyrażenie i umożliwia dostęp do niego za pomocą nazwy lub numeru. Element „nazwa” to prawidłowa nazwa grupy, a element „podwyrażenie” to dowolny prawidłowy wzorzec wyrażenia regularnego. Element „nazwa” nie może zawierać żadnych znaków interpunkcyjnych i nie może zaczynać się od cyfry. Jeśli parametr RegexOptions metody dopasowywania wzorca wyrażenia regularnego zawiera flagę RegexOptions.ExplicitCapture lub jeśli dla tego wyrażenia zastosowano opcję n, jedynym sposobem przechwycenia podwyrażenia jest jawne nazwanie grup przechwytujących.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">nazwane dopasowane podwyrażenie</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Negatywna grupa znaków określa listę znaków, które nie mogą pojawić się w ciągu wejściowym, jeśli ma nastąpić dopasowanie. Znaki na liście są określane pojedynczo. Można połączyć dwa lub więcej zakresów znaków. Na przykład aby określić zakres cyfr dziesiętnych od „0” do „9”, zakres małych liter od „a” do „f” i zakres wielkich liter od „A” do „F”, użyj elementu [0-9A-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">negatywna grupa znaków</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Negatywny zakres znaków określa listę znaków, które nie mogą pojawić się w ciągu wejściowym, jeśli ma nastąpić dopasowanie. Element „firstCharacter” to znak rozpoczynający zakres, a element „lastCharacter” to znak kończący zakres. Można połączyć dwa lub więcej zakresów znaków. Na przykład aby określić zakres cyfr dziesiętnych od „0” do „9”, zakres małych liter od „a” do „f” i zakres wielkich liter od „A” do „F”, użyj elementu [0-9A-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">negatywny zakres znaków</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Konstrukcja wyrażenia regularnego \P{ nazwa } pasuje do dowolnego znaku, który nie należy do kategorii ogólnej znaków Unicode ani do bloku nazwanego, gdzie „nazwa” to skrót kategorii lub nazwa bloku nazwanego.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">negatywna kategoria unicode</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Pasuje do znaku nowego wiersza — \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">znak nowego wiersza</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">nie</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">Element \D pasuje do dowolnego znaku innego niż cyfra. Jest to równoważnik wzorca wyrażenia regularnego \P{Nd}. Jeśli zostanie określone zachowanie zgodne ze standardem ECMAScript, element \D jest równoważnikiem elementu [^0-9].</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">znak inny niż cyfra</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">Element \S pasuje do dowolnego znaku innego niż biały znak. Jest to równoważnik wzorca wyrażenia regularnego [^\f\n\r\t\v\x85\p{Z}] lub odwrotność wzorca wyrażenia regularnego \s, który pasuje do białych znaków. Jeśli zostało określone zachowanie zgodne ze standardem ECMAScript, element \S jest równoważny elementowi [^ \f\n\r\t\v].</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">znak inny niż biały</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">Kotwica \B określa, że dopasowanie nie może nastąpić na granicy słowa. Jest to przeciwieństwo kotwicy \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">granica inna niż słowa</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">Element \W pasuje do dowolnego znaku niebędącego częścią słowa. Pasuje do dowolnego znaku z wyjątkiem znaków należących do następujących kategorii Unicode: Ll Litera, mała Lu Litera, wielka Lt Litera, jak nazwy własne Lo Litera, inna Lm Litera, modyfikator Mn Znacznik, nierozdzielający Nd Cyfra, cyfra dziesiętna Pc Interpunkcja, łącznik Jeśli określono zachowanie zgodne ze standardem ECMAScript, element \W jest równoważny elementowi [^a-zA-Z_0-9].</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">znak nienależący do słowa</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Ta konstrukcja nie przechwytuje podciągu dopasowanego przez podwyrażenie: Konstrukcja grupy nieprzechwytującej jest zazwyczaj używana, gdy kwantyfikator stosuje się do grupy, lecz podciągi przechwycone przez grupę mogą zostać zignorowane. Jeśli wyrażenie regularne zawiera zagnieżdżone konstrukcje grupujące, konstrukcja zewnętrznej grupy nieprzechwytującej nie stosuje się do wewnętrznych zagnieżdżonych konstrukcji grup.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">grupa nieprzechwytująca</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">cyfra, cyfra dziesiętna</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">cyfra, litera</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">cyfra, inna</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Numerowane odwołanie wsteczne, gdzie element „numer” to numer kolejny grupy przechwytującej w wyrażeniu regularnym. Na przykład element \4 pasuje do zawartości czwartej grupy przechwytującej. Istnieje niejednoznaczność między ósemkowymi kodami ucieczki (takimi jak \16) i odwołaniami wstecznymi \numer, które używają tej samej notacji. Jeśli niejednoznaczność jest problemem, możesz użyć notacji \k&lt;nazwa&gt;, która jest jednoznaczna i której nie można pomylić z ósemkowymi kodami znaków. Podobnie kody szesnastkowe, takie jak \xdd, są jednoznaczne i nie można ich pomylić z odwołaniami wstecznymi.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">numerowane odwołanie wsteczne</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">inne, kontrolne</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">inne, formatujące</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">inne, nieprzypisane</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">inne, użytek prywatny</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">inne, dwuskładnikowe</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Pozytywna grupa znaków określa listę znaków, z których dowolny może się pojawić się w ciągu wejściowym, aby nastąpiło dopasowanie.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">pozytywna grupa znaków</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Pozytywny zakres znaków określa zakres znaków, z których dowolny może się pojawić się w ciągu wejściowym, aby nastąpiło dopasowanie. Element „firstCharacter” to znak rozpoczynający zakres, a element „lastCharacter” to znak kończący zakres. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">pozytywny zakres znaków</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">interpunkcja, zamknięcie</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">interpunkcja, łącznik</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">interpunkcja, myślnik</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">interpunkcja, cudzysłów końcowy</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">interpunkcja, cudzysłów początkowy</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">interpunkcja, otwarcie</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">interpunkcja, inne</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">separator, wiersz</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">separator, akapit</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">separator, spacja</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">Kotwica \A określa, że dopasowanie musi nastąpić na początku ciągu wejściowego. Jest ona identyczna z kotwicą ^ z tym wyjątkiem, że kotwica \A ignoruje opcję RegexOptions.Multiline. Dlatego może pasować tylko na początku pierwszego wiersza wielowierszowego ciągu wejściowego.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">tylko początek ciągu</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">Kotwica ^ określa, że następujący wzorzec musi rozpoczynać się od położenia pierwszego znaku ciągu. Jeśli użyjesz kotwicy ^ z opcją RegexOptions.Multiline, dopasowanie musi nastąpić na początku każdego wiersza.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">początek ciągu lub wiersza</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">podwyrażenie</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">symbol, waluta</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">symbol, matematyka</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">symbol, modyfikator</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">symbol, inny</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Pasuje do znaku tabulacji — \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">znak tabulacji</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Konstrukcja wyrażenia regularnego \p{ nazwa } pasuje do dowolnego znaku należącego do ogólnej kategorii Unicode lub bloku nazwanego, gdzie „nazwa” to skrót kategorii lub nazwa bloku nazwanego.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">kategoria unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Pasuje do jednostki kodu UTF-16, której wartość szesnastkowa to ####.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">znak ucieczki unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Kategoria ogólna Unicode: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Pasuje do znaku tabulacji pionowej — \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">znak tabulacji pionowej</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">Element \s pasuje do dowolnego znaku innego niż biały. Jest to równoważne następującym sekwencjom ucieczki i kategoriom Unicode: \f Znak wysuwu strony — \u000C \n Znak nowego wiersza — \u000A \r Znak powrotu karetki — \u000D \t Znak tabulacji — \u0009 \v Znak tabulacji pionowej — \u000B \x85 Znak wielokropka lub następnego wiersza (NEL), (…) — \u0085 \p{Z} Pasuje do dowolnego znaku separatora Jeśli określono zachowanie zgodne ze standardem ECMAScript, element \s jest równoważny elementowi [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">biały znak</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">Kotwica \b określa, że dopasowanie musi nastąpić na granicy między znakiem słowa (elementem języka \w) a znakiem innym niż słowa (elementem języka \W). Znaki słowa obejmują znaki alfanumeryczne i podkreślenia; znaki inne niż słowa obejmują wszystkie pozostałe znaki. Dopasowanie może także nastąpić na granicy słowa na początku lub na końcu ciągu. Kotwica \b jest często używana w celu zapewnienia, że podwyrażenie pasuje do całego wyrazu, a nie tylko na początku lub końcu słowa.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">granica słowa</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">Element \w pasuje do dowolnego znaku słowa. Znak słowa należy do dowolnej z następujących kategorii Unicode: Ll Litera, mała Lu Litera, wielka Lt Litera, jak nazwy własne Lo Litera, inna Lm Litera, modyfikator Mn Znacznik, nierozdzielający Nd Cyfra, cyfra dziesiętna Pc Interpunkcja, łącznik Jeśli określono zachowanie zgodne ze standardem ECMAScript, element \w jest równoważny elementowi [a-zA-Z_0-9].</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">znak słowa</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">tak</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Negatywna asercja wyprzedzająca o zerowej szerokości, w przypadku której powodzenie dopasowania wymaga, aby ciąg wejściowy nie pasował do wzorca wyrażenia regularnego w podwyrażeniu. Dopasowany ciąg nie jest dołączany do wyniku dopasowania. Negatywna asercja wyprzedzająca o zerowej szerokości jest zwykle używana na początku lub na końcu wyrażenia regularnego. Na początku wyrażenia regularnego może definiować konkretny wzorzec, który nie powinien zostać dopasowany, jeśli początek wyrażenia regularnego definiuje podobny, ale bardziej ogólny wzorzec dopasowania. W takim przypadku jest często używana do ograniczenia cofania się. Na końcu wyrażenia regularnego może definiować podwyrażenie, które nie może wystąpić na końcu dopasowania.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">negatywna asercja wyprzedzająca o zerowej szerokości</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Negatywna asercja wsteczna o zerowej szerokości, w przypadku której powodzenie dopasowania wymaga, aby „podwyrażenie” nie występowało w ciągu wejściowym po lewej stronie bieżącej pozycji. Dowolny podciąg niepasujący do „podwyrażenia” nie jest dołączany do wyniku dopasowania. Negatywne asercje wsteczne o zerowej szerokości są zwykle używane na początku wyrażeń regularnych. Definiowany przez nie wzorzec wyklucza dopasowanie w następującym ciągu. Są one także używane do ograniczenia cofania się, jeśli ostatni znak lub znaki w przechwyconej grupie nie mogą być znakami pasującymi do wzorca wyrażenie regularnego tej grupy.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">negatywna asercja wsteczna o zerowej szerokości</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Pozytywna asercja wyprzedzająca o zerowej szerokości, w przypadku której powodzenie dopasowania wymaga, aby ciąg wejściowy pasował do wzorca wyrażenia regularnego w „podwyrażeniu”. Dopasowany podciąg nie jest dołączany do wyniku dopasowania. Pozytywna asercja wyprzedzająca o zerowej szerokości nie wykonuje cofania się. Zwykle pozytywna asercja wyprzedzająca o zerowej szerokości znajduje się na końcu wzorca wyrażenia regularnego. Definiuje ona podciąg, który musi znajdować się na końcu ciągu, aby nastąpiło dopasowanie, lecz który nie powinien zostać dołączony do dopasowania. Jest także przydatna do ograniczenia nadmiernego cofania się. Pozytywnej asercji wyprzedzającej o zerowej szerokości możesz użyć, aby zapewnić, że konkretna przechwycona grupa zaczyna się tekstem pasującym do podzbioru wzorca definiującego tę przechwyconą grupę.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">pozytywna asercja wyprzedzająca o zerowej szerokości</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Pozytywna asercja wsteczna o zerowej szerokości, w przypadku której powodzenie dopasowania wymaga, aby „podwyrażenie” występowało w ciągu wejściowym po lewej stronie bieżącej pozycji. „Podwyrażenie” nie jest dołączane do wyniku dopasowania. Pozytywna asercja wsteczna o zerowej szerokości nie wykonuje cofania. Pozytywne asercje wsteczne o zerowej szerokości są zwykle używane na początku wyrażeń regularnych. Definiowany przez nie wzorzec jest warunkiem wstępnym dopasowania, lecz sam nie jest częścią wyniku dopasowania.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">pozytywna asercja wsteczna o zerowej szerokości</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Sygnatury powiązanych metod znalezione w metadanych nie zostaną zaktualizowane.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Usunięcie dokumentu nie jest obsługiwane</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Usuń modyfikator „async”</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Usuń niepotrzebne rzutowania</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Usuń nieużywane zmienne</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Zamień element „{0}” na element „{1}”</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Rozwiąż znaczniki konfliktów</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Edycja reguły</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Sortuj modyfikatory dostępności</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Podziel na kolejne instrukcje „{0}”</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Podziel na zagnieżdżone instrukcje „{0}”</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Strumień musi obsługiwać operacje odczytu i wyszukiwania.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Pomiń element {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: Zwolnić niezarządzane zasoby (niezarządzane obiekty) i przesłonić finalizator</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: Przesłonić finalizator tylko w sytuacji, gdy powyższa metoda „{0}” zawiera kod służący do zwalniania niezarządzanych zasobów</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Dopasowania typu docelowego</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">Zestaw „{0}” zawierający typ „{1}” odwołuje się do platformy .NET Framework, co nie jest obsługiwane.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">Zaznaczenie zawiera wywołanie funkcji lokalnej bez jego deklaracji.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Zbyt wiele znaków | w wyrażeniu (?()|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Zbyt wiele znaków )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Nie można odczytać pliku źródłowego „{0}” lub pliku PDB skompilowanego dla projektu, w którym jest on zawarty. Wszystkie zmiany wprowadzone w tym pliku podczas debugowania nie zostaną zastosowane do czasu, aż jego zawartość będzie zgodna ze skompilowanym źródłem.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Nieznana właściwość</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Nieznana właściwość „{0}”</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Nierozpoznany znak kontrolny</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Nierozpoznana sekwencja ucieczki \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Nierozpoznana konstrukcja grupująca</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Niezakończony zestaw []</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Niezakończony komentarz (?#...)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Odwijaj wszystkie argumenty</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Odwijaj wszystkie parametry</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Odwijaj wszystkie argumenty i dodawaj dla nich wcięcie</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Odwijaj wszystkie parametry i dodawaj dla nich wcięcie</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Odwijaj listę argumentów</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Odwijaj łańcuch wywołań</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Odwijaj wyrażenie</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Odwijaj listę parametrów</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Użyj treści bloku dla wyrażeń lambda</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Użyj treści wyrażenia dla wyrażeń lambda</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Użyj interpolowanego ciągu dosłownego wyrażenia</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Wartość:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Ostrzeżenie: semantyka może ulec zmianie podczas konwertowania instrukcji.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Zawijaj i wyrównuj łańcuch wywołań</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Zawijaj i wyrównuj wyrażenie</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Zawijaj i wyrównuj długi łańcuch wywołań</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Zawijaj łańcuch wywołań</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Zawijaj każdy argument</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Zawijaj każdy parametr</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Zawijaj wyrażenie</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Zawijaj długą listę argumentów</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Zawijaj długi łańcuch wywołań</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Zawijaj długą listę parametrów</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Zawijanie</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Za pomocą paska nawigacyjnego można przełączać konteksty.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">Element „{0}” nie może mieć wartości null ani być pusty.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">Element „{0}” nie może mieć wartości null ani składać się ze znaków odstępu.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">Element „{0}” nie ma wartości null w tym miejscu.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">Element „{0}” może mieć wartość null w tym miejscu.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">1/10 000 000 sekundy</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „fffffff” reprezentuje siedem najbardziej znaczących cyfr ułamka sekundy; tzn. reprezentuje dziesięciomilionową część sekundy w wartości daty i godziny. Co prawda możliwe jest wyświetlenie składnika dziesięciomilionowej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">1/10 000 000 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „FFFFFFF” reprezentuje siedem najbardziej znaczących cyfr ułamka sekundy; tzn. reprezentuje dziesięciomilionową część sekundy w wartości daty i godziny. Zera końcowe ani liczby z siedmioma zerami nie są jednak wyświetlane. Co prawda możliwe jest wyświetlenie składnika dziesięciomilionowej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1/1 000 000 sekundy</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „ffffff” reprezentuje sześć najbardziej znaczących cyfr ułamka sekundy; tzn. reprezentuje milionową część sekundy w wartości daty i godziny. Co prawda możliwe jest wyświetlenie składnika milionowej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1/1 000 000 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „FFFFFF” reprezentuje sześć najbardziej znaczących cyfr ułamka sekundy; tzn. reprezentuje milionową część sekundy w wartości daty i godziny. Zera końcowe ani liczby z sześcioma zerami nie są jednak wyświetlane. Co prawda możliwe jest wyświetlenie składnika milionowej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">1/100 000 sekundy</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „fffff” reprezentuje pięć najbardziej znaczących cyfr ułamka sekundy; tzn. reprezentuje stutysięczną część sekundy w wartości daty i godziny. Co prawda możliwe jest wyświetlenie składnika stutysięcznej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">1/100 000 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „FFFFF” reprezentuje pięć najbardziej znaczących cyfr ułamka sekundy; tzn. reprezentuje stutysięczną część sekundy w wartości daty i godziny. Zera końcowe ani liczby z pięcioma zerami nie są jednak wyświetlane. Co prawda możliwe jest wyświetlenie składnika stutysięcznej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">1/10 000 sekundy</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „ffff” reprezentuje cztery najbardziej znaczące cyfry ułamka sekundy; tzn. reprezentuje dziesięciotysięczną część sekundy w wartości daty i godziny. Co prawda możliwe jest wyświetlenie składnika dziesięciotysięcznej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">1/10 000 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Indywidualny specyfikator formatu „FFFF” reprezentuje cztery najbardziej znaczące cyfry ułamka sekundy; tzn. reprezentuje dziesięciotysięczną część sekundy w wartości daty i godziny. Zera końcowe ani liczby z czterema zerami nie są jednak wyświetlane. Co prawda możliwe jest wyświetlenie składnika dziesięciotysięcznej części sekundy wartości godziny, ale ta wartość może nie mieć znaczenia. Dokładność wartości daty i godziny zależy od rozdzielczości zegara systemowego. W systemach operacyjnych Windows NT 3.5 (i nowszych) oraz Windows Vista rozdzielczość zegara wynosi ok. 10–15 milisekund.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1/1000 sekundy</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">Indywidualny specyfikator formatu „fff” reprezentuje trzy najbardziej znaczące cyfry ułamka sekundy; tzn. reprezentuje milisekundy w wartości daty i godziny.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1/1000 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">Indywidualny specyfikator formatu „FFF” reprezentuje trzy najbardziej znaczące cyfry ułamka sekundy; tzn. reprezentuje milisekundy w wartości daty i godziny. Zera końcowe ani liczby z trzema zerami nie są jednak wyświetlane.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">1/100 sekundy</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">Indywidualny specyfikator formatu „ff” reprezentuje dwie najbardziej znaczące cyfry ułamka sekundy; tzn. reprezentuje setną część sekundy w wartości daty i godziny.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">1/100 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">Indywidualny specyfikator formatu „FF” reprezentuje dwie najbardziej znaczące cyfry ułamka sekundy; tzn. reprezentuje setną część sekundy w wartości daty i godziny. Zera końcowe ani liczby z dwoma zerami nie są jednak wyświetlane.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">1/10 sekundy</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">1/10 sekundy (wartrość inna niż zero)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">Indywidualny specyfikator formatu „F” reprezentuje najbardziej znaczącą cyfrę ułamka sekundy; tzn. reprezentuje dziesiątą część sekundy w wartości daty i godziny. Jeśli tą cyfrą jest zero, nic nie jest wyświetlane. Jeśli specyfikator formatu „F” zostanie użyty bez innych indywidualnych specyfikatorów formatu, będzie interpretowany jako standardowy specyfikator daty i godziny „F”. Liczba specyfikatorów formatu „f” używanych z metodą ParseExact, TryParseExact, ParseExact lub TryParseExact wskazuje maksymalną liczbę najważniejszych cyfr ułamka sekund, jaka może być reprezentowana, aby pomyślnie przeanalizować ciąg.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">Zegar 12-godzinny (1–2 cyfr)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Indywidualny specyfikator formatu „h” reprezentuje godzinę jako liczbę z zakresu od 1 do 12; tzn. godzina jest reprezentowana przez 12-godzinny zegar liczący pełne godziny od północy lub południa. Określona godzina po północy jest nie do odróżnienia od tej samej godziny po południu. Godzina nie jest zaokrąglana, a godzina 1-cyfrowa jest wyświetlana w formacie bez wiodącego zera. Na przykład w przypadku godziny 5:43 rano lub po południu ten indywidualny specyfikator formatu wyświetla wartość „5”. Jeśli specyfikator formatu „h” zostanie użyty bez innych indywidualnych specyfikatorów formatu, będzie interpretowany jako standardowy specyfikator daty i godziny i zwróci wyjątek FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">Zegar 12-godzinny (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">Indywidualny specyfikator formatu „hh” (wraz z dowolną liczbą dodatkowych specyfikatorów „h”) reprezentuje godzinę jako liczbę z zakresu od 01 do 12; tzn. godzina jest reprezentowana przez 12-godzinny zegar liczący pełne godziny od północy lub południa. Określona godzina po północy jest nie do odróżnienia od tej samej godziny po południu. Godzina nie jest zaokrąglana, a godzina 1-cyfrowa jest wyświetlana w formacie z wiodącym zerem. Na przykład w przypadku godziny 5:43 rano lub po południu ten specyfikator formatu wyświetla wartość „05”.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">Zegar 24-godzinny (1–2 cyfr)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Indywidualny specyfikator formatu „H” reprezentuje godzinę jako liczbę z zakresu od 0 do 23; tzn. godzina jest reprezentowana przez 24-godzinny zegar zaczynający się od zera i liczący godziny od północy lub południa. Godzina 1-cyfrowa jest wyświetlana w formacie bez wiodącego zera. Jeśli specyfikator formatu „H” zostanie użyty bez innych indywidualnych specyfikatorów formatu, będzie interpretowany jako standardowy specyfikator daty i godziny i zwróci wyjątek FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">Zegar 24-godzinny (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">Indywidualny specyfikator formatu „HH” (wraz z dowolną liczbą dodatkowych specyfikatorów „H”) reprezentuje godzinę jako liczbę z zakresu od 00 do 23; tzn. godzina jest reprezentowana przez 24-godzinny zegar zaczynający się od zera i liczący godziny od północy. Godzina 1-cyfrowa jest wyświetlana w formacie z wiodącym zerem.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">kod</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">separator daty</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Indywidualny specyfikator formatu „/” reprezentuje separator daty, który służy do rozdzielania lat, miesięcy i dni. Odpowiedni zlokalizowany separator jest pobierany z właściwości DateTimeFormatInfo.DateSeparator bieżącej lub określonej kultury. Uwaga: Aby zmienić separator daty dla określonego ciągu daty i godziny, określ znak separatora w ograniczniku ciągu literału. Na przykład ciąg formatu niestandardowego mm'/'dd'/'yyyy daje ciąg wyniku, w którym znak „/” jest zawsze używany jako separator daty. Aby zmienić separator daty dla wszystkich dat w kulturze, zmień wartość właściwości DateTimeFormatInfo.DateSeparator bieżącej kultury lub utwórz wystąpienie obiektu DateTimeFormatInfo, przypisz dany znak do jego właściwości DateSeparator i wywołaj przeciążenie metody formatowania, która zawiera parametr IFormatProvider. Jeśli specyfikator formatu „/” zostanie użyty bez innych indywidualnych specyfikatorów formatu, będzie interpretowany jako standardowy specyfikator daty i godziny i zwróci wyjątek FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">dzień miesiąca (1–2 cyfr)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">Indywidualny specyfikator formatu „d” reprezentuje dzień miesiąca jako liczbę z zakresu od 1 do 31. Dzień 1-cyfrowy jest wyświetlany w formacie bez wiodącego zera. Jeśli specyfikator formatu „d” zostanie użyty bez innych indywidualnych specyfikatorów formatu, będzie interpretowany jako standardowy specyfikator daty i godziny „d”.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">dzień miesiąca (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">Ciąg formatu niestandardowego „dd” reprezentuje dzień miesiąca jako liczbę z zakresu od 01 do 31. Dzień 1-cyfrowy jest wyświetlany w formacie z wiodącym zerem.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">dzień tygodnia (skrót)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">Indywidualny specyfikator formatu „ddd” reprezentuje skróconą nazwę dnia tygodnia. Zlokalizowana skrócona nazwa dnia tygodnia jest pobierana z właściwości DateTimeFormatInfo.AbbreviatedDayNames bieżącej lub określonej kultury.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">dzień tygodnia (pełna nazwa)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">Indywidualny specyfikator formatu „dddd” (wraz z dowolną liczbą dodatkowych specyfikatorów „d”) reprezentuje pełną nazwę dnia tygodnia. Zlokalizowana nazwa dnia tygodnia jest pobierana z właściwości DateTimeFormatInfo.DayNames bieżącej lub określonej kultury.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">odrzuć</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">z metadanych</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">pełna długa data/godzina</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">Standardowy specyfikator formatu „F” reprezentuje niestandardowy ciąg formatu daty i godziny definiowany przez bieżącą właściwość DateTimeFormatInfo.FullDateTimePattern. Na przykład niestandardowy ciąg formatu dla kultury niezmiennej to „dddd, dd MMMM yyyy HH:mm:ss”.</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">pełna krótka data/godzina</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Specyfikator formatu pełnej daty i krótkiej godziny („f”) Standardowy specyfikator formatu „f” reprezentuje połączenie wzorców długiej daty(„D”) i krótkiej godziny („t”) rozdzielonych spacją.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">ogólna data/godzina długa</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">Standardowy specyfikator formatu „G” reprezentuje kombinację wzorców daty krótkiej („d”) i godziny długiej („T”) rozdzielonych spacją.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">ogólna data/godzina krótka</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">Standardowy specyfikator formatu „g” reprezentuje kombinację wzorców daty krótkiej („d”) i godziny krótkiej („t”) rozdzielonych spacją.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">przeciążenie ogólne</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">przeciążenia ogólne</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">w {0} ({1} — {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">w źródle (atrybut)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">data długa</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">Standardowy specyfikator formatu „D” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez bieżącą właściwość DateTimeFormatInfo.LongDatePattern. Na przykład niestandardowy ciąg formatu dla kultury niezmiennej to „dddd, dd MMMM yyyy”.</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">godzina długa</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">Standardowy specyfikator formatu „T” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez właściwość DateTimeFormatInfo.LongTimePattern konkretnej kultury. Na przykład niestandardowy ciąg formatu dla kultury niezmiennej to „HH:mm:ss”.</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} „{1}”</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">minuta (1-2 cyfry)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">Niestandardowy specyfikator formatu „m” reprezentuje minutę jako liczbę z zakresu od 0 do 59. Wartość minuty reprezentuje całe minuty, które upłynęły od ostatniej godziny. Jednocyfrowa wartość minuty jest formatowana bez zera wiodącego. Jeśli specyfikator formatu „m” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny „m”.</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">minuta (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">Niestandardowy specyfikator formatu „mm” (oraz dowolna liczba dodatkowych specyfikatorów „m”) reprezentuje minutę jako liczbę z zakresu od 00 do 59. Wartość minuty reprezentuje całe minuty, które upłynęły od ostatniej godziny. Jednocyfrowa wartość minuty jest formatowana za pomocą zera wiodącego.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">miesiąc (1-2 cyfry)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">Niestandardowy specyfikator formatu „M” reprezentuje miesiąc jako liczbę z zakresu od 1 do 12 (lub od 1 do 13 dla kalendarzy z 13 miesiącami). Jednocyfrowa wartość miesiąca jest formatowana bez zera wiodącego. Jeśli specyfikator formatu „M” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny „M”.</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">miesiąc (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">Niestandardowy specyfikator formatu „MM” reprezentuje miesiąc jako liczbę z zakresu od 01 do 12 (lub od 01 do 13 dla kalendarzy z 13 miesiącami). Miesiąc jednocyfrowy jest formatowany przy użyciu zera wiodącego.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">miesiąc (skrót)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">Niestandardowy specyfikator formatu „MMM” reprezentujący skróconą nazwę miesiąca. Zlokalizowana skrócona nazwa miesiąca jest pobierana z właściwości DateTimeFormatInfo.AbbreviatedMonthNames bieżącej lub określonej kultury.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">dzień miesiąca</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">Standardowy specyfikator formatu „M” lub „m” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez bieżącą właściwość DateTimeFormatInfo.MonthDayPattern. Na przykład niestandardowy ciąg formatu dla kultury niezmiennej to „MMMM dd”.</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">miesiąc (pełny)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">Niestandardowy specyfikator formatu „MMMM” reprezentuje pełną nazwę miesiąca. Zlokalizowana nazwa miesiąca jest pobierana z właściwości DateTimeFormatInfo.MonthNames bieżącej lub określonej kultury.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">przeciążenie</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">przeciążenia</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">Słowo kluczowe {0}</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Hermetyzuj pole: „{0}” (i używaj właściwości)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Hermetyzuj pole: „{0}” (ale nadal używaj pola)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Hermetyzuj pola (i używaj właściwości)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Hermetyzuj pola (ale nadal używaj pola)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Nie można wyodrębnić interfejsu: zaznaczenie nie znajduje się w ramach klasy, interfejsu lub struktury.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Nie można wyodrębnić interfejsu: typ nie zawiera żadnej składowa, która może zostać wyodrębniona do interfejsu.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">nie można utworzyć drzewa końcowego</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Typ parametrów lub typ zwracany nie może być typu anonimowego: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">Zaznaczenie nie zawiera żadnej aktywnej instrukcji.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">Zaznaczenie zawiera błąd lub nieznany typ.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Parametr typu „{0}” jest ukryty przez inny parametr typu „{1}”.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">Adres zmiennej został użyty w zaznaczonym kodzie.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">Przypisywanie do pól tylko do odczytu musi zostać wykonane w konstruktorze: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">wygenerowany kod pokrywa się z ukrytą częścią kodu</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Dodaj opcjonalne parametry do elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Dodaj parametry do elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Generuj konstruktor delegowania „{0}({1})”</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Generuj konstruktor „{0}({1})”</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Generuj konstruktor przypisujący pola „{0}({1})”</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Generuj element Equals i GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Generuj element Equals(object)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Generuj element GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Generuj konstruktor w elemencie „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Generuj wszystko</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Generuj składową wyliczenia „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Generuj stałą „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Generuj właściwość tylko do odczytu „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Generuj właściwość „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Generuj pole tylko do odczytu „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Generuj pole „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Generuj lokalny element „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Generuj element {0} „{1}” w nowym pliku</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Generuj zagnieżdżony element {0} „{1}”</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Globalna przestrzeń nazw</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Implementuj interfejs abstrakcyjnie</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Implementuj interfejs za pomocą elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Zaimplementuj interfejs</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Wprowadź pole dla elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Wprowadź element lokalny dla elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Wprowadź stałą dla elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Wprowadź stałą lokalną dla elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Wprowadź pole dla wszystkich wystąpień elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Wprowadź element lokalny dla wszystkich wystąpień elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Wprowadź stałą dla wszystkich wystąpień elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Wprowadź stałą lokalną dla wszystkich wystąpień elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Wprowadź zmienną zapytania dla wszystkich wystąpień elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Wprowadź zmienną zapytania dla elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Typy anonimowe:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">jest</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Reprezentuje obiekt, którego operacje będą rozpoznane w czasie wykonania.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">stała</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">pole</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">stała lokalna</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">zmienna lokalna</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">etykieta</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">okres/era</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Niestandardowe specyfikatory formatu „g” lub „gg” (oraz dowolna liczba dodatkowych specyfikatorów „g”) reprezentują okres lub erę taką jak A.D. Operacja formatowania ignoruje ten specyfikator, jeśli formatowana data nie ma skojarzonego ciągu okresu lub ery. Jeśli specyfikator formatu „g” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny „g”.</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">zmienna zakresu</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">parametr</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">w</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Podsumowanie:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Elementy lokalne i parametry</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Parametry typu:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Zwraca:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Wyjątki:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Uwagi:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">generowanie źródła dla symboli tego typu nie jest obsługiwane</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">zestaw</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">lokalizacja nieznana</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Nieoczekiwany rodzaj składowej interfejsu: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Nieznany rodzaj symbolu</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Generuj właściwość abstrakcyjną „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Generuj metodę abstrakcyjną „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Generuj metodę „{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">Żądany zestaw został już załadowany z elementu „{0}”.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Symbol nie ma ikony.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Metoda asynchroniczna nie może zawierać parametrów ref/out: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Składowa jest zdefiniowana w metadanych.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Możesz zmienić tylko sygnaturę konstruktora, indeksatora, metody lub delegata.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Ten symbol zawiera powiązane definicje lub odwołania w metadanych. Zmiana jego sygnatury może spowodować błędy kompilacji. Czy chcesz kontynuować?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Zmień sygnaturę...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Generuj nowy typ...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Błąd analizatora diagnostycznego użytkownika.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">Analizator „{0}” zgłosił wyjątek typu „{1}” z komunikatem „{2}”.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">Analizator „{0}” zgłosił następujący wyjątek: „{1}”.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Uprość nazwy</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Uprość dostęp do składowej</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Usuń kwalifikacje</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Wystąpił nieznany błąd</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Dostępne</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Niedostępne ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">w źródle</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">w pliku pominięć</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Usuń pominięcie {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Usuń pominięcie</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;Oczekujące&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Uwaga: naciśnij dwa razy klawisz Tab, aby wstawić fragment kodu „{0}”.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Jawnie implementuj interfejs za pomocą wzorca likwidacji</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Implementuj interfejs za pomocą wzorca likwidacji</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Sklasyfikuj ponownie element {0} (obecnie „{1}”)</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">Argument nie może zawierać elementu o wartości null.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">Argument nie może być pusty.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">Zgłoszona diagnostyka z identyfikatorem „{0}” nie jest obsługiwana przez analizatora.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Trwa obliczanie poprawki kodu naprawiającej wszystkie obliczenia...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Popraw wszystkie wystąpienia</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Dokument</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Projekt</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Rozwiązanie</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: Wyczyścić stan zarządzany (obiekty zarządzane)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: Ustawić wartość null dla dużych pól</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Kompilator</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">Na żywo</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">wartość enum</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">pole const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">metoda</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">operator</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">konstruktor</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">właściwość automatyczna</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">właściwość</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">metoda dostępu do zdarzeń</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">data/godzina zgodna z rfc1123</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Standardowy specyfikator formatu „R” lub „r” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez właściwość DateTimeFormatInfo.RFC1123Pattern. Wzorzec odpowiada zdefiniowanemu standardowi, a właściwość jest tylko do odczytu. Dlatego jest on zawsze taki sam niezależnie od użytej kultury lub określonego dostawcy formatu. Niestandardowy ciąg formatu to „ddd, dd MMM yyyy HH':'mm':'ss 'GMT'”. Gdy jest używany ten standardowy specyfikator formatu, operacja formatowania lub analizowania zawsze używa kultury niezmiennej.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">data/godzina rundy</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">Standardowy specyfikator formatu „O” lub „o” reprezentuje niestandardowy ciąg formatu daty i godziny przy użyciu wzorca, który zachowuje informacje o strefie czasowej i generuje ciąg wynikowy zgodny z normą ISO 8601. W przypadku wartości DateTime ten specyfikator formatu został zaprojektowany tak, aby zachowywać wartości daty i godziny wraz z właściwością DateTime.Kind w postaci tekstu. Sformatowany ciąg można z powrotem przeanalizować przy użyciu metody DateTime.Parse(String, IFormatProvider, DateTimeStyles) lub DateTime.ParseExact, jeśli parametr stylów ma wartość DateTimeStyles.RoundtripKind. Standardowy specyfikator formatu „O” lub „o” odpowiada niestandardowemu ciągowi formatu „yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK” dla wartości DateTime i niestandardowemu ciągowi formatu „yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz” dla wartości DateTimeOffset. W tym ciągu pary apostrofów ograniczające pojedyncze znaki, takie jak łączniki, dwukropki i litera „T” wskazują, że dany znak jest literałem, którego nie można zmienić. Apostrofy nie pojawiają się w ciągu wyjściowym. Standardowy specyfikator formatu „O” lub „o” (oraz niestandardowy ciąg formatu „yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK”) używają trzech sposobów zdefiniowanych przez normę ISO 8601 do reprezentowania informacji o strefie czasowej w celu zachowania właściwości Kind wartości DateTime: Składnik strefy czasowej DateTimeKind.Local wartości daty i godziny to przesunięcie względem czasu UTC (na przykład +01:00, -07:00). Wszystkie wartości DateTimeOffset są także reprezentowane za pomocą tego formatu. Składnik strefy czasowej DateTimeKind.Utc wartości daty i godziny używa elementu „Z” (oznaczającego zerowe przesunięcie) do reprezentowania czasu UTC. Wartości daty i godziny ze składnikiem DateTimeKind.Unspecified nie mają informacji o strefie czasowej. Ponieważ standardowy specyfikator formatu „O” lub „o” jest zgodny ze standardem międzynarodowym, operacja formatowania lub przetwarzania używająca tego specyfikatora zawsze używa kultury niezmiennej i kalendarza gregoriańskiego. Ciągi przekazywane do metod Parse, TryParse, ParseExact i TryParseExact wartości DateTime i DateTimeOffset mogą być analizowane przy użyciu specyfikatora formatu „O” lub „o”, jeśli mają one jeden z tych formatów. W przypadku obiektów DateTime wywołanie przeciążenia analizy powinno także obejmować parametr stylu o wartości DateTimeStyles.RoundtripKind. Zauważ, że wywołanie metody analizy z niestandardowym ciągiem formatu odpowiadającym specyfikatorowi formatu „O” lub „o” da inne wyniki niż w przypadku specyfikatora „O” lub „o”. Dzieje się tak dlatego, że metody analizy używające niestandardowego ciągu formatu nie mogą analizować wartości daty i godziny w postaci ciągu, który nie zawiera składnika strefy czasowej lub elementu „Z” wskazującego czas UTC.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">sekunda (1-2 cyfry)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">Niestandardowy specyfikator formatu „s” reprezentuje sekundy jako liczbę z zakresu od 0 do 59. Wynik reprezentuje całe sekundy, które upłynęły od ostatniej minuty. Jednocyfrowa wartość sekundy jest formatowana bez zera wiodącego. Jeśli specyfikator formatu „s” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny „s”.</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">sekunda (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">Niestandardowy specyfikator formatu „ss” (oraz dowolna liczba dodatkowych specyfikatorów „s”) reprezentuje sekundę jako liczbę z zakresu od 00 do 59. Wartość sekundy reprezentuje całe sekundy, które upłynęły od ostatniej minuty. Jednocyfrowa wartość sekundy jest formatowana przy użyciu zera wiodącego.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">data krótka</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">Standardowy specyfikator formatu „d” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez właściwość DateTimeFormatInfo.ShortDatePattern konkretnej kultury. Na przykład niestandardowy ciąg formatu zwracany przez właściwość ShortDatePattern dla kultury niezmiennej to „MM/dd/yyyy”.</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">godzina krótka</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">Standardowy specyfikator formatu „t” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez bieżącą właściwość DateTimeFormatInfo.ShortTimePattern. Na przykład niestandardowy ciąg formatu dla kultury niezmiennej to „HH:mm”.</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">sortowalna data/godzina</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Standardowy specyfikator formatu „s” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez właściwość DateTimeFormatInfo.SortableDateTimePattern. Wzorzec odpowiada zdefiniowanemu standardowi (ISO 8601), a właściwość jest tylko do odczytu. Dlatego jest zawsze taki sam niezależnie od użytej kultury lub określonego dostawcy formatu. Niestandardowy ciąg formatu to „yyyy'-'MM'-'dd'T'HH':'mm':'ss”. Specyfikator formatu „s” jest przeznaczony do tworzenia ciągów wyniku, które można spójnie sortować w kolejności rosnącej lub malejącej na podstawie wartości daty i godziny. Dlatego mimo że standardowy specyfikator formatu „s” reprezentuje wartość daty i godziny w spójnym formacie, operacja formatowania nie modyfikuje wartości formatowanego obiektu daty i godziny w celu odzwierciedlenia jego właściwości DateTime.Kind lub wartości DateTimeOffset.Offset. Na przykład ciągi wyniku generowane przez formatowanie wartości daty i godziny 2014-11-15T18:32:17+00:00 oraz 2014-11-15T18:32:17+08:00 są identyczne. Gdy jest używany ten standardowy specyfikator formatu, operacja formatowania lub analizowania zawsze używa kultury niezmiennej.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">konstruktor statyczny</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'Element „symbol” nie może być przestrzenią nazw.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">separator godziny</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Niestandardowy specyfikator formatu „:” reprezentuje separator godziny, który jest używany do rozdzielania godzin, minut i sekund. Odpowiedni zlokalizowany separator godziny jest pobierany z właściwości DateTimeFormatInfo.TimeSeparator bieżącej lub określonej kultury. Uwaga: aby zmienić separator godziny dla określonego ciągu daty i godziny, określ znak separatora w ramach ogranicznika ciągu literału. Na przykład niestandardowy ciąg formatu hh'_'dd'_'ss tworzy ciąg wyniku, w którym znak „_” (podkreślenie) jest zawsze używany jako separator godziny. Aby zmienić separator godziny dla wszystkich dat kultury, zmień wartość właściwości DateTimeFormatInfo.TimeSeparator bieżącej kultury lub utwórz wystąpienie obiektu DateTimeFormatInfo, przypisz znak do jego właściwości TimeSeparator i wywołaj przeciążenie metody formatowania, które obejmuje parametr IFormatProvider. Jeśli specyfikator formatu „:” zostanie użyty bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny i powoduje zgłoszenie wyjątku FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">strefa czasowa</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Niestandardowy specyfikator formatu „K” reprezentuje informacje o strefie czasowej dla wartości daty i godziny. Jeśli ten specyfikator formatu jest używany dla wartości DateTime, ciąg wyniku jest definiowany przez wartość właściwości DateTime.Kind: W przypadku lokalnej strefy czasowej (właściwość DateTime.Kind o wartości DateTimeKind.Local) ten specyfikator jest równoważny specyfikatorowi „zzz” i tworzy ciąg wyniku zawierający przesunięcie lokalne względem uniwersalnego czasu koordynowanego (UTC), na przykład „-07:00”. W przypadku czasu UTC (właściwość DateTime.Kind o wartości DateTimeKind.Utc) ciąg wyniku zawiera znak „Z” reprezentujący datę UTC. W przypadku godziny z nieokreślonej strefy czasowej (właściwość DateTime.Kind o wartości DateTimeKind.Unspecified) wynik jest równoważny wartości String.Empty. W przypadku wartości typu DateTimeOffset specyfikator formatu „K” jest równoważny specyfikatorowi formatu „zzz”" i tworzy ciąg wyniku zawierający przesunięcie wartości DateTimeOffset względem czasu UTC. Jeśli specyfikator formatu „K” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny i powoduje zgłoszenie wyjątku FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">ograniczenie typu</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">parametr typu</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">atrybut</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Zastąp elementy „{0}” i „{1}” właściwością</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Zastąp element „{0}” właściwością</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Metoda z odwołaniem utworzonym niejawnie</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Generuj typ „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Generuj element {0} „{1}”</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Zmień element „{0}” na „{1}”.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Niewywołanej metody nie można zastąpić właściwością.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Tylko metody z pojedynczym argumentem, który nie jest deklaracją zmiennej wyjściowej, można zastąpić właściwością.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Nie można utworzyć wystąpienia analizatora {0} z elementu {1}: {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">Zestaw {0} nie zawiera żadnych analizatorów.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Nie można załadować zestawu analizatora {0}: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Ustaw metodę jako synchroniczną</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">z {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Znajdź i zainstaluj najnowszą wersję</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Użyj wersji lokalnej „{0}”</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Użyj lokalnie zainstalowanej wersji „{0}” („{1}”) Ta wersja jest używana wersja: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Znajdź i zainstaluj najnowszą wersję pakietu „{0}”</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Zainstaluj za pomocą menedżera pakietów...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Zainstaluj pakiet „{0} {1}”</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Zainstaluj wersję „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Generuj zmienną „{0}”</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Klasy</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Stałe</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Delegaci</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Wyliczenia</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Zdarzenia</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Metody rozszerzenia</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Pola</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Interfejsy</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Elementy lokalne</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Metody</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Moduły</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Przestrzenie nazw</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Właściwości</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Struktury</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parametry:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Element SignatureHelpItem ze zmienną liczbą argumentów musi mieć co najmniej jeden parametr.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Zastąp element „{0}” metodą</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Zastąp element „{0}” metodami</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Niejawne odwołanie do właściwości</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Właściwości nie można bezpiecznie zastąpić wywołaniem metody</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Konwertuj na ciąg interpolowany</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Przenieś typ do {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Zmień nazwę pliku na {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Zmień nazwę typu na {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Usuń tag</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Dodaj brakujące węzły parametrów</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Ustaw zawierający zakres jako asynchroniczny</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Ustaw zawierający zakres jako asynchroniczny (zwróć typ Task)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Nieznany)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Użyj typu platformy</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Zainstaluj pakiet „{0}“</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">projekt {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">W pełni kwalifikowany element „{0}”</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Usuń odwołanie do elementu „{0}”.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Słowa kluczowe</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Fragmenty kodu</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Same małe litery</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Same wielkie litery</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Pierwsze słowo wielką literą</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">PascalCase</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Usuń dokument „{0}”</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Dodaj dokument „{0}”</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Dodaj nazwę argumentu „{0}”</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Przyjmij „{0}”</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Przyjmij oba</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Przyjmij dół</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Przyjmij górę</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Usuń nieużywaną zmienną</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Konwertuj na wartość binarną</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Konwertuj na wartość dziesiętną</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Konwertuj na wartość szesnastkową</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Oddziel tysiące</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Oddziel wyrazy</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Oddziel półbajty</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Usuń separatory</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Dodaj parametr do elementu „{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Generuj konstruktor...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Wybierz składowe, które zostaną użyte jako parametry konstruktora</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Wybierz składowe, które zostaną użyte w elementach Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Generuj zastąpienia...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Wybierz składowe do zastąpienia</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Dodaj sprawdzenie wartości null</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Dodaj sprawdzenie elementu „string.IsNullOrEmpty”</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Dodaj sprawdzenie elementu „string.IsNullOrWhiteSpace”</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Inicjuj pole „{0}”</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Inicjuj właściwość „{0}”</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Dodaj sprawdzenia wartości null</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Generuj operatory</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Implementuj {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">Lokalizacja źródłowa zgłoszonych danych diagnostycznych „{0}” znajduje się w pliku „{1}”, który nie jest częścią analizowanej kompilacji.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">Zgłoszone dane diagnostyczne „{0}” mają lokalizację źródłową „{1}” w pliku „{2}”, który jest spoza podanego pliku.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">w {0} (projekt {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Dodaj modyfikatory dostępności</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Przenieś deklarację blisko odwołania</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Konwertuj na pełną właściwość</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Ostrzeżenie: metoda zastępuje symbol z metadanych</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Użyj {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Dodaj nazwę argumentu „{0}” (w tym końcowe argumenty)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">funkcja lokalna</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">indeksator</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Niejednoznaczny typ aliasu „{0}”</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Ostrzeżenie: kolekcja została zmodyfikowana podczas iteracji.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Ostrzeżenie: zmienna iteracji przekroczyła granicę funkcji.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Ostrzeżenie: kolekcja mogła zostać zmodyfikowana podczas iteracji.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">uniwersalna pełna data/godzina</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">Standardowy specyfikator formatu „U” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez właściwość DateTimeFormatInfo.FullDateTimePattern określonej kultury. Wzorzec ten działa tak samo jak wzorzec „F”, jednak wartość DateTime jest automatycznie konwertowana na czas UTC przed formatowaniem.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">uniwersalna sortowalna data/godzina</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">Standardowy specyfikator formatu „u” reprezentuje niestandardowy ciąg formatu daty i godziny zdefiniowany przez właściwość DateTimeFormatInfo.UniversalSortableDateTimePattern. Wzorzec odpowiada zdefiniowanemu standardowi, a właściwość jest tylko do odczytu. Dlatego jest on zawsze taki sam niezależnie od użytej kultury lub określonego dostawcy formatu. Niestandardowy ciąg formatu to „yyyy'-'MM'-'dd HH':'mm':'ss'Z'”. Gdy jest używany ten standardowy specyfikator formatu, operacja formatowania lub analizowania zawsze używa kultury niezmiennej. Mimo że ciąg wyniku powinien wyrażać godzinę za pomocą uniwersalnego czasu koordynowanego (UTC), podczas operacji formatowania nie jest wykonywana żadna konwersja oryginalnej wartości DateTime. Dlatego przed sformatowaniem wartości DateTime należy skonwertować ją na czas UTC za pomocą wywołania metody DateTime.ToUniversalTime.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">aktualizowanie użyć w zawierającym elemencie członkowskim</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">aktualizowanie użyć w projekcie zawierającym</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">aktualizowanie użyć w typie zawierającym</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">aktualizowanie użyć w projektach zależnych</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">przesunięcie godziny i minuty utc</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">W przypadku wartości DateTime niestandardowy specyfikator formatu „zzz” reprezentuje przesunięcie ze znakiem strefy czasowej lokalnego systemu operacyjnego względem czasu UTC wyrażone w godzinach i minutach. Nie uwzględnia on wartości właściwości DateTime.Kind wystąpienia. Z tego powodu nie zaleca się użycia specyfikatora formatu „zzz” z wartościami DateTime. W przypadku wartości DateTimeOffset ten specyfikator formatu reprezentuje przesunięcie wartości DateTimeOffset względem czasu UTC w godzinach i minutach. Przesunięcie jest zawsze wyświetlane ze znakiem wiodącym. Znak plus (+) wskazuje godzinę po czasie UTC, a znak minus (-) wskazuje godzinę przed czasem UTC. Jednocyfrowa wartość przesunięcia jest formatowana przy użyciu wiodącego zera.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">przesunięcie godziny utc (1-2 cyfry)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">W przypadku wartości DateTime niestandardowy specyfikator formatu „z” reprezentuje przesunięcie ze znakiem strefy czasowej lokalnego systemu operacyjnego względem uniwersalnego czasu koordynowanego (UTC) wyrażone w godzinach. Nie uwzględnia on wartości właściwości DateTime.Kind wystąpienia. Z tego powodu nie zaleca się użycia specyfikatora formatu „z” z wartościami DateTime. W przypadku wartości DateTimeOffset ten specyfikator formatu reprezentuje przesunięcie wartości DateTimeOffset względem czasu UTC w godzinach. Przesunięcie jest zawsze wyświetlane ze znakiem wiodącym. Znak plus (+) wskazuje godzinę po czasie UTC, a znak minus (-) wskazuje godzinę przed czasem UTC. Jednocyfrowa wartość przesunięcia jest formatowana przy użyciu wiodącego zera. Jeśli specyfikator formatu „z” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator daty i godziny i powoduje zgłoszenie wyjątku FormatException.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">przesunięcie godziny UTC (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">W przypadku wartości DateTime niestandardowy specyfikator formatu „zz” reprezentuje przesunięcie ze znakiem strefy czasowej lokalnego systemu operacyjnego względem czasu UTC wyrażone w godzinach. Nie uwzględnia on wartości właściwości DateTime.Kind wystąpienia. Z tego powodu nie zaleca się użycia specyfikatora formatu „zz” z wartościami DateTime. W przypadku wartości DateTimeOffset ten specyfikator formatu reprezentuje przesunięcie wartości DateTimeOffset względem czasu UTC w godzinach. Przesunięcie jest zawsze wyświetlane ze znakiem wiodącym. Znak plus (+) wskazuje godzinę po czasie UTC, a znak minus (-) wskazuje godzinę przed czasem UTC. Jednocyfrowa wartość przesunięcia jest formatowana przy użyciu wiodącego zera.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">Zakres [x-y] w odwrotnej kolejności</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">rok (1-2 cyfry)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">Niestandardowy specyfikator formatu „y” reprezentuje rok w postaci liczby składającej się z jednej lub dwóch cyfr. Jeśli rok składa się z więcej niż dwóch cyfr, w wyniku pojawiają się tylko dwie najmniej znaczące cyfry. Jeśli pierwsza cyfra roku dwucyfrowego zaczyna się od zera (na przykład 2008), liczba jest formatowana bez zera wiodącego. Jeśli specyfikator formatu „y” jest używany bez innych niestandardowych specyfikatorów formatu, jest on interpretowany jako standardowy specyfikator formatu daty i godziny „y”.</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">rok (2 cyfry)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">Niestandardowy specyfikator formatu „yy” reprezentuje rok w postaci liczby dwucyfrowej. Jeśli rok składa się z więcej niż dwóch cyfr, w wyniku pojawiają się tylko dwie najmniej znaczące cyfry. Jeśli rok dwucyfrowy ma mniej niż dwie cyfry znaczące, liczba jest uzupełniana zerami wiodącymi w celu uzyskania dwóch cyfr. W ramach operacji analizowania rok dwucyfrowy analizowany przy użyciu niestandardowego specyfikatora formatu „yy” jest interpretowany na podstawie właściwości Calendar.TwoDigitYearMax bieżącego kalendarza dostawcy formatu. Poniższy przykład przedstawia analizowanie reprezentacji ciągu daty, który zawiera rok dwucyfrowy, za pomocą domyślnego kalendarza gregoriańskiego kultury en-US, która w tym przypadku jest kulturą bieżącą. Następnie jest zmieniany obiekt CultureInfo bieżącej kultury, tak aby używał obiektu GregorianCalendar ze zmodyfikowaną właściwością TwoDigitYearMax.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">rok (3-4 cyfry)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">Niestandardowy specyfikator formatu „yyy” reprezentuje rok za pomocą minimalnie 3 cyfr. Jeśli rok ma więcej niż trzy cyfry znaczące, są one uwzględniane w ciągu wyniku. Jeśli rok ma mniej niż trzy cyfry, liczba jest uzupełniana zerami wiodącymi, tak aby otrzymać trzy cyfry.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">rok (4 cyfry)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">Niestandardowy specyfikator formatu „yyyy” reprezentuje rok za pomocą minimalnie 4 cyfr. Jeśli rok ma więcej niż cztery cyfry znaczące, są one uwzględniane w ciągu wyniku. Jeśli rok ma mniej niż cztery cyfry, liczba jest uzupełniana zerami wiodącymi, tak aby otrzymać cztery cyfry.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">rok (5 cyfr)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">Niestandardowy specyfikator formatu „yyyyy” (oraz dowolna liczba dodatkowych specyfikatorów „y”) reprezentuje rok za pomocą minimalnie 5 cyfr. Jeśli rok ma więcej niż pięć cyfr znaczących, są one uwzględniane w ciągu wyniku. Jeśli rok ma mniej niż pięć cyfr, liczba jest uzupełniana zerami wiodącymi, tak aby otrzymać pięć cyfr. Jeśli podano dodatkowe specyfikatory „y”, liczba jest uzupełniana taką liczbą zer wiodących, aby otrzymać liczbę cyfr równą liczbie specyfikatorów „y”.</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">rok miesiąc</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">Standardowy specyfikator formatu „R” lub „r” reprezentuje ciąg niestandardowego formatu daty i godziny, który jest definiowany przez właściwość DateTimeFormatInfo.YearMonthPattern określonej kultury. Na przykład ciąg niestandardowego formatu dla niezmiennej kultury to „rrrr MMMM”.</target> <note /> </trans-unit> </body> </file> </xliff>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/xlf/FeaturesResources.pt-BR.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="pt-BR" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (abreviado)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">O especificador de formato personalizado "t" representa o primeiro caractere do designador AM/PM. O designador localizado apropriado é recuperado da propriedade DateTimeFormatInfo.AMDesignator ou DateTimeFormatInfo.PMDesignator da cultura atual ou específica. O designador AM é usado para todos os horários de 0:00:00 (meia-noite) até 11:59:59.999. O designador PM é usado para todos os horários de 12:00:00 (meio-dia) para 23:59:59.999. Se o especificador de formato "t" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato padrão de data e hora "t".</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (completo)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">O especificador de formato personalizado "tt" (mais qualquer número de especificadores "t" adicionais) representa todo o designador AM/PM. O designador localizado apropriado é recuperado da propriedade DateTimeFormatInfo.AMDesignator ou DateTimeFormatInfo.PMDesignator da cultura atual ou específica. O designador AM é usado para todos os horários de 0:00:00 (meia-noite) até 11:59:59.999. O designador PM é usado para todos os horários de 12:00:00 (meio-dia) até 23:59:59.999. Verifique se o especificador "tt" foi usado para idiomas para os quais é necessário manter a distinção entre AM e PM. Um exemplo é o japonês, para o qual os designadores AM e PM diferem no segundo caractere, em vez de no primeiro caractere.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Uma subtração deve ser o último elemento em uma classe de caracteres</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Adicionar atributo 'DebuggerDisplay'</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Adicionar conversão explícita</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Adicionar o nome do membro</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Adicionar verificações nulas para todos os parâmetros</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Adicionar parâmetro opcional ao construtor</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Adicionar parâmetro ao '{0}' (e substituições/implementações)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Adicionar parâmetro ao construtor</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Adicione referência de projeto a "{0}".</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Adicione referência a "{0}".</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Ações não podem ficar vazias.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Adicionar o nome do elemento de tupla '{0}'</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Alinhar argumentos encapsulados</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Alinhar os parâmetros encapsulados</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Condições de alternância não podem ser comentários</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Condições de alternância não capturam e não podem ser nomeadas</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Aplicar as preferências de cabeçalho de arquivo</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Aplicar as preferências de inicialização de objeto/coleção</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">A tarefa esperada retorna '{0}'</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">A tarefa esperada não retorna nenhum valor</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">As classes base contêm membros não implementados inacessíveis</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Não é possível aplicar as alterações – erro inesperado: '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Não é possível incluir a classe \{0} no intervalo de caracteres</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Os números do grupo de captura devem ser menores ou iguais a Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">O número da captura não pode ser zero</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;inferir&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="new">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;omitir&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Alterar para o namespace global</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Não são permitidas alterações durante uma interrupção em exceção</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">As alterações feitas no projeto '{0}' não serão aplicadas enquanto o aplicativo estiver em execução</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Configurar estilo de código de {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Configurar severidade de {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Configurar gravidade para todos os analisadores '{0}'</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Configurar gravidade para todos os analisadores</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Converter para LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Adicionar para '{0}'</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Converter em classe</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Converter para LINQ (formulário de chamada)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Converter em Registro</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Converter em registro de struct</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Converter para struct</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Converter o tipo em '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Criar e atribuir o campo '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Criar e atribuir a propriedade '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Criar e atribuir os restantes como campos</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Criar e atribuir os restantes como propriedades</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Não altere este código. Coloque o código de limpeza no método '{0}'</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">O conteúdo atual do arquivo de origem '{0}' não corresponde à origem criada. Todas as alterações feitas neste arquivo durante a depuração não serão aplicadas até que o conteúdo corresponda à origem criada.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">O Documento deve estar contido no workspace que criou este serviço</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Editar e Continuar</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Pelo módulo, não é permitido Editar e Continuar</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">As alterações feitas no projeto '{0}' impedirão que a sessão de depuração continue: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">Editar e continuar não é suportado pelo tempo de execução.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Erro ao ler o arquivo '{0}': {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Erro ao criar a instância de CodeFixProvider</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Erro ao criar instância de CodeFixProvider '{0}'</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Exemplo:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Exemplos:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Métodos explicitamente implementados de registros devem ter nomes de parâmetro que correspondem ao compilador gerado '{0}' equivalente</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Extrair a classe base...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Extrair a interface...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Extrair a função local</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Extrair método</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Falha ao analisar o fluxo de dados para: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Corrigir a formatação</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Corrigir erro de digitação '{0}'</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Formatar o documento</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Formatando documento</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Gerar operadores de comparação</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Gerar o construtor em '{0}' (com campos)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Gerar o construtor em '{0}' (com propriedades)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Gerar para '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Gerar o parâmetro '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Gerar o parâmetro '{0}' (e as substituições/implementações)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">\ ilegal no final do padrão</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">{x,y} ilegal com x&gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Implementar '{0}' explicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Implementar '{0}' implicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Implementar classe abstrata</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Implementar todas as interfaces explicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Implementar todas as interfaces implicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Implementar todos os membros explicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Implementar explicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Implementar implicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Implementar os membros restantes explicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Implementar por meio de '{0}'</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Escape de caractere incompleto \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Recuar todos os argumentos</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Recuar todos os parâmetros</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Recuar argumentos encapsulados</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Recuar parâmetros encapsulados</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">Embutir '{0}'</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Embutir e manter '{0}'</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Dígitos hexadecimais insuficientes</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Introduzir a constante</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Introduzir campo</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Introduzir o local</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Introduzir a variável de consulta</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Nome de grupo inválido: nomes de grupos devem começar com um caractere de palavra</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Tornar a classe 'abstract'</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Tornar estático</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Inverter condicional</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">malformado</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Escape de caractere malformado \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Referência inversa \k&lt;...&gt; mal formada</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Mesclar com a instrução '{0}' aninhada</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Mesclar com a próxima instrução '{0}'</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Mesclar com a instrução '{0}' externa</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Mesclar com a instrução '{0}' anterior</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} precisa retornar um fluxo compatível com as operações de leitura e busca.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Caractere de controle ausente</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Mover conteúdo para o namespace...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Mover o arquivo para '{0}'</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Mover o arquivo para a pasta raiz do projeto</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Mover para o namespace...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Quantificador aninhado {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Não há nenhum local válido para inserir a chamada de método.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Não há )'s suficientes</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operadores</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">A referência de propriedade não pode ser atualizada</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Efetuar pull de '{0}'</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Efetue pull de '{0}' até '{1}'</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Efetuar pull de membros até o tipo base...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Efetuar pull de membros até a nova classe base...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Nada precede o quantificador {x,y}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">referência a grupo indefinido</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Referência ao nome do grupo indefinido {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Referência ao grupo número {0} indefinido</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Todos os caracteres de controle. Isso inclui as categorias Cc, Cf, Cs, Co e Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">todos os caracteres de controle</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Todas as marcas diacríticas. Isso inclui as categorias Mn, Mc e Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">todas as marcas diacríticas</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Todos os caracteres de letra. Isso inclui os caracteres Lu, Ll, Lt, Lm e Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">todos os caracteres de letra</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Todos os números. Isso inclui as categorias Nd, Nl e No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">todos os números</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Todos os caracteres de pontuação. Isso inclui as categorias Pc, Pd, Ps, Pe, Pi, Pf e Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">todos os caracteres de pontuação</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Todos os caracteres separadores. Isso inclui as categorias Zs, Zl e Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">todos os caracteres separadores</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Todos os símbolos. Isso inclui as categorias Sm, Sc, Sk e So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">todos os símbolos</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Você pode usar o caractere de barra vertical (|) para corresponder a qualquer uma das séries de padrões, em que o caractere | separa cada padrão.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">alternação</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">O caractere de ponto (.) corresponde a qualquer caractere, exceto \n (o caractere de nova linha, \u000A). Se um padrão de expressão regular for modificado pela opção RegexOptions.Singleline ou se a parte do padrão que contém a classe de caractere . for modificada pela opção 's', . corresponderá a qualquer caractere.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">qualquer caractere</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Grupos atômicos (conhecidos em alguns outros mecanismos de expressão regulares como uma subexpressão sem rastreamento inverso, uma subexpressão atômica ou uma subexpressão de apenas uma vez) desabilita o rastreamento inverso. O mecanismo de expressão regular corresponderá o máximo possível de caracteres em uma cadeia de caracteres de entrada possível. Quando não for mais possível corresponder, ele não fará o rastreamento inverso para tentar alternar as correspondências de padrão. (Ou seja, a subexpressão corresponderá somente às cadeias de caracteres que seriam correspondidas pela subexpressão sozinha. Ela não tentará corresponder a uma cadeia de caracteres com base na subexpressão e nas subexpressões seguintes.) Essa opção é recomendada quando você sabe que o rastreamento inverso não será bem-sucedido. Impedir o mecanismo de expressão regular de executar pesquisas desnecessárias melhora o desempenho.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">grupo atômico</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Corresponde a um caractere de backspace, \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">caractere de backspace</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Uma definição de grupo de balanceamento exclui a definição de um grupo definido anteriormente e armazena, no grupo atual, o intervalo entre o grupo definido anteriormente e o grupo atual. 'name1' é o grupo atual (opcional), 'name2' é um grupo definido anteriormente e 'subexpression' é qualquer padrão de expressão regular válido. A definição de grupo de balanceamento exclui a definição de name2 e armazena o intervalo entre name2 e name1 no name1. Se não for definido nenhum name2, a correspondência retrocederá. Como a exclusão da última definição de name2 revela a definição anterior de name2, esse constructo permite o uso da pilha de capturas para o grupo name2 como um contador para manter o controle de constructos aninhados, como parênteses ou colchetes de abertura e fechamento. A definição de grupo de balanceamento usa 'name2' como uma pilha. O caractere inicial de cada constructo aninhado é colocado no grupo e em sua coleção Group.Captures. Quando o caractere de fechamento é correspondido, seu caractere de abertura correspondente é removido do grupo e a coleção Captures é reduzida em um. Após a correspondência dos caracteres de abertura e fechamento de todas as construções aninhadas, 'name1' ficará vazio.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">grupo de balanceamento</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">grupo base</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Corresponde a um caractere de sino (alarme), \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">caractere de sino</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Corresponde a um caractere de retorno de carro, \u000D. Observe que \r não é equivalente ao caractere de nova linha, \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">caractere de retorno de carro</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">A subtração de classe de caracteres produz um conjunto de caracteres que é o resultado da exclusão de caracteres em uma classe de caracteres de outra classe de caracteres. 'base_group' é um grupo ou intervalo de caracteres positivos ou negativos. O componente 'excluded_group' é outro grupo de caracteres positivos ou negativos ou outra expressão de subtração de classe de caracteres (ou seja, você pode aninhar expressões de subtração de classes de caracteres).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">subtração de classe de caracteres</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">grupo de caracteres</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">comentário</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Este elemento de linguagem tenta corresponder a um de dois padrões, dependendo da possibilidade de correspondência com um padrão inicial. 'expression' é o padrão inicial, 'yes' é o padrão quando a expressão é correspondida e 'no' é o padrão opcional quando a expressão não é correspondida.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">correspondência de expressão condicional</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Este elemento de linguagem tenta corresponder a um de dois padrões, dependendo da correspondência a um grupo de captura especificado. 'name' é o nome (ou número) de um grupo de captura, 'yes' é a expressão a ser correspondida quando 'name' (ou 'number') é correspondido e 'no' é a expressão opcional a ser correspondida caso contrário.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">correspondência de grupo condicional</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">A âncora \G especifica que uma correspondência precisa ocorrer no ponto em que a correspondência anterior foi finalizada. Quando você usa essa âncora com o método Regex.Matchs ou Match.NextMatch, ela garante que todas as correspondências sejam contíguas.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">correspondências contíguas</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Corresponde a um caractere de controle ASCII, em que X é a letra do caractere de controle. Por exemplo, \cC é CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">caractere de controle</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d corresponde a qualquer dígito decimal. Equivale ao padrão de expressão regular \p{Nd}, que inclui os dígitos decimais padrão 0 a 9, bem como os dígitos decimais de vários outros conjuntos de caracteres. Se o comportamento em conformidade com o ECMAScript for especificado, \d será equivalente a [0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">caractere de dígito decimal</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Um sinal de número (#) marca um comentário de modo x, que começa no caractere # sem escape no final do padrão de expressão regular e continua até o fim da linha. Para usar esse constructo, habilite a opção x (por meio de opções embutidas) ou forneça o valor de RegexOptions.IgnorePatternWhitespace para o parâmetro de opção ao criar a instância do objeto Regex ou chamar um método Regex estático.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">comentário de fim da linha</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">A âncora \z especifica que uma correspondência precisa ocorrer no final da cadeia de caracteres de entrada. Como o elemento de linguagem $, \z ignora a opção RegexOptions.Multiline. Ao contrário do elemento de linguagem \Z, \z não corresponde a um caractere \n no final de uma cadeia de caracteres. Portanto, ele só pode corresponder à última linha da cadeia de caracteres de entrada.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">fim da cadeia de caracteres somente</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">A âncora \Z especifica que uma correspondência precisa ocorrer no final da cadeia de caracteres de entrada ou antes de \n no final da cadeia de caracteres de entrada. Ela é idêntica à âncora $, exceto que \Z ignora a opção RegexOptions.Multiline. Portanto, em uma cadeia de caracteres multilinha, ela pode corresponder somente ao final da última linha ou à última linha antes de \n. A âncora \Z corresponde a \n, mas não corresponde à \r\n (à combinação de caracteres CR/LF). Para corresponder a CR/LF, inclua \r?\Z no padrão de expressão regular.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">fim da cadeia de caracteres ou antes do fim da nova linha</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">A âncora $ especifica que o padrão anterior precisa ocorrer no final da cadeia de caracteres de entrada ou antes de \n no final da cadeia de caracteres de entrada. Se você usar $ com a opção RegexOptions.Multiline, a correspondência também poderá ocorrer no final de uma linha. A âncora $ corresponde a \n, mas não corresponde a \r\n (a combinação dos caracteres de retorno de carro e de nova linha ou CR/LF). Para a âncora corresponder à combinação de caracteres CR/LF, inclua \r?$ no padrão de expressão regular.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">fim da cadeia de caracteres ou da linha</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Corresponde a um caractere de escape, \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">caractere de escape</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">grupo excluído</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">expressão</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Corresponde ao caractere de avanço de página, \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">caractere de avanço de página</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Este constructo de agrupamento aplica ou desabilita as opções especificadas dentro de uma subexpressão. As opções a serem habilitadas são especificadas após o ponto de interrogação e as opções a serem desabilitadas, após o sinal de menos. As opções permitidas são: i Usar a correspondência que não diferencia maiúsculas de minúsculas. m Usar o modo multilinha, em que ^ e $ correspondem ao início e ao fim de cada linha (em vez de ao início e ao fim da cadeia de caracteres de entrada). s Usar o modo de linha única, no qual o ponto (.) corresponde a cada caractere (em vez de a cada caractere exceto \n). n Não capturar os grupos sem nome. As únicas capturas válidas são os grupos nomeados ou numerados no formato (?&lt;name&gt; subexpressão). x Excluir o espaço em branco sem escape do padrão e habilitar os comentários após um sinal de número (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">opções de grupo</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Corresponde a um caractere ASCII, em que ## é um código de caractere hexadecimal de dois dígitos.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">escape hexadecimal</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">O constructo (?# comentário) permite incluir um comentário embutido em uma expressão regular. O mecanismo de expressão regular não usa nenhuma parte do comentário na correspondência de padrões, embora o comentário seja incluído na cadeia de caracteres retornada pelo método Regex.ToString. O comentário termina no primeiro parêntese de fechamento.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">comentário embutido</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Habilita ou desabilita as opções de correspondência de padrões específicas para o restante de uma expressão regular. As opções a serem habilitadas são especificadas após o ponto de interrogação e as opções a serem desabilitadas, após o sinal de menos. As opções permitidas são: i Usar a correspondência que não diferencia maiúsculas de minúsculas. m Usar o modo multilinha, no qual ^ e $ correspondem ao início e ao fim de cada linha (em vez do início e do fim da cadeia de caracteres de entrada). s Usar o modo de linha única, no qual o ponto (.) corresponde a cada caractere (em vez de cada caractere exceto \n). n Não capturar grupos sem nome. As únicas capturas válidas são os grupos nomeados ou numerados explicitamente do formato (?&lt;name&gt; subexpressão). x Excluir o espaço em branco sem escape do padrão e habilitar os comentários após um sinal de número (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">opções embutidas</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Problema do Regex: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">letra, minúscula</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">letra, modificador</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">letra, outro</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">letra, inicial maiúscula</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">letra, maiúscula</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">marca, delimitação</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">marca, não espaçamento</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">marca, combinação de espaçamento</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">O quantificador {n,}? corresponde ao elemento precedente pelo menos n vezes, em que n é qualquer inteiro, mas o menor número de vezes possível. Ele é a contraparte lenta do quantificador greedy {n,}</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">corresponder pelo menos 'n' vezes (lento)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">O quantificador {n,} corresponde ao elemento precedente pelo menos n vezes, em que n é qualquer número inteiro. {n,} é um quantificador greedy cujo equivalente lento é {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">corresponder a pelo menos 'n' vezes</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">O quantificador {n,m}? corresponde ao elemento precedente entre n e m vezes, em que n e m são inteiros, mas o menor número de vezes possível. Ele é a contraparte lenta do quantificador greedy {n,m}</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">corresponder pelo menos 'n' vezes (lento)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">O quantificador {n,m} corresponde ao elemento precedente pelo menos n vezes, mas no máximo m vezes, em que n e m são inteiros. {n,m} é um quantificador greedy cujo equivalente lento é {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">corresponder entre 'm' e 'n' vezes</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">O quantificador {n}? corresponde ao elemento precedente exatamente n vezes, em que n é qualquer inteiro. Ele é a contraparte lenta do quantificador greedy {n}+</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">corresponder exatamente 'n' vezes (lento)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">O quantificador {n} corresponde ao elemento precedente exatamente n vezes, em que n é qualquer número inteiro. {n} é um quantificador greedy cujo equivalente lento é {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">corresponder exatamente 'n' vezes</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">O quantificador +? corresponde ao elemento precedente uma ou mais vezes, mas o menor número de vezes possível. Ele é a contraparte lenta do quantificador greedy +</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">corresponder uma ou mais vezes (lento)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">O quantificador + corresponde ao elemento precedente uma ou mais vezes. Ele equivale ao quantificador {1,}. + é um quantificador greedy cujo equivalente lento é +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">corresponder uma ou mais vezes</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">O quantificador *? corresponde ao elemento precedente zero ou mais vezes, mas o menor número de vezes possível. Ele é a contraparte lenta do quantificador greedy *</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">corresponder zero ou mais vezes (lento)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">O quantificador * corresponde ao elemento precedente zero ou mais vezes. Ele equivale ao quantificador {0,}. * é um quantificador greedy cujo equivalente lento é *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">corresponder zero ou mais vezes</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">O quantificador ?? corresponde ao elemento precedente zero ou uma vez, mas o menor número de vezes possível. Ele é a contraparte lenta do quantificador greedy ?</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">corresponder nenhuma ou uma vez (lento)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">O quantificador ? corresponde ao elemento precedente zero ou uma vez. Ele equivale ao quantificador {0,1}. ? é um quantificador greedy cujo equivalente lento é ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">corresponder nenhuma ou uma vez</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Este constructo de agrupamento captura uma 'subexpression' correspondente, em que 'subexpression' é qualquer padrão de expressão regular válido. As capturas que usam parênteses são numeradas automaticamente da esquerda para a direita com base na ordem dos parênteses de abertura na expressão regular, começando com um. A captura numerada como zero é o texto correspondente ao padrão de expressão regular inteiro.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">subexpressão correspondente</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">nome</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">nome ou número</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Uma referência inversa nomeada ou numerada. 'name' é o nome de um grupo de captura definido no padrão de expressão regular.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">referência inversa nomeada</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Captura uma subexpressão correspondida e permite que você a acesse por nome ou número. 'name' é um nome de grupo válido e 'subexpression' é qualquer padrão de expressão regular válido. 'name' não pode conter nenhum caractere de pontuação e não pode começar com um número. Se o parâmetro RegexOptions de um método de correspondência de padrões de expressão regular incluir o sinalizador RegexOptions.ExplicitCapture ou se a opção n for aplicada a essa subexpressão, a única maneira de capturar uma subexpressão será nomear explicitamente os grupos de captura.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">subexpressão de correspondência nomeada</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Um grupo de caracteres negativos especifica uma lista de caracteres que não podem aparecer em uma cadeia de caracteres de entrada para que uma correspondência ocorra. A lista de caracteres é especificada individualmente. Dois ou mais intervalos de caracteres podem ser concatenados. Por exemplo, para especificar o intervalo de dígitos decimais de "0" a "9", o intervalo de letras minúsculas de "a" até "f" e o intervalo de letras maiúsculas de "A" até "F", use [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">grupo de caracteres negativos</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Um intervalo de caracteres negativos especifica uma lista de caracteres que não podem aparecer em uma cadeia de caracteres de entrada para que uma correspondência ocorra. 'firstCharacter' é o caractere que inicia o intervalo e 'lastCharacter' é o caractere que termina o intervalo. Dois ou mais intervalos de caracteres podem ser concatenados. Por exemplo, para especificar o intervalo de dígitos decimais de "0" a "9", o intervalo de letras minúsculas de "a" até "f" e o intervalo de letras maiúsculas de "A" até "F", use [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">intervalo de caracteres negativos</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">O constructo de expressão regular \P{ name } corresponde a qualquer caractere que não pertença a uma categoria Unicode genérica nem a um bloco nomeado, em que o nome seja a abreviação da categoria ou o nome do bloco nomeado.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">categoria unicode negativa</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Corresponde a um caractere de nova linha, \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">caractere de nova linha</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">não</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D corresponde a qualquer caractere que não seja um dígito. Ele equivale ao padrão de expressão regular \p{Nd}. Se o comportamento em conformidade com o ECMAScript for especificado, \D será equivalente a [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">caractere que não é dígito</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S corresponde a qualquer caractere que não seja um espaço em branco. Ele equivale ao padrão de expressão regular [^\f\n\r\t\v\x85\p{Z}] ou ao oposto do padrão de expressão regular equivalente a \s, que corresponde a caracteres de espaço em branco. Se o comportamento em conformidade com o ECMAScript for especificado, \S será equivalente a [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">caractere que não é de espaço em branco</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">A âncora \B especifica que a correspondência não pode ocorrer em um limite de palavra. Ela é o oposto da âncora \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">limite que não é de palavra</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W corresponde a qualquer caractere que não seja uma palavra. Ele corresponde a qualquer caractere, exceto os das categorias Unicode a seguir: Ll Letra, Minúscula Lu Letra, Maiúscula Lt Letra, Inicial Maiúscula Lo Letra, Outro Lm Letra, Modificador Mn Marca, Não Espaçamento Nd Número, Dígito Decimal Pc Pontuação, Conector Se o comportamento em conformidade com o ECMAScript for especificado, \W será equivalente a [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">caractere que não é palavra</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Este constructo não captura a substring correspondida por uma subexpressão: O constructo do grupo que não é de captura geralmente é usado quando um quantificador é aplicado a um grupo, mas as substrings capturadas pelo grupo não são de interesse. Se uma expressão regular inclui constructos de agrupamento aninhado, um constructo externo de grupo de não captura não se aplica aos constructos internos de grupo aninhado.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">grupo que não é de captura</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">número, dígito decimal</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">número, letra</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">número, outro</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Uma referência inversa numerada, em que 'number' é a posição ordinal do grupo de captura na expressão regular. Por exemplo, \4 corresponde ao conteúdo do quarto grupo de captura. Há uma ambiguidade entre os códigos de escape octais (como \16) e as referências inversas \number que usam a mesma notação. Se a ambiguidade causar algum problema, use a notação \k&lt;name&gt;, que não é ambígua e não pode ser confundida com códigos de caracteres octais. Da mesma forma, os códigos hexadecimais como \xdd não são ambíguos e não podem ser confundidos com referências inversas.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">referência inversa numerada</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">outro, controle</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">outro, formato</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">outro, não atribuído</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">outro, uso privado</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">outro, alternativo</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Um grupo de caracteres positivos especifica uma lista de caracteres, em que qualquer um deles pode aparecer em uma cadeia de caracteres de entrada para que uma correspondência ocorra.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">grupo de caracteres positivos</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Um intervalo de caracteres positivos especifica um intervalo de caracteres, em que qualquer um deles pode aparecer em uma cadeia de caracteres de entrada para que uma correspondência ocorra. 'firstCharacter' é o caractere que inicia o intervalo e 'lastCharacter' é o caractere que termina o intervalo. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">intervalo de caracteres positivos</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">pontuação, fechar</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">pontuação, conector</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">pontuação, traço</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">pontuação, aspa final</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">pontuação, aspa inicial</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">pontuação, abrir</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">pontuação, outros</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">separador, linha</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">separador, parágrafo</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">separador, espaço</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">A âncora \A especifica que uma correspondência precisa ocorrer no início da cadeia de caracteres de entrada. Ela é idêntica à âncora ^, exceto que \A ignora a opção RegexOptions.Multiline. Portanto, ela só pode corresponder ao início da primeira linha em uma cadeia de caracteres de entrada multilinha.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">somente início de cadeia de caracteres</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">A âncora ^ especifica que o padrão a seguir precisa começar na primeira posição de caractere da cadeia de caracteres. Se você usar ^ com a opção RegexOptions.Multiline, a correspondência deverá ocorrer no início de cada linha.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">início de cadeia de caracteres ou de linha</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">subexpressão</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">símbolo, moeda</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">símbolo, matemática</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">símbolo, modificador</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">símbolo, outro</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Corresponde a um caractere de tabulação, \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">caractere de tabulação</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">O constructo de expressão regular \p{ name } corresponde a qualquer caractere que pertença a uma categoria genérica Unicode ou a um bloco nomeado, em que o nome seja a abreviação da categoria ou o nome do bloco nomeado.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">categoria unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Corresponde a uma unidade de código UTF-16 cujo valor é o hexadecimal ####.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">escape unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Categoria Geral Unicode: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Corresponde a um caractere de tabulação vertical, \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">caractere de tabulação vertical</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s corresponde a qualquer caractere de espaço em branco. Ele equivale às seguintes sequências de escape e categorias Unicode: \f O caractere de avanço de página, \u000C \n O caractere de nova linha, \u000A \r O caractere de retorno de carro, \u000D \t O caractere de tabulação, \u0009 \v O caractere de tabulação vertical, \u000B \x85 A elipse ou o caractere NEL (NOVA LINHA) (...), \u0085 \p{Z} Corresponde a qualquer caractere separador Se o comportamento em conformidade com o ECMAScript for especificado, \s será equivalente a [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">o caractere de espaço em branco</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">A âncora \b especifica que a correspondência precisa ocorrer em um limite entre um caractere de palavra (o elemento de linguagem \w) e um caractere que não seja de palavra (o elemento de linguagem \W). Os caracteres de palavra consistem em caracteres alfanuméricos e sublinhados; um caractere que não é de palavra é qualquer caractere que não é alfanumérico nem sublinhado. A correspondência também pode ocorrer em um limite de palavra no início ou no fim da cadeia de caracteres. A âncora \b é usada geralmente para garantir que uma subexpressão corresponda a uma palavra inteira em vez de apenas ao início ou ao fim de uma palavra.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">limite de palavra</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w corresponde a qualquer caractere de palavra. Um caractere de palavra é membro de qualquer uma das seguintes categorias Unicode: Ll Letra, Minúscula Lu Letra, Maiúscula Lt Letra, Inicial Maiúscula Lo Letra, Outro Lm Letra, Modificador Mn Marca, Não Espaçamento Nd Número, Dígito Decimal Pc Pontuação, Conector Se o comportamento em conformidade com o ECMAScript for especificado, \w será equivalente a [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">caractere de palavra</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">sim</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Uma asserção lookahead negativa de largura zero, em que, para que a correspondência seja bem-sucedida, a cadeia de caracteres de entrada não pode corresponder ao padrão de expressão regular na subexpressão. A cadeia de caracteres correspondente não está incluída no resultado correspondente. Uma asserção lookahead negativa de largura zero normalmente é usada no início ou no final de uma expressão regular. No início de uma expressão regular, ela pode definir um padrão específico que não deve ser correspondido quando o início da expressão regular define um padrão semelhante, mas mais geral, a ser correspondido. Nesse caso, ela geralmente é usada para limitar o rastreamento inverso. No final de uma expressão regular, ela pode definir uma subexpressão que não pode ocorrer no final de uma correspondência.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">asserção lookahead negativa de largura zero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Uma asserção lookbehind negativa de largura zero, em que, para que uma correspondência seja bem-sucedida, a 'subexpression' não pode ocorrer na cadeia de caracteres de entrada à esquerda da posição atual. As substrings que não corresponderem à 'subexpression' não serão incluídas no resultado correspondente. As declarações de lookbehind negativas de largura zero normalmente são usadas no início de expressões regulares. O padrão que elas definem impede uma correspondência na cadeia de caracteres seguinte. Elas também são usadas para limitar o rastreamento inverso quando o último caractere ou caracteres em um grupo capturado não pode ser um ou mais dos caracteres que correspondem ao padrão dessa expressão regular do grupo.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">asserção lookbehind negativa de largura zero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Uma asserção lookahead positiva de largura zero, em que para que uma correspondência seja bem-sucedida, a cadeia de caracteres de entrada precisa corresponder ao padrão de expressão regular na 'subexpression'. A substring correspondente não é incluída no resultado correspondente. Uma asserção lookahead positiva de largura zero não retrocede. Normalmente, uma asserção lookahead positiva de largura zero é encontrada no final de um padrão de expressão regular. Ela define uma substring que precisa ser encontrada no final de uma cadeia de caracteres para que uma correspondência ocorra, mas que não deve ser incluída na correspondência. Ela também é útil para impedir o rastreamento inverso excessivo. Você pode usar uma asserção lookahead positiva de largura zero para garantir que um determinado grupo capturado comece com um texto que corresponda a um subconjunto do padrão definido para esse grupo capturado.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">asserção lookahead positiva de largura zero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Uma asserção lookbehind positiva de largura zero, em que, para que uma correspondência seja bem-sucedida, a 'subexpression' precisa ocorrer na cadeia de caracteres de entrada à esquerda da posição atual. A 'subexpression' não é incluída no resultado correspondente. Uma asserção lookbehind positiva de largura zero não retrocede. As declarações de lookbehind positivas de largura zero normalmente são usadas no início de expressões regulares. O padrão que elas definem é uma pré-condição para uma correspondência, apesar de não fazer parte do resultado correspondente.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">asserção lookbehind positiva de largura zero</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">As assinaturas de método relacionadas encontradas nos metadados não serão atualizadas.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Não há suporte para a remoção do documento</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Remover o modificador 'async'</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Remover conversões desnecessárias</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Remover variáveis não utilizadas</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Substituir '{0}' por '{1}'</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Resolver marcadores de conflitos</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Edição rudimentar</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Classificar modificadores de acessibilidade</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Dividir em instruções '{0}' consecutivas</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Dividir em instruções '{0}' aninhadas</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">O fluxo deve fornecer suporte a operações de leitura e busca.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Suprimir {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="new">TODO: free unmanaged resources (unmanaged objects) and override finalizer</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="new">TODO: override finalizer only if '{0}' has code to free unmanaged resources</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Correspondências de tipos de destino</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">O assembly '{0}' contendo o tipo '{1}' referencia o .NET Framework, mas não há suporte para isso.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">A seleção contém uma chamada de função local sem sua declaração.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Muitos | em (?()|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Muitos )'s</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Não é possível ler o arquivo de origem '{0}' ou o PDB criado para o projeto que o contém. Todas as alterações feitas neste arquivo durante a depuração não serão aplicadas até que o conteúdo corresponda ao código-fonte compilado.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Propriedade desconhecida</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Propriedade desconhecida '{0}'</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Caractere de controle não reconhecido</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Sequência de escape não reconhecida \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Constructo de agrupamento não reconhecida</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Conjunto [] não finalizado</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Comentário (?#...) não finalizado</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Desencapsular todos os argumentos</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Desencapsular todos os parâmetros</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Desencapsular e recuar todos os argumentos</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Desencapsular e recuar todos os parâmetros</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Desencapsular a lista de argumentos</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Desencapsular cadeia de chamadas</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Desencapsular a expressão</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Desencapsular a lista de parâmetros</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Usar o corpo do bloco para expressões lambda</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Usar corpo da expressão para expressões lambda</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Usar cadeia de caracteres verbatim interpolada</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Valor:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Aviso: a semântica pode ser alterada ao converter a instrução.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Encapsular e alinhar cadeia de chamadas</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Quebrar e alinhar expressão</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Encapsular e alinhar cadeia longa de chamadas</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Encapsular cadeia de chamadas</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Encapsular cada argumento</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Encapsular cada parâmetro</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Encapsular a expressão</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Encapsular a lista de argumentos longa</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Encapsular cadeia longa de chamadas</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Encapsular a lista de parâmetros longa</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Quebra de linha</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Você pode usar a barra de navegação para mudar de contexto.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}' não pode ser nulo nem vazio.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}' não pode ser nulo nem espaço em branco.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">'{0}' não é nulo aqui.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">'{0}' pode ser nulo aqui.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">Dez milionésimos de um segundo</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "fffffff" representa os sete dígitos mais significativos da fração de segundos. Ou seja, representa os dez milionésimos de segundo em um valor de data e hora. Embora seja possível exibir os dez milionésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">Dez milionésimos de um segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "FFFFFFF" representa os sete dígitos mais significativos da fração de segundos. Ou seja, representa os dez milionésimos de segundo em um valor de data e hora. No entanto, zeros à direita ou sete dígitos de zero não são exibidos. Embora seja possível exibir os dez milionésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">Milionésimos de um segundo</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "FFFFFF" representa os seis dígitos mais significativos da fração de segundos. Ou seja, ele representa os milionésimos de segundo em um valor de data e hora. Embora seja possível exibir os milionésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">Milionésimos de um segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "FFFFFF" representa os seis dígitos mais significativos da fração de segundos. Ou seja, ele representa os milionésimos de segundo em um valor de data e hora. No entanto, zeros à direita ou seis dígitos de zero não são exibidos. Embora seja possível exibir os milionésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">Cem milésimos de um segundo</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "fffff" representa os cinco dígitos mais significativos da fração de segundos. Ou seja, representa as centenas de milésimos de segundo em um valor de data e hora. Embora seja possível exibir as centenas de milésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">Cem milésimos de um segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "FFFFF" representa os cinco dígitos mais significativos da fração de segundos. Ou seja, representa as centenas de milésimos de segundo em um valor de data e hora. No entanto, zeros à direita ou cinco dígitos de zero não são exibidos. Embora seja possível exibir as centenas de milésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">Dez milésimos de um segundo</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "ffff" representa os quatro dígitos mais significativos da fração de segundos. Ou seja, representa os dez milésimos de segundo em um valor de data e hora. Embora seja possível exibir os dez milésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT versão 3.5 (e posterior) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">Dez milésimos de um segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "FFFF" representa os quatro dígitos mais significativos da fração de segundos. Ou seja, representa os dez milésimos de segundo em um valor de data e hora. No entanto, zeros à direita ou quatro dígitos de zero não são exibidos. Embora seja possível exibir os dez milésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">Milésimos de um segundo</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">O especificador de formato personalizado "fff" representa os três dígitos mais significativos da fração de segundos. Ou seja, ele representa os milissegundos em um valor de data e hora.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">Milésimos de um segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">O especificador de formato personalizado "FFF" representa os três dígitos mais significativos da fração de segundos. Ou seja, ele representa os milissegundos em um valor de data e hora. No entanto, zeros à direita ou três dígitos de zero não são exibidos.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">Centésimos de um segundo</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">O especificador de formato personalizado "ff" representa os dois dígitos mais significativos da fração de segundos. Ou seja, ele representa os centésimos de segundo em um valor de data e hora.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">Centésimos de segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">O especificador de formato personalizado "FF" representa os dois dígitos mais significativos da fração de segundos. Ou seja, ele representa os centésimos de segundo em um valor de data e hora. No entanto, zeros à direita ou dois dígitos de zero não são exibidos.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">Décimos de segundo</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">Décimos de segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">O especificador de formato personalizado "F" representa o dígito mais significativo da fração de segundos; ou seja, ele representa os décimos de segundo em um valor de data e hora. Nada será exibido se o dígito for zero. Se o especificador de formato "F" for usado sem outros especificadores de formato, ele será interpretado como o especificador de formato padrão de data e hora "F". O número de especificadores de formato "F" usados com o método ParseExact, TryParseExact, ParseExact ou TryParseExact indica o número máximo de dígitos significativos da fração de segundos que podem estar presentes para analisar a cadeia de caracteres com êxito.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">Relógio de 12 horas (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">O especificador de formato personalizado "h" representa a hora como um número de 1 a 12. Ou seja, a hora é representada por um relógio de 12 horas que conta todas as horas desde a meia-noite ou o meio-dia. Uma determinada hora após a meia-noite é indistinguível da mesma hora após o meio-dia. A hora não é arredondada e uma hora de dígito único é formatada sem um zero à esquerda. Por exemplo, dado um horário de 5:43 na manhã ou à tarde, este especificador de formato personalizado exibe "5". Se o especificador de formato "h" for usado sem outros especificadores de formato personalizado, ele será interpretado como um especificador de formato padrão de data e hora e gerará uma FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">Relógio de 12 horas (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">O especificador de formato personalizado "hh" (mais qualquer número de especificadores "h" adicionais) representa a hora como um número de 01 a 12. Ou seja, a hora é representada por um relógio de 12 horas que conta todas as horas desde a meia-noite ou o meio-dia. Uma determinada hora após a meia-noite é indistinguível da mesma hora após o meio-dia. A hora não é arredondada e uma hora de dígito único é formatada com um zero à esquerda. Por exemplo, dado um horário de 5:43 na manhã ou à tarde, esse especificador de formato exibe "05".</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">Relógio de 24 horas (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">O especificador de formato personalizado "H" representa a hora como um número de 0 a 23. Ou seja, a hora é representada por um relógio de 24 horas com base em zero que conta as horas desde a meia-noite. Uma hora de dígito único é formatada sem um zero à esquerda. Se o especificador de formato "H" for usado sem outros especificadores de formato personalizado, ele será interpretado como um especificador de formato padrão de data e hora e gerará uma FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">Relógio de 24 horas (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">O especificador de formato personalizado "HH" (mais qualquer número de especificadores "H" adicionais) representa a hora como um número de 00 a 23. Ou seja, a hora é representada por um relógio de 24 horas com base em zero que conta as horas desde a meia-noite. Uma hora de dígito único é formatada com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">código</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">separador de data</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">O especificador de formato personalizado "/" representa o separador de data, que é usado para diferenciar anos, meses e dias. O separador de data localizado apropriado é recuperado da propriedade DateTimeFormatInfo.DateSeparator da cultura atual ou especificada. Observação: para alterar o separador de data de uma determinada cadeia de caracteres de data e hora, especifique o caractere separador em um delimitador de cadeia de caracteres literal. Por exemplo, a cadeia de caracteres de formato personalizado mm'/'dd'/'yyyy produz uma cadeia de resultado na qual "/" é sempre usado como separador de data. Para alterar o separador de data para todas as datas para uma cultura, altere o valor da propriedade DateTimeFormatInfo.DateSeparator da cultura atual ou crie uma instância de um objeto DateTimeFormatInfo, atribua o caractere à sua propriedade DateSeparator e chame uma sobrecarga do método de formatação que inclui um parâmetro IFormatProvider. Se o especificador de formato "/" for usado sem outros especificadores de formato personalizado, ele será interpretado como um especificador de formato padrão de data e hora e gerará uma FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">dia do mês (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">O especificador de formato personalizado "d" representa o dia do mês como um número de 1 a 31. Um dia de dígito único é formatado sem um zero à esquerda. Se o especificador de formato "d" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato padrão de data e hora "d".</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">dia do mês (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">A cadeia de caracteres de formato personalizado "dd" representa o dia do mês como um número de 01 a 31. Um dia de dígito único é formatado com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">dia da semana (abreviado)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">O especificador de formato personalizado "ddd" representa o nome abreviado do dia da semana. O nome abreviado localizado do dia da semana é recuperado da propriedade DateTimeFormatInfo.AbbreviatedDayNames da cultura atual ou especificada.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">dia da semana (completo)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">O especificador de formato personalizado "dddd" (mais qualquer número de especificadores "d" adicionais) representa o nome completo do dia da semana. O nome localizado do dia da semana é recuperado da propriedade DateTimeFormatInfo.DayNames da cultura atual ou especificada.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">discard</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">de metadados</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">data/hora completa por extenso</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">O especificador de formato padrão "F" representa uma cadeia de caracteres de formato de data e hora personalizada que é definida pela propriedade DateTimeFormatInfo. FullDateTimePattern atual. Por exemplo, a cadeia de caracteres de formato personalizado para a cultura invariável é "dddd, dd MMMM yyyy HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">data/hora abreviada por extenso</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">O Especificador de Formato de Data por Extenso Hora Abreviada ("f") O especificador de formato padrão "f" representa uma combinação de padrões de data por extenso ("D") e tempo abreviado ("t"), separados por um espaço.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">data/hora geral por extenso</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">O especificador de formato padrão "G" representa uma combinação dos padrões de data abreviada ("d") e hora por extenso ("T"), separados por um espaço.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">data/hora abreviada geral</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">O especificador de formato padrão "g" representa uma combinação dos padrões de data abreviada ("d") e hora abreviada ("t"), separados por um espaço.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">sobrecarga genérica</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">sobrecargas genéricas</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">em {0} ({1} – {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">na Origem (atributo)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">data completa</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">O especificador de formato padrão "D" representa uma cadeia de caracteres de formato de data e hora personalizada que é definida pela propriedade DateTimeFormatInfo.LongDatePattern atual. Por exemplo, a cadeia de caracteres de formato personalizado para a cultura invariável é "dddd, dd MMMM yyyy".</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">hora completa</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">O especificador de formato padrão "T" representa uma cadeia de caracteres de formato personalizado de data e hora que é definida pela propriedade DateTimeFormatInfo.LongTimePattern de uma cultura específica. Por exemplo, a cadeia de caracteres de formato personalizado para a cultura invariável é "HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">minuto (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">O especificador de formato personalizado "m" representa o minuto como um número de 0 a 59. O minuto representa minutos inteiros que passaram desde a última hora. Um minuto de dígito único é formatado sem um zero à esquerda. Se o especificador de formato "m" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato padrão de data e hora "m".</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">minuto (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">O especificador de formato personalizado "mm" (mais qualquer número de especificadores "m" adicionais) representa o minuto como um número de 00 a 59. O minuto representa minutos inteiros que passaram desde a última hora. Um minuto de dígito único é formatado com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">mês (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">O especificador de formato personalizado "M" representa o mês como um número de 1 a 12 (ou de 1 a 13 para calendários com 13 meses). Um mês de dígito único é formatado sem um zero à esquerda. Se o especificador de formato "M" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato padrão de data e hora "M".</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">mês (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">O especificador de formato personalizado "MM" representa o mês como um número de 01 a 12 (ou de 1 a 13 para calendários com 13 meses). Um mês de dígito único é formatado com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">mês (abreviado)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">O especificador de formato personalizado "MMM" representa o nome abreviado do mês. O nome abreviado localizado do mês é recuperado da propriedade DateTimeFormatInfo.AbbreviatedMonthNames da cultura atual ou especificada.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">dia do mês</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">O especificador de formato padrão "M" ou "m" representa uma cadeia de caracteres de formato personalizado de data e hora definida pela propriedade DateTimeFormatInfo.MonthDayPattern atual. Por exemplo, a cadeia de caracteres de formato personalizado para a cultura invariável é "MMMM dd".</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">mês (completo)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">O especificador de formato personalizado "MMMM" representa o nome completo do mês. O nome localizado do mês é recuperado da propriedade DateTimeFormatInfo.MonthNames da cultura atual ou especificada.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">sobrecarga</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">sobrecargas</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} Palavra-chave</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Encapsular campo: "{0}" (e usar propriedade)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Encapsular campo: "{0}" (mas ainda usar o campo)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Encapsular campos (e usar propriedade)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Encapsular campos (mas ainda usá-los)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Não foi possível extrair interface: a seleção não está dentro de uma classe/interface/struct.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Não foi possível extrair interface: O tipo não contém membros que podem ser extraídos para uma interface.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">não é possível construir a árvore final</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Tipo dos parâmetros ou tipo de retorno não pode ser um tipo anônimo: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">A seleção não contém instrução ativa.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">A seleção contém um erro ou tipo desconhecido.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Parâmetro de tipo "{0}" está oculto por outro parâmetro de tipo "{1}".</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">O endereço de uma variável é usado dentro do código selecionado.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">A atribuição a campos somente leitura deve ser feita em um construtor: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">o código gerado se sobrepõe à porção oculta do código</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Adicionar parâmetros opcionais ao '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Adicionar parâmetros ao '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Gerar construtor delegante "{0}({1})"</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Gerar construtor "{0}({1})"</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Gerar construtor de atribuição de campo "{0}({1})"</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Gerar Equals e GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Gerar Equals(object)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Gerar GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Gerar construtor em '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Gerar todos</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Gerar membro enum '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Gerar constante '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Gerar propriedade somente leitura '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Gerar propriedade '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Gerar campo somente leitura '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Gerar campo '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Gerar local '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Gerar {0} '{1}' no novo arquivo</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Gerar {0} '{1}' aninhado</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Namespace Global</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Implementar interface de forma abstrata</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Implementar interface por meio de "{0}"</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Implementar a interface</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Encapsular campo para "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Introduzir local para "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Introduzir constante para "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Introduzir constante local para "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Introduzir campo para todas as ocorrências de "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Introduzir local para todas as ocorrências de "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Introduzir constante para todas as ocorrências de "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Introduzir constante de local para todas as ocorrências de "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Introduzir variável de consulta para todas as ocorrências de "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Introduzir variável de consulta para "{0}"</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Tipos Anônimos:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">é</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Representa um objeto cujas operações serão resolvidas no tempo de execução.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">constante</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">Campo</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">constante local</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">variável local</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">Rótulo</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">período/era</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Os especificadores de formato personalizado "g" ou "gg" (mais qualquer número de especificadores "g" adicionais) representam o período ou a era, como D.C. A operação de formatação ignorará o especificador se a data a ser formatada não tiver um período associado ou uma cadeia de caracteres de era. Se o especificador de formato "g" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato padrão de data e hora "g".</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">variável de intervalo</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">parâmetro</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">Em</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Resumo:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Locais e parâmetros</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Parâmetros de Tipo:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Devoluções:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Exceções:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Comentários:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">gerar fonte para símbolos deste tipo não é suportado</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">assembly</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">local desconhecido</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Tipo de membro de interface inesperado: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Tipo de símbolo desconhecido</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Gerar propriedade abstrata '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Gerar método abstrato '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Gerar método '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">Assembly solicitado já carregado de "{0}".</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">O símbolo não tem um ícone.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Método assíncrono não pode ter parâmetros ref/out: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">O membro é definido em metadados.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Você só pode alterar a assinatura de um construtor, indexador, método ou delegate.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Este símbolo possui definições relacionadas ou referências nos metadados. Alterar sua assinatura pode resultar em erros de compilação. Deseja continuar?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Alterar assinatura...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Gerar novo tipo...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Falha do Analisador de Diagnóstico do Usuário.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">O analisador '{0}' gerou uma exceção do tipo '{1}' com a mensagem '{2}'.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">O analisador '{0}' gerou a seguinte exceção: '{1}'.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Simplificar Nomes</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Simplificar o Acesso de Membro</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Remover qualificação</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Erro desconhecido</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Disponível</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Não Disponível ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">na Fonte</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">no Arquivo de Supressão</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Remover a Supressão {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Remover Supressão</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;Pendente&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Observação: pressione Tab duas vezes para inserir o snippet '{0}'.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Implementar interface explicitamente com Padrão de descarte</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Implementar interface com Padrão de descarte</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Fazer nova triagem de {0}(no momento, "{1}")</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">O argumento não pode ter um elemento nulo.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">O argumento não pode estar vazio.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">O analisador não dá suporte ao diagnóstico relatado com ID '{0}'.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Computando a correção de todas as correções de código de ocorrências…</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Corrigir todas as ocorrências</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Documento</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Projeto</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Solução</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="new">TODO: dispose managed state (managed objects)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="new">TODO: set large fields to null</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Compilador</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">Ao Vivo</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">valor de enum</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">campo const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">método</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">Operador</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">construtor</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">propriedade automática</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">propriedade</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">acessador de evento</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">data/hora rfc1123</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">O especificador de formato padrão "R" ou "r" representa uma cadeia de caracteres de formato de data e hora personalizado definida pela propriedade DateTimeFormatInfo.RFC1123Pattern. O padrão reflete um padrão definido e a propriedade é somente leitura. Portanto, é sempre o mesmo, independentemente da cultura usada ou do provedor de formato fornecido. A cadeia de caracteres de formato personalizado é "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". Quando esse especificador de formato padrão é usado, a operação de análise ou formatação sempre usa a cultura invariável.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">data/hora de viagem de ida e volta</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">O especificador de formato padrão "O" ou "o" representa uma cadeia de caracteres de formato de data e hora personalizado usando um padrão que preserva as informações de fuso horário e emite uma cadeia de resultado que está em conformidade com o ISO 8601. Para valores DateTime, esse especificador de formato é projetado para preservar valores de data e hora juntamente com a propriedade DateTime.Kind no texto. A cadeia de caracteres formatada poderá ser analisada novamente usando o método DateTime.Parse (String, IFormatProvider, DateTimeStyles) ou DateTime.ParseExact se o parâmetro styles estiver definido como DateTimeStyles.RoundtripKind. O especificador de formato padrão "O" ou "o" corresponde à cadeia de caracteres de formato personalizado "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" para valores DateTime e à cadeia de caracteres de formato personalizado "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" para valores de DateTimeOffset. Nessa cadeia de caracteres, os pares de aspas simples que delimitam caracteres individuais, como hifens, dois-pontos e a letra "T", indicam que o caractere individual é um literal que não pode ser alterado. Os apóstrofos não aparecem na cadeia de caracteres de saída. O especificador de formato padrão "O" ou "o" (e a cadeia de caracteres de formato personalizado "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK") aproveita as três maneiras pelas quais o ISO 8601 representa as informações de fuso horário para preservar a propriedade Kind dos valores DateTime: O componente de fuso horário de DateTimeKind.Local dos valores de data e hora é uma diferença do UTC (por exemplo, +01:00, -07:00). Todos os valores de DateTimeOffset também são representados nesse formato. O componente de fuso horário de DateTimeKind.Utc dos valores de data e hora usa "Z" (que significa diferença zero) para representar o UTC. Os valores de data e hora de DateTimeKind.Unspecified não especificados não têm informações de fuso horário. Como o especificador de formato padrão "O" ou "o" está em conformidade com um padrão internacional, a operação de formatação ou análise que usa o especificador sempre usa a cultura invariável e o calendário gregoriano. As cadeias de caracteres que são passadas para os métodos Parse, TryParse, ParseExact e TryParseExact de DateTime e DateTimeOffset podem ser analisadas usando o especificador de formato "O" ou "o" caso elas estejam em um desses formatos. No caso de objetos DateTime, a sobrecarga de análise que você chama também deve incluir um parâmetro styles com um valor de DateTimeStyles.RoundtripKind. Observe que, se você chamar um método de análise com a cadeia de caracteres de formato personalizado que corresponde ao especificador de formato "O" ou "o", você não obterá os mesmos resultados de "O" ou "o". Isso porque os métodos de análise que usam uma cadeia de caracteres de formato personalizado não podem analisar a representação de cadeia de caracteres dos valores de data e hora que não têm um componente de fuso horário ou usar "Z" para indicar o UTC.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">segundo (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">O especificador de formato personalizado "s" representa os segundos como um número de 0 a 59. O resultado representa segundos inteiros que passaram desde o último minuto. Um segundo de dígito único é formatado sem um zero à esquerda. Se o especificador de formato "s" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato de data e hora padrão "s".</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">segundo (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">O especificador de formato personalizado "ss" (mais qualquer número de especificadores "s" adicionais) representa os segundos como um número de 00 a 59. O resultado representa segundos inteiros que passaram desde o último minuto. Um segundo de dígito único é formatado com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">data abreviada</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">O especificador de formato padrão "d" representa uma cadeia de caracteres de formato personalizado de data e hora que é definida pela propriedade DateTimeFormatInfo.ShortDatePattern de uma cultura específica. Por exemplo, a cadeia de caracteres de formato personalizado retornada pela propriedade ShortDatePattern da cultura invariável é "MM/dd/yyyy".</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">hora abreviada</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">O especificador de formato padrão "t" representa uma cadeia de caracteres de formato de data e hora personalizada que é definida pela propriedade DateTimeFormatInfo.ShortTimePattern atual. Por exemplo, a cadeia de caracteres de formato personalizado para a cultura invariável é "HH:mm".</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">data/hora classificável</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">O especificador de formato padrão "s" representa uma cadeia de caracteres de formato personalizado de data e hora que é definida pela propriedade DateTimeFormatInfo.SortableDateTimePattern. O padrão reflete um padrão definido (ISO 8601) e a propriedade é somente leitura. Portanto, é sempre o mesmo, independentemente da cultura usada ou do provedor de formato fornecido. A cadeia de caracteres de formato personalizado é "yyyy'-'MM'-'dd'T'HH':'mm':'ss". O objetivo do especificador de formato "s" é produzir cadeias de caracteres de resultado que são classificadas consistentemente em ordem crescente ou decrescente com base nos valores de data e hora. Como resultado, embora o especificador de formato padrão "s" represente um valor de data e hora em um formato consistente, a operação de formatação não modifica o valor do objeto de data e hora que está sendo formatado para refletir sua propriedade DateTime.Kind ou seu valor DateTimeOffset.Offset. Por exemplo, as cadeias de caracteres de resultado produzidas pela formatação dos valores de data e hora 2014-11-15T18:32:17+00:00 e 2014-11-15T18:32:17+08:00 são idênticas. Quando esse especificador de formato padrão é usado, a operação de análise ou formatação sempre usa a cultura invariável.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">construtor estático</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">"símbolo" não pode ser um namespace.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">separador de hora</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">O especificador de formato personalizado ":" representa o separador de hora, que é usado para diferenciar horas, minutos e segundos. O separador de hora localizado apropriado é recuperado da propriedade DateTimeFormatInfo.TimeSeparator da cultura atual ou especificada. Observação: para alterar o separador de hora de uma determinada cadeia de caracteres de data e hora, especifique o caractere separador em um delimitador de cadeia de caracteres literal. Por exemplo, a cadeia de caracteres de formato personalizado hh'_'dd'_'ss produz uma cadeia de caracteres de resultado na qual "_" (um sublinhado) é sempre usado como o separador de hora. Para alterar o separador de hora para todas as datas para uma cultura, altere o valor da propriedade DateTimeFormatInfo.TimeSeparator da cultura atual ou crie uma instância de um objeto DateTimeFormatInfo, atribua o caractere à propriedade TimeSeparator e chame uma sobrecarga do método de formatação que inclui um parâmetro IFormatProvider. Se o especificador de formato ":" for usado sem outros especificadores de formato personalizado, ele será interpretado como um especificador de formato padrão de data e hora e gerará uma FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">fuso horário</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">O especificador de formato personalizado "K" representa as informações de fuso horário de um valor de data e hora. Quando esse especificador de formato é usado com valores DateTime, a cadeia de caracteres de resultado é definida pelo valor da propriedade DateTime.Kind: Para o fuso horário local (um valor da propriedade DateTime.Kind de DateTimeKind.Local), este especificador é equivalente ao especificador "zzz" e produz uma cadeia de caracteres de resultado contendo o deslocamento local do UTC (Tempo Universal Coordenado); por exemplo, "-07:00". Para uma hora UTC (um valor de propriedade DateTime.Kind de DateTimeKind.Utc), a cadeia de caracteres de resultado inclui um caractere "Z" para representar uma data UTC. Para um horário de um fuso horário não especificado (uma hora cuja propriedade DateTime.Kind seja igual a DateTimeKind.Unspecified), o resultado é equivalente a String.Empty. Para os valores de DateTimeOffset, o especificador de formato "K" é equivalente ao especificador de formato "zzz" e produz uma cadeia de caracteres de resultado contendo o deslocamento do valor de DateTimeOffset do UTC. Se o especificador de formato "K" for usado sem outros especificadores de formato personalizado, ele será interpretado como um especificador de formato padrão de data e hora e gerará uma FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">restrição de tipo</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">parâmetro de tipo</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">atributo</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Substituir "{0}" e "{1}" por propriedades</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Substituir "{0}" por uma propriedade</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Método referenciado implicitamente</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Gerar tipo '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Gerar {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Alterar '{0}' para '{1}'.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">O método não invocado não pode ser substituído por uma propriedade.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Somente os métodos com um único argumento, que não é uma declaração de variável externa, podem ser substituídos por uma propriedade.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Uma instância do analisador de {0} não pode ser criada de {1} : {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">O assembly {0} não contém quaisquer analisadores.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Não é possível carregar o assembly do Analisador {0} : {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Tornar o método síncrono</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">de {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Localizar e instalar a versão mais recente</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Usar a versão local '{0}'</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Use a versão '{0}' instalada localmente '{1}' Essa versão é usada no: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Localizar e instalar a versão mais recente de '{0}'</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Instalar com o gerenciador de pacotes...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Instalar '{0} {1}'</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Instalar a versão '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Gerar variável '{0}'</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Classes</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Constantes</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Delega</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Enums</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Eventos</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Métodos de extensão</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Campos</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Interfaces</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Locais</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Métodos</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Módulos</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Namespaces</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Propriedades</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Estruturas</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parâmetros:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Variadic SignatureHelpItem deve ter pelo menos um parâmetro.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Substituir '{0}' com método</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Substituir '{0}' com métodos</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Propriedade referenciada implicitamente</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">A propriedade não pode ser substituída com segurança com uma chamada de método</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Converter para cadeia de caracteres interpolada</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Mover tipo para {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Renomear arquivo para {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Renomear tipo para {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Remover tag</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Adicionar nós de parâmetro ausentes</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Tornar o escopo contentor assíncrono</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Tornar o escopo contentor assíncrono (retornar Task)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Desconhecido)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Usar o tipo de estrutura</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Instalar o pacote '{0}'</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">projeto {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">Qualificar '{0}' totalmente</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Remova a referência a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Palavras-chave</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Snippets</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Tudo em minúsculas</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Tudo em maiúsculas</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Primeira palavra em maiúsculas</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Pascal Case</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Remover documento '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Adicionar documento '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Adicionar nome de argumento '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Obter '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Obter ambos</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Obter inferior</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Obter superior</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Remover variável não usada</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Converter em binário</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Converter em decimal</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Converter para hexa</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Separar milhares</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Separar palavras</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Separar nibbles</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Remover separadores</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Adicionar parâmetro ao '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Gerar construtor...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Escolher membros para que sejam usados como parâmetros do construtor</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Escolher membros para que sejam usados em Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Gerar substituições...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Escolher membros para substituir</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Adicionar verificação nula</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Adicionar a verificação 'string.IsNullOrEmpty'</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Adicionar a verificação 'string.IsNullOrWhiteSpace'</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Inicializar campo '{0}'</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Inicializar propriedade '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Adicionar verificações nulas</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Gerar operadores</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Implementar {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">O diagnóstico relatado '{0}' tem um local de origem no arquivo '{1}', que não faz parte da compilação sendo analisada.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">O diagnóstico relatado '{0}' tem um local de origem '{1}' no arquivo '{2}', que está fora do arquivo fornecido.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">em {0} (projeto {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Adicionar modificadores de acessibilidade</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Mover declaração para próximo da referência</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Converter em propriedade completa</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Aviso: o método substitui o símbolo de metadados</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Usar {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Adicionar nome de argumento '{0}' (incluindo argumentos à direita)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">função local</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">indexador</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Tipo de alias ambíguo '{0}'</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Aviso: a coleção foi modificada durante a iteração.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Aviso: a variável de iteração passou o limite da função.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Aviso: a coleção pode ser modificada durante a iteração.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">data/hora universal por extenso</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">O especificador de formato padrão "U" representa uma cadeia de caracteres de formato personalizado de data e hora que é definida pela propriedade DateTimeFormatInfo.FullDateTimePattern de uma cultura especificada. O padrão é o mesmo que o padrão "F". No entanto, o valor DateTime é convertido automaticamente para UTC antes de ser formatado.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">data/hora universal classificável</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">O especificador de formato padrão "u" representa uma cadeia de caracteres de formato personalizado de data e hora que é definida pela propriedade DateTimeFormatInfo.UniversalSortableDateTimePattern. O padrão reflete um padrão definido e a propriedade é somente leitura. Portanto, é sempre o mesmo, independentemente da cultura usada ou do provedor de formato fornecido. A cadeia de caracteres de formato personalizado é "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". Quando esse especificador de formato padrão é usado, a operação de análise ou formatação sempre usa a cultura invariável. Embora a cadeia de caracteres de resultado deva expressar um horário como UTC (Tempo Universal Coordenado), nenhuma conversão do valor original DateTime é executada durante a operação de formatação. Portanto, você precisa converter um valor DateTime para UTC chamando o método DateTime.ToUniversalTime antes de formatá-lo.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">atualizando os usos em contém membros</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">usos em que contém o projeto de atualização</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">usos em que contém o tipo de atualização</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">atualizar usos em projetos dependentes</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">diferença de hora e minuto UTC</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Com os valores DateTime, o especificador de formato personalizado "ZZZ" representa o deslocamento assinado do fuso horário do sistema operacional local do UTC, medido em horas e minutos. Ele não reflete o valor da propriedade DateTime.Kind de uma instância. Por esse motivo, o especificador de formato "ZZZ" não é recomendado para uso com valores DateTime. Com os valores de DateTimeOffset, este especificador de formato representa o deslocamento do valor de DateTimeOffset do UTC em horas e minutos. O deslocamento é sempre exibido com um sinal à esquerda. Um sinal de adição (+) indica horas à frente do UTC e um sinal de subtração (-) indica horas atrás do UTC. Um deslocamento de dígito único é formatado com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">diferença horária UTC (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Com valores DateTime, o especificador de formato personalizado "z" representa o deslocamento assinado do fuso horário do sistema operacional local do UTC (Tempo Universal Coordenado), medido em horas. Ele não reflete o valor da propriedade DateTime.Kind de uma instância. Por esse motivo, o especificador de formato "z" não é recomendado para uso com valores DateTime. Com os valores de DateTimeOffset, este especificador de formato representa o deslocamento do valor de DateTimeOffset do UTC em horas. O deslocamento é sempre exibido com um sinal à esquerda. Um sinal de adição (+) indica horas à frente do UTC e um sinal de subtração (-) indica horas atrás do UTC. Um deslocamento de dígito único é formatado sem um zero à esquerda. Se o especificador de formato "z" for usado sem outros especificadores de formato personalizado, ele será interpretado como um especificador de formato padrão de data e hora e gerará uma FormatException.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">diferença horária UTC (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Com valores DateTime, o especificador de formato personalizado "zz" representa o deslocamento assinado do fuso horário do sistema operacional local do UTC, medido em horas. Ele não reflete o valor da propriedade DateTime.Kind de uma instância. Por esse motivo, o especificador de formato "zz" não é recomendado para uso com valores DateTime. Com os valores de DateTimeOffset, este especificador de formato representa o deslocamento do valor de DateTimeOffset do UTC em horas. O deslocamento é sempre exibido com um sinal à esquerda. Um sinal de adição (+) indica horas à frente do UTC e um sinal de subtração (-) indica horas atrás do UTC. Um deslocamento de dígito único é formatado com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">intervalo [x-y] em ordem inversa</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">ano (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">O especificador de formato personalizado "y" representa o ano como um número de um ou dois dígitos. Se o ano tiver mais de dois dígitos, somente os dois dígitos de ordem baixa aparecerão no resultado. Se o primeiro dígito de um ano de dois dígitos começar com zero (por exemplo, 2008), o número será formatado sem um zero à esquerda. Se o especificador de formato "y" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato padrão de data e hora "y".</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">ano (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">O especificador de formato personalizado "yy" representa o ano como um número de dois dígitos. Se o ano tiver mais de dois dígitos, somente os dois dígitos de ordem baixa aparecerão no resultado. Se o ano de dois dígitos tiver menos de dois dígitos significativos, o número será preenchido com zeros à esquerda para produzir dois dígitos. Em uma operação de análise, um ano de dois dígitos analisado usando o especificador de formato personalizado "yy" é interpretado com base na Propriedade Calendar.TwoDigitYearMax do calendário atual do provedor de formato. O exemplo a seguir analisa a representação de cadeia de caracteres de uma data que tem um ano de dois dígitos usando o calendário gregoriano padrão da cultura en-US, que, neste caso, é a cultura atual. Em seguida, altera o objeto CultureInfo da cultura atual para usar um objeto GregorianCalendar cuja propriedade TwoDigitYearMax foi modificada.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">ano (3-4 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">O especificador de formato personalizado "yyy" representa o ano com um mínimo de três dígitos. Se o ano tiver mais de três dígitos significativos, eles serão incluídos na cadeia de caracteres de resultado. Se o ano tiver menos de três dígitos, o número será preenchido com zeros à esquerda para produzir três dígitos.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">ano (4 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">O especificador de formato personalizado "yyyy" representa o ano com um mínimo de quatro dígitos. Se o ano tiver mais de quatro dígitos significativos, eles serão incluídos na cadeia de caracteres de resultado. Se o ano tiver menos de quatro dígitos, o número será preenchido com zeros à esquerda para produzir quatro dígitos.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">ano (5 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">O especificador de formato personalizado "yyyyy" (mais qualquer número de especificadores "y" adicionais) representa o ano com um mínimo de cinco dígitos. Se o ano tiver mais de cinco dígitos significativos, eles serão incluídos na cadeia de caracteres de resultado. Se o ano tiver menos de cinco dígitos, o número será preenchido com zeros à esquerda para produzir cinco dígitos. Se houver especificadores "y" adicionais, o número será preenchido com quantos zeros à esquerda forem necessários para produzir o número de especificadores "y".</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">mês do ano</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">O especificador de formato padrão "Y" ou "y" representa uma cadeia de caracteres de formato de data e hora personalizado definida pela propriedade DateTimeFormatInfo.YearMonthPattern de uma cultura especificada. Por exemplo, a cadeia de caracteres de formato personalizado para a cultura invariável é "yyyy MMMM".</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="pt-BR" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (abreviado)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">O especificador de formato personalizado "t" representa o primeiro caractere do designador AM/PM. O designador localizado apropriado é recuperado da propriedade DateTimeFormatInfo.AMDesignator ou DateTimeFormatInfo.PMDesignator da cultura atual ou específica. O designador AM é usado para todos os horários de 0:00:00 (meia-noite) até 11:59:59.999. O designador PM é usado para todos os horários de 12:00:00 (meio-dia) para 23:59:59.999. Se o especificador de formato "t" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato padrão de data e hora "t".</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (completo)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">O especificador de formato personalizado "tt" (mais qualquer número de especificadores "t" adicionais) representa todo o designador AM/PM. O designador localizado apropriado é recuperado da propriedade DateTimeFormatInfo.AMDesignator ou DateTimeFormatInfo.PMDesignator da cultura atual ou específica. O designador AM é usado para todos os horários de 0:00:00 (meia-noite) até 11:59:59.999. O designador PM é usado para todos os horários de 12:00:00 (meio-dia) até 23:59:59.999. Verifique se o especificador "tt" foi usado para idiomas para os quais é necessário manter a distinção entre AM e PM. Um exemplo é o japonês, para o qual os designadores AM e PM diferem no segundo caractere, em vez de no primeiro caractere.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Uma subtração deve ser o último elemento em uma classe de caracteres</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Adicionar atributo 'DebuggerDisplay'</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Adicionar conversão explícita</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Adicionar o nome do membro</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Adicionar verificações nulas para todos os parâmetros</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Adicionar parâmetro opcional ao construtor</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Adicionar parâmetro ao '{0}' (e substituições/implementações)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Adicionar parâmetro ao construtor</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Adicione referência de projeto a "{0}".</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Adicione referência a "{0}".</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Ações não podem ficar vazias.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Adicionar o nome do elemento de tupla '{0}'</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Alinhar argumentos encapsulados</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Alinhar os parâmetros encapsulados</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Condições de alternância não podem ser comentários</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Condições de alternância não capturam e não podem ser nomeadas</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Aplicar as preferências de cabeçalho de arquivo</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Aplicar as preferências de inicialização de objeto/coleção</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">A tarefa esperada retorna '{0}'</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">A tarefa esperada não retorna nenhum valor</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">As classes base contêm membros não implementados inacessíveis</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Não é possível aplicar as alterações – erro inesperado: '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Não é possível incluir a classe \{0} no intervalo de caracteres</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Os números do grupo de captura devem ser menores ou iguais a Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">O número da captura não pode ser zero</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;inferir&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="new">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;omitir&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Alterar para o namespace global</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Não são permitidas alterações durante uma interrupção em exceção</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">As alterações feitas no projeto '{0}' não serão aplicadas enquanto o aplicativo estiver em execução</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application"> <source>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</source> <target state="new">Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Configurar estilo de código de {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Configurar severidade de {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Configurar gravidade para todos os analisadores '{0}'</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Configurar gravidade para todos os analisadores</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Converter para LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Adicionar para '{0}'</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Converter em classe</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Converter para LINQ (formulário de chamada)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Converter em Registro</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Converter em registro de struct</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Converter para struct</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Converter o tipo em '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Criar e atribuir o campo '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Criar e atribuir a propriedade '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Criar e atribuir os restantes como campos</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Criar e atribuir os restantes como propriedades</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Não altere este código. Coloque o código de limpeza no método '{0}'</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">O conteúdo atual do arquivo de origem '{0}' não corresponde à origem criada. Todas as alterações feitas neste arquivo durante a depuração não serão aplicadas até que o conteúdo corresponda à origem criada.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">O Documento deve estar contido no workspace que criou este serviço</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Editar e Continuar</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Pelo módulo, não é permitido Editar e Continuar</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">As alterações feitas no projeto '{0}' impedirão que a sessão de depuração continue: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">Editar e continuar não é suportado pelo tempo de execução.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Erro ao ler o arquivo '{0}': {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Erro ao criar a instância de CodeFixProvider</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Erro ao criar instância de CodeFixProvider '{0}'</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Exemplo:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Exemplos:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Métodos explicitamente implementados de registros devem ter nomes de parâmetro que correspondem ao compilador gerado '{0}' equivalente</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Extrair a classe base...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Extrair a interface...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Extrair a função local</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Extrair método</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Falha ao analisar o fluxo de dados para: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Corrigir a formatação</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Corrigir erro de digitação '{0}'</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Formatar o documento</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Formatando documento</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Gerar operadores de comparação</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Gerar o construtor em '{0}' (com campos)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Gerar o construtor em '{0}' (com propriedades)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Gerar para '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Gerar o parâmetro '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Gerar o parâmetro '{0}' (e as substituições/implementações)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">\ ilegal no final do padrão</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">{x,y} ilegal com x&gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Implementar '{0}' explicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Implementar '{0}' implicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Implementar classe abstrata</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Implementar todas as interfaces explicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Implementar todas as interfaces implicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Implementar todos os membros explicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Implementar explicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Implementar implicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Implementar os membros restantes explicitamente</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Implementar por meio de '{0}'</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Escape de caractere incompleto \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Recuar todos os argumentos</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Recuar todos os parâmetros</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Recuar argumentos encapsulados</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Recuar parâmetros encapsulados</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">Embutir '{0}'</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Embutir e manter '{0}'</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Dígitos hexadecimais insuficientes</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Introduzir a constante</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Introduzir campo</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Introduzir o local</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Introduzir a variável de consulta</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Nome de grupo inválido: nomes de grupos devem começar com um caractere de palavra</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Tornar a classe 'abstract'</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Tornar estático</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Inverter condicional</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">malformado</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Escape de caractere malformado \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Referência inversa \k&lt;...&gt; mal formada</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Mesclar com a instrução '{0}' aninhada</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Mesclar com a próxima instrução '{0}'</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Mesclar com a instrução '{0}' externa</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Mesclar com a instrução '{0}' anterior</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} precisa retornar um fluxo compatível com as operações de leitura e busca.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Caractere de controle ausente</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Mover conteúdo para o namespace...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Mover o arquivo para '{0}'</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Mover o arquivo para a pasta raiz do projeto</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Mover para o namespace...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Quantificador aninhado {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Não há nenhum local válido para inserir a chamada de método.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Não há )'s suficientes</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operadores</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">A referência de propriedade não pode ser atualizada</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Efetuar pull de '{0}'</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Efetue pull de '{0}' até '{1}'</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Efetuar pull de membros até o tipo base...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Efetuar pull de membros até a nova classe base...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Nada precede o quantificador {x,y}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">referência a grupo indefinido</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Referência ao nome do grupo indefinido {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Referência ao grupo número {0} indefinido</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Todos os caracteres de controle. Isso inclui as categorias Cc, Cf, Cs, Co e Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">todos os caracteres de controle</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Todas as marcas diacríticas. Isso inclui as categorias Mn, Mc e Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">todas as marcas diacríticas</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Todos os caracteres de letra. Isso inclui os caracteres Lu, Ll, Lt, Lm e Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">todos os caracteres de letra</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Todos os números. Isso inclui as categorias Nd, Nl e No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">todos os números</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Todos os caracteres de pontuação. Isso inclui as categorias Pc, Pd, Ps, Pe, Pi, Pf e Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">todos os caracteres de pontuação</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Todos os caracteres separadores. Isso inclui as categorias Zs, Zl e Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">todos os caracteres separadores</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Todos os símbolos. Isso inclui as categorias Sm, Sc, Sk e So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">todos os símbolos</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Você pode usar o caractere de barra vertical (|) para corresponder a qualquer uma das séries de padrões, em que o caractere | separa cada padrão.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">alternação</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">O caractere de ponto (.) corresponde a qualquer caractere, exceto \n (o caractere de nova linha, \u000A). Se um padrão de expressão regular for modificado pela opção RegexOptions.Singleline ou se a parte do padrão que contém a classe de caractere . for modificada pela opção 's', . corresponderá a qualquer caractere.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">qualquer caractere</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Grupos atômicos (conhecidos em alguns outros mecanismos de expressão regulares como uma subexpressão sem rastreamento inverso, uma subexpressão atômica ou uma subexpressão de apenas uma vez) desabilita o rastreamento inverso. O mecanismo de expressão regular corresponderá o máximo possível de caracteres em uma cadeia de caracteres de entrada possível. Quando não for mais possível corresponder, ele não fará o rastreamento inverso para tentar alternar as correspondências de padrão. (Ou seja, a subexpressão corresponderá somente às cadeias de caracteres que seriam correspondidas pela subexpressão sozinha. Ela não tentará corresponder a uma cadeia de caracteres com base na subexpressão e nas subexpressões seguintes.) Essa opção é recomendada quando você sabe que o rastreamento inverso não será bem-sucedido. Impedir o mecanismo de expressão regular de executar pesquisas desnecessárias melhora o desempenho.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">grupo atômico</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Corresponde a um caractere de backspace, \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">caractere de backspace</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Uma definição de grupo de balanceamento exclui a definição de um grupo definido anteriormente e armazena, no grupo atual, o intervalo entre o grupo definido anteriormente e o grupo atual. 'name1' é o grupo atual (opcional), 'name2' é um grupo definido anteriormente e 'subexpression' é qualquer padrão de expressão regular válido. A definição de grupo de balanceamento exclui a definição de name2 e armazena o intervalo entre name2 e name1 no name1. Se não for definido nenhum name2, a correspondência retrocederá. Como a exclusão da última definição de name2 revela a definição anterior de name2, esse constructo permite o uso da pilha de capturas para o grupo name2 como um contador para manter o controle de constructos aninhados, como parênteses ou colchetes de abertura e fechamento. A definição de grupo de balanceamento usa 'name2' como uma pilha. O caractere inicial de cada constructo aninhado é colocado no grupo e em sua coleção Group.Captures. Quando o caractere de fechamento é correspondido, seu caractere de abertura correspondente é removido do grupo e a coleção Captures é reduzida em um. Após a correspondência dos caracteres de abertura e fechamento de todas as construções aninhadas, 'name1' ficará vazio.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">grupo de balanceamento</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">grupo base</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Corresponde a um caractere de sino (alarme), \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">caractere de sino</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Corresponde a um caractere de retorno de carro, \u000D. Observe que \r não é equivalente ao caractere de nova linha, \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">caractere de retorno de carro</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">A subtração de classe de caracteres produz um conjunto de caracteres que é o resultado da exclusão de caracteres em uma classe de caracteres de outra classe de caracteres. 'base_group' é um grupo ou intervalo de caracteres positivos ou negativos. O componente 'excluded_group' é outro grupo de caracteres positivos ou negativos ou outra expressão de subtração de classe de caracteres (ou seja, você pode aninhar expressões de subtração de classes de caracteres).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">subtração de classe de caracteres</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">grupo de caracteres</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">comentário</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Este elemento de linguagem tenta corresponder a um de dois padrões, dependendo da possibilidade de correspondência com um padrão inicial. 'expression' é o padrão inicial, 'yes' é o padrão quando a expressão é correspondida e 'no' é o padrão opcional quando a expressão não é correspondida.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">correspondência de expressão condicional</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Este elemento de linguagem tenta corresponder a um de dois padrões, dependendo da correspondência a um grupo de captura especificado. 'name' é o nome (ou número) de um grupo de captura, 'yes' é a expressão a ser correspondida quando 'name' (ou 'number') é correspondido e 'no' é a expressão opcional a ser correspondida caso contrário.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">correspondência de grupo condicional</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">A âncora \G especifica que uma correspondência precisa ocorrer no ponto em que a correspondência anterior foi finalizada. Quando você usa essa âncora com o método Regex.Matchs ou Match.NextMatch, ela garante que todas as correspondências sejam contíguas.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">correspondências contíguas</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Corresponde a um caractere de controle ASCII, em que X é a letra do caractere de controle. Por exemplo, \cC é CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">caractere de controle</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d corresponde a qualquer dígito decimal. Equivale ao padrão de expressão regular \p{Nd}, que inclui os dígitos decimais padrão 0 a 9, bem como os dígitos decimais de vários outros conjuntos de caracteres. Se o comportamento em conformidade com o ECMAScript for especificado, \d será equivalente a [0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">caractere de dígito decimal</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Um sinal de número (#) marca um comentário de modo x, que começa no caractere # sem escape no final do padrão de expressão regular e continua até o fim da linha. Para usar esse constructo, habilite a opção x (por meio de opções embutidas) ou forneça o valor de RegexOptions.IgnorePatternWhitespace para o parâmetro de opção ao criar a instância do objeto Regex ou chamar um método Regex estático.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">comentário de fim da linha</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">A âncora \z especifica que uma correspondência precisa ocorrer no final da cadeia de caracteres de entrada. Como o elemento de linguagem $, \z ignora a opção RegexOptions.Multiline. Ao contrário do elemento de linguagem \Z, \z não corresponde a um caractere \n no final de uma cadeia de caracteres. Portanto, ele só pode corresponder à última linha da cadeia de caracteres de entrada.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">fim da cadeia de caracteres somente</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">A âncora \Z especifica que uma correspondência precisa ocorrer no final da cadeia de caracteres de entrada ou antes de \n no final da cadeia de caracteres de entrada. Ela é idêntica à âncora $, exceto que \Z ignora a opção RegexOptions.Multiline. Portanto, em uma cadeia de caracteres multilinha, ela pode corresponder somente ao final da última linha ou à última linha antes de \n. A âncora \Z corresponde a \n, mas não corresponde à \r\n (à combinação de caracteres CR/LF). Para corresponder a CR/LF, inclua \r?\Z no padrão de expressão regular.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">fim da cadeia de caracteres ou antes do fim da nova linha</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">A âncora $ especifica que o padrão anterior precisa ocorrer no final da cadeia de caracteres de entrada ou antes de \n no final da cadeia de caracteres de entrada. Se você usar $ com a opção RegexOptions.Multiline, a correspondência também poderá ocorrer no final de uma linha. A âncora $ corresponde a \n, mas não corresponde a \r\n (a combinação dos caracteres de retorno de carro e de nova linha ou CR/LF). Para a âncora corresponder à combinação de caracteres CR/LF, inclua \r?$ no padrão de expressão regular.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">fim da cadeia de caracteres ou da linha</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Corresponde a um caractere de escape, \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">caractere de escape</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">grupo excluído</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">expressão</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Corresponde ao caractere de avanço de página, \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">caractere de avanço de página</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Este constructo de agrupamento aplica ou desabilita as opções especificadas dentro de uma subexpressão. As opções a serem habilitadas são especificadas após o ponto de interrogação e as opções a serem desabilitadas, após o sinal de menos. As opções permitidas são: i Usar a correspondência que não diferencia maiúsculas de minúsculas. m Usar o modo multilinha, em que ^ e $ correspondem ao início e ao fim de cada linha (em vez de ao início e ao fim da cadeia de caracteres de entrada). s Usar o modo de linha única, no qual o ponto (.) corresponde a cada caractere (em vez de a cada caractere exceto \n). n Não capturar os grupos sem nome. As únicas capturas válidas são os grupos nomeados ou numerados no formato (?&lt;name&gt; subexpressão). x Excluir o espaço em branco sem escape do padrão e habilitar os comentários após um sinal de número (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">opções de grupo</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Corresponde a um caractere ASCII, em que ## é um código de caractere hexadecimal de dois dígitos.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">escape hexadecimal</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">O constructo (?# comentário) permite incluir um comentário embutido em uma expressão regular. O mecanismo de expressão regular não usa nenhuma parte do comentário na correspondência de padrões, embora o comentário seja incluído na cadeia de caracteres retornada pelo método Regex.ToString. O comentário termina no primeiro parêntese de fechamento.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">comentário embutido</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Habilita ou desabilita as opções de correspondência de padrões específicas para o restante de uma expressão regular. As opções a serem habilitadas são especificadas após o ponto de interrogação e as opções a serem desabilitadas, após o sinal de menos. As opções permitidas são: i Usar a correspondência que não diferencia maiúsculas de minúsculas. m Usar o modo multilinha, no qual ^ e $ correspondem ao início e ao fim de cada linha (em vez do início e do fim da cadeia de caracteres de entrada). s Usar o modo de linha única, no qual o ponto (.) corresponde a cada caractere (em vez de cada caractere exceto \n). n Não capturar grupos sem nome. As únicas capturas válidas são os grupos nomeados ou numerados explicitamente do formato (?&lt;name&gt; subexpressão). x Excluir o espaço em branco sem escape do padrão e habilitar os comentários após um sinal de número (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">opções embutidas</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Problema do Regex: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">letra, minúscula</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">letra, modificador</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">letra, outro</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">letra, inicial maiúscula</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">letra, maiúscula</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">marca, delimitação</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">marca, não espaçamento</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">marca, combinação de espaçamento</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">O quantificador {n,}? corresponde ao elemento precedente pelo menos n vezes, em que n é qualquer inteiro, mas o menor número de vezes possível. Ele é a contraparte lenta do quantificador greedy {n,}</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">corresponder pelo menos 'n' vezes (lento)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">O quantificador {n,} corresponde ao elemento precedente pelo menos n vezes, em que n é qualquer número inteiro. {n,} é um quantificador greedy cujo equivalente lento é {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">corresponder a pelo menos 'n' vezes</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">O quantificador {n,m}? corresponde ao elemento precedente entre n e m vezes, em que n e m são inteiros, mas o menor número de vezes possível. Ele é a contraparte lenta do quantificador greedy {n,m}</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">corresponder pelo menos 'n' vezes (lento)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">O quantificador {n,m} corresponde ao elemento precedente pelo menos n vezes, mas no máximo m vezes, em que n e m são inteiros. {n,m} é um quantificador greedy cujo equivalente lento é {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">corresponder entre 'm' e 'n' vezes</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">O quantificador {n}? corresponde ao elemento precedente exatamente n vezes, em que n é qualquer inteiro. Ele é a contraparte lenta do quantificador greedy {n}+</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">corresponder exatamente 'n' vezes (lento)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">O quantificador {n} corresponde ao elemento precedente exatamente n vezes, em que n é qualquer número inteiro. {n} é um quantificador greedy cujo equivalente lento é {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">corresponder exatamente 'n' vezes</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">O quantificador +? corresponde ao elemento precedente uma ou mais vezes, mas o menor número de vezes possível. Ele é a contraparte lenta do quantificador greedy +</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">corresponder uma ou mais vezes (lento)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">O quantificador + corresponde ao elemento precedente uma ou mais vezes. Ele equivale ao quantificador {1,}. + é um quantificador greedy cujo equivalente lento é +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">corresponder uma ou mais vezes</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">O quantificador *? corresponde ao elemento precedente zero ou mais vezes, mas o menor número de vezes possível. Ele é a contraparte lenta do quantificador greedy *</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">corresponder zero ou mais vezes (lento)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">O quantificador * corresponde ao elemento precedente zero ou mais vezes. Ele equivale ao quantificador {0,}. * é um quantificador greedy cujo equivalente lento é *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">corresponder zero ou mais vezes</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">O quantificador ?? corresponde ao elemento precedente zero ou uma vez, mas o menor número de vezes possível. Ele é a contraparte lenta do quantificador greedy ?</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">corresponder nenhuma ou uma vez (lento)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">O quantificador ? corresponde ao elemento precedente zero ou uma vez. Ele equivale ao quantificador {0,1}. ? é um quantificador greedy cujo equivalente lento é ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">corresponder nenhuma ou uma vez</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Este constructo de agrupamento captura uma 'subexpression' correspondente, em que 'subexpression' é qualquer padrão de expressão regular válido. As capturas que usam parênteses são numeradas automaticamente da esquerda para a direita com base na ordem dos parênteses de abertura na expressão regular, começando com um. A captura numerada como zero é o texto correspondente ao padrão de expressão regular inteiro.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">subexpressão correspondente</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">nome</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">nome ou número</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Uma referência inversa nomeada ou numerada. 'name' é o nome de um grupo de captura definido no padrão de expressão regular.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">referência inversa nomeada</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Captura uma subexpressão correspondida e permite que você a acesse por nome ou número. 'name' é um nome de grupo válido e 'subexpression' é qualquer padrão de expressão regular válido. 'name' não pode conter nenhum caractere de pontuação e não pode começar com um número. Se o parâmetro RegexOptions de um método de correspondência de padrões de expressão regular incluir o sinalizador RegexOptions.ExplicitCapture ou se a opção n for aplicada a essa subexpressão, a única maneira de capturar uma subexpressão será nomear explicitamente os grupos de captura.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">subexpressão de correspondência nomeada</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Um grupo de caracteres negativos especifica uma lista de caracteres que não podem aparecer em uma cadeia de caracteres de entrada para que uma correspondência ocorra. A lista de caracteres é especificada individualmente. Dois ou mais intervalos de caracteres podem ser concatenados. Por exemplo, para especificar o intervalo de dígitos decimais de "0" a "9", o intervalo de letras minúsculas de "a" até "f" e o intervalo de letras maiúsculas de "A" até "F", use [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">grupo de caracteres negativos</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Um intervalo de caracteres negativos especifica uma lista de caracteres que não podem aparecer em uma cadeia de caracteres de entrada para que uma correspondência ocorra. 'firstCharacter' é o caractere que inicia o intervalo e 'lastCharacter' é o caractere que termina o intervalo. Dois ou mais intervalos de caracteres podem ser concatenados. Por exemplo, para especificar o intervalo de dígitos decimais de "0" a "9", o intervalo de letras minúsculas de "a" até "f" e o intervalo de letras maiúsculas de "A" até "F", use [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">intervalo de caracteres negativos</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">O constructo de expressão regular \P{ name } corresponde a qualquer caractere que não pertença a uma categoria Unicode genérica nem a um bloco nomeado, em que o nome seja a abreviação da categoria ou o nome do bloco nomeado.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">categoria unicode negativa</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Corresponde a um caractere de nova linha, \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">caractere de nova linha</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">não</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D corresponde a qualquer caractere que não seja um dígito. Ele equivale ao padrão de expressão regular \p{Nd}. Se o comportamento em conformidade com o ECMAScript for especificado, \D será equivalente a [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">caractere que não é dígito</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S corresponde a qualquer caractere que não seja um espaço em branco. Ele equivale ao padrão de expressão regular [^\f\n\r\t\v\x85\p{Z}] ou ao oposto do padrão de expressão regular equivalente a \s, que corresponde a caracteres de espaço em branco. Se o comportamento em conformidade com o ECMAScript for especificado, \S será equivalente a [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">caractere que não é de espaço em branco</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">A âncora \B especifica que a correspondência não pode ocorrer em um limite de palavra. Ela é o oposto da âncora \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">limite que não é de palavra</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W corresponde a qualquer caractere que não seja uma palavra. Ele corresponde a qualquer caractere, exceto os das categorias Unicode a seguir: Ll Letra, Minúscula Lu Letra, Maiúscula Lt Letra, Inicial Maiúscula Lo Letra, Outro Lm Letra, Modificador Mn Marca, Não Espaçamento Nd Número, Dígito Decimal Pc Pontuação, Conector Se o comportamento em conformidade com o ECMAScript for especificado, \W será equivalente a [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">caractere que não é palavra</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Este constructo não captura a substring correspondida por uma subexpressão: O constructo do grupo que não é de captura geralmente é usado quando um quantificador é aplicado a um grupo, mas as substrings capturadas pelo grupo não são de interesse. Se uma expressão regular inclui constructos de agrupamento aninhado, um constructo externo de grupo de não captura não se aplica aos constructos internos de grupo aninhado.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">grupo que não é de captura</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">número, dígito decimal</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">número, letra</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">número, outro</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Uma referência inversa numerada, em que 'number' é a posição ordinal do grupo de captura na expressão regular. Por exemplo, \4 corresponde ao conteúdo do quarto grupo de captura. Há uma ambiguidade entre os códigos de escape octais (como \16) e as referências inversas \number que usam a mesma notação. Se a ambiguidade causar algum problema, use a notação \k&lt;name&gt;, que não é ambígua e não pode ser confundida com códigos de caracteres octais. Da mesma forma, os códigos hexadecimais como \xdd não são ambíguos e não podem ser confundidos com referências inversas.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">referência inversa numerada</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">outro, controle</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">outro, formato</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">outro, não atribuído</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">outro, uso privado</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">outro, alternativo</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Um grupo de caracteres positivos especifica uma lista de caracteres, em que qualquer um deles pode aparecer em uma cadeia de caracteres de entrada para que uma correspondência ocorra.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">grupo de caracteres positivos</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Um intervalo de caracteres positivos especifica um intervalo de caracteres, em que qualquer um deles pode aparecer em uma cadeia de caracteres de entrada para que uma correspondência ocorra. 'firstCharacter' é o caractere que inicia o intervalo e 'lastCharacter' é o caractere que termina o intervalo. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">intervalo de caracteres positivos</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">pontuação, fechar</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">pontuação, conector</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">pontuação, traço</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">pontuação, aspa final</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">pontuação, aspa inicial</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">pontuação, abrir</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">pontuação, outros</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">separador, linha</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">separador, parágrafo</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">separador, espaço</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">A âncora \A especifica que uma correspondência precisa ocorrer no início da cadeia de caracteres de entrada. Ela é idêntica à âncora ^, exceto que \A ignora a opção RegexOptions.Multiline. Portanto, ela só pode corresponder ao início da primeira linha em uma cadeia de caracteres de entrada multilinha.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">somente início de cadeia de caracteres</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">A âncora ^ especifica que o padrão a seguir precisa começar na primeira posição de caractere da cadeia de caracteres. Se você usar ^ com a opção RegexOptions.Multiline, a correspondência deverá ocorrer no início de cada linha.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">início de cadeia de caracteres ou de linha</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">subexpressão</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">símbolo, moeda</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">símbolo, matemática</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">símbolo, modificador</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">símbolo, outro</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Corresponde a um caractere de tabulação, \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">caractere de tabulação</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">O constructo de expressão regular \p{ name } corresponde a qualquer caractere que pertença a uma categoria genérica Unicode ou a um bloco nomeado, em que o nome seja a abreviação da categoria ou o nome do bloco nomeado.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">categoria unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Corresponde a uma unidade de código UTF-16 cujo valor é o hexadecimal ####.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">escape unicode</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Categoria Geral Unicode: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Corresponde a um caractere de tabulação vertical, \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">caractere de tabulação vertical</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s corresponde a qualquer caractere de espaço em branco. Ele equivale às seguintes sequências de escape e categorias Unicode: \f O caractere de avanço de página, \u000C \n O caractere de nova linha, \u000A \r O caractere de retorno de carro, \u000D \t O caractere de tabulação, \u0009 \v O caractere de tabulação vertical, \u000B \x85 A elipse ou o caractere NEL (NOVA LINHA) (...), \u0085 \p{Z} Corresponde a qualquer caractere separador Se o comportamento em conformidade com o ECMAScript for especificado, \s será equivalente a [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">o caractere de espaço em branco</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">A âncora \b especifica que a correspondência precisa ocorrer em um limite entre um caractere de palavra (o elemento de linguagem \w) e um caractere que não seja de palavra (o elemento de linguagem \W). Os caracteres de palavra consistem em caracteres alfanuméricos e sublinhados; um caractere que não é de palavra é qualquer caractere que não é alfanumérico nem sublinhado. A correspondência também pode ocorrer em um limite de palavra no início ou no fim da cadeia de caracteres. A âncora \b é usada geralmente para garantir que uma subexpressão corresponda a uma palavra inteira em vez de apenas ao início ou ao fim de uma palavra.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">limite de palavra</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w corresponde a qualquer caractere de palavra. Um caractere de palavra é membro de qualquer uma das seguintes categorias Unicode: Ll Letra, Minúscula Lu Letra, Maiúscula Lt Letra, Inicial Maiúscula Lo Letra, Outro Lm Letra, Modificador Mn Marca, Não Espaçamento Nd Número, Dígito Decimal Pc Pontuação, Conector Se o comportamento em conformidade com o ECMAScript for especificado, \w será equivalente a [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">caractere de palavra</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">sim</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Uma asserção lookahead negativa de largura zero, em que, para que a correspondência seja bem-sucedida, a cadeia de caracteres de entrada não pode corresponder ao padrão de expressão regular na subexpressão. A cadeia de caracteres correspondente não está incluída no resultado correspondente. Uma asserção lookahead negativa de largura zero normalmente é usada no início ou no final de uma expressão regular. No início de uma expressão regular, ela pode definir um padrão específico que não deve ser correspondido quando o início da expressão regular define um padrão semelhante, mas mais geral, a ser correspondido. Nesse caso, ela geralmente é usada para limitar o rastreamento inverso. No final de uma expressão regular, ela pode definir uma subexpressão que não pode ocorrer no final de uma correspondência.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">asserção lookahead negativa de largura zero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Uma asserção lookbehind negativa de largura zero, em que, para que uma correspondência seja bem-sucedida, a 'subexpression' não pode ocorrer na cadeia de caracteres de entrada à esquerda da posição atual. As substrings que não corresponderem à 'subexpression' não serão incluídas no resultado correspondente. As declarações de lookbehind negativas de largura zero normalmente são usadas no início de expressões regulares. O padrão que elas definem impede uma correspondência na cadeia de caracteres seguinte. Elas também são usadas para limitar o rastreamento inverso quando o último caractere ou caracteres em um grupo capturado não pode ser um ou mais dos caracteres que correspondem ao padrão dessa expressão regular do grupo.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">asserção lookbehind negativa de largura zero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Uma asserção lookahead positiva de largura zero, em que para que uma correspondência seja bem-sucedida, a cadeia de caracteres de entrada precisa corresponder ao padrão de expressão regular na 'subexpression'. A substring correspondente não é incluída no resultado correspondente. Uma asserção lookahead positiva de largura zero não retrocede. Normalmente, uma asserção lookahead positiva de largura zero é encontrada no final de um padrão de expressão regular. Ela define uma substring que precisa ser encontrada no final de uma cadeia de caracteres para que uma correspondência ocorra, mas que não deve ser incluída na correspondência. Ela também é útil para impedir o rastreamento inverso excessivo. Você pode usar uma asserção lookahead positiva de largura zero para garantir que um determinado grupo capturado comece com um texto que corresponda a um subconjunto do padrão definido para esse grupo capturado.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">asserção lookahead positiva de largura zero</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Uma asserção lookbehind positiva de largura zero, em que, para que uma correspondência seja bem-sucedida, a 'subexpression' precisa ocorrer na cadeia de caracteres de entrada à esquerda da posição atual. A 'subexpression' não é incluída no resultado correspondente. Uma asserção lookbehind positiva de largura zero não retrocede. As declarações de lookbehind positivas de largura zero normalmente são usadas no início de expressões regulares. O padrão que elas definem é uma pré-condição para uma correspondência, apesar de não fazer parte do resultado correspondente.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">asserção lookbehind positiva de largura zero</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">As assinaturas de método relacionadas encontradas nos metadados não serão atualizadas.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Não há suporte para a remoção do documento</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Remover o modificador 'async'</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Remover conversões desnecessárias</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Remover variáveis não utilizadas</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Substituir '{0}' por '{1}'</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Resolver marcadores de conflitos</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Edição rudimentar</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Classificar modificadores de acessibilidade</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Dividir em instruções '{0}' consecutivas</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Dividir em instruções '{0}' aninhadas</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">O fluxo deve fornecer suporte a operações de leitura e busca.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Suprimir {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="new">TODO: free unmanaged resources (unmanaged objects) and override finalizer</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="new">TODO: override finalizer only if '{0}' has code to free unmanaged resources</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Correspondências de tipos de destino</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">O assembly '{0}' contendo o tipo '{1}' referencia o .NET Framework, mas não há suporte para isso.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">A seleção contém uma chamada de função local sem sua declaração.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Muitos | em (?()|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Muitos )'s</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Não é possível ler o arquivo de origem '{0}' ou o PDB criado para o projeto que o contém. Todas as alterações feitas neste arquivo durante a depuração não serão aplicadas até que o conteúdo corresponda ao código-fonte compilado.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Propriedade desconhecida</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Propriedade desconhecida '{0}'</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Caractere de controle não reconhecido</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Sequência de escape não reconhecida \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Constructo de agrupamento não reconhecida</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Conjunto [] não finalizado</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Comentário (?#...) não finalizado</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Desencapsular todos os argumentos</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Desencapsular todos os parâmetros</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Desencapsular e recuar todos os argumentos</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Desencapsular e recuar todos os parâmetros</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Desencapsular a lista de argumentos</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Desencapsular cadeia de chamadas</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Desencapsular a expressão</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Desencapsular a lista de parâmetros</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Usar o corpo do bloco para expressões lambda</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Usar corpo da expressão para expressões lambda</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Usar cadeia de caracteres verbatim interpolada</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Valor:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Aviso: a semântica pode ser alterada ao converter a instrução.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Encapsular e alinhar cadeia de chamadas</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Quebrar e alinhar expressão</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Encapsular e alinhar cadeia longa de chamadas</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Encapsular cadeia de chamadas</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Encapsular cada argumento</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Encapsular cada parâmetro</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Encapsular a expressão</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Encapsular a lista de argumentos longa</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Encapsular cadeia longa de chamadas</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Encapsular a lista de parâmetros longa</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Quebra de linha</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Você pode usar a barra de navegação para mudar de contexto.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}' não pode ser nulo nem vazio.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}' não pode ser nulo nem espaço em branco.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">'{0}' não é nulo aqui.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">'{0}' pode ser nulo aqui.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">Dez milionésimos de um segundo</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "fffffff" representa os sete dígitos mais significativos da fração de segundos. Ou seja, representa os dez milionésimos de segundo em um valor de data e hora. Embora seja possível exibir os dez milionésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">Dez milionésimos de um segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "FFFFFFF" representa os sete dígitos mais significativos da fração de segundos. Ou seja, representa os dez milionésimos de segundo em um valor de data e hora. No entanto, zeros à direita ou sete dígitos de zero não são exibidos. Embora seja possível exibir os dez milionésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">Milionésimos de um segundo</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "FFFFFF" representa os seis dígitos mais significativos da fração de segundos. Ou seja, ele representa os milionésimos de segundo em um valor de data e hora. Embora seja possível exibir os milionésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">Milionésimos de um segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "FFFFFF" representa os seis dígitos mais significativos da fração de segundos. Ou seja, ele representa os milionésimos de segundo em um valor de data e hora. No entanto, zeros à direita ou seis dígitos de zero não são exibidos. Embora seja possível exibir os milionésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">Cem milésimos de um segundo</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "fffff" representa os cinco dígitos mais significativos da fração de segundos. Ou seja, representa as centenas de milésimos de segundo em um valor de data e hora. Embora seja possível exibir as centenas de milésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">Cem milésimos de um segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "FFFFF" representa os cinco dígitos mais significativos da fração de segundos. Ou seja, representa as centenas de milésimos de segundo em um valor de data e hora. No entanto, zeros à direita ou cinco dígitos de zero não são exibidos. Embora seja possível exibir as centenas de milésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">Dez milésimos de um segundo</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "ffff" representa os quatro dígitos mais significativos da fração de segundos. Ou seja, representa os dez milésimos de segundo em um valor de data e hora. Embora seja possível exibir os dez milésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT versão 3.5 (e posterior) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">Dez milésimos de um segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">O especificador de formato personalizado "FFFF" representa os quatro dígitos mais significativos da fração de segundos. Ou seja, representa os dez milésimos de segundo em um valor de data e hora. No entanto, zeros à direita ou quatro dígitos de zero não são exibidos. Embora seja possível exibir os dez milésimos de um componente de segundo de um valor temporal, esse valor pode não ser significativo. A precisão dos valores de data e hora depende da resolução do relógio do sistema. Nos sistemas operacionais Windows NT 3.5 (e posteriores) e Windows Vista, a resolução do relógio é de aproximadamente 10-15 milissegundos.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">Milésimos de um segundo</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">O especificador de formato personalizado "fff" representa os três dígitos mais significativos da fração de segundos. Ou seja, ele representa os milissegundos em um valor de data e hora.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">Milésimos de um segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">O especificador de formato personalizado "FFF" representa os três dígitos mais significativos da fração de segundos. Ou seja, ele representa os milissegundos em um valor de data e hora. No entanto, zeros à direita ou três dígitos de zero não são exibidos.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">Centésimos de um segundo</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">O especificador de formato personalizado "ff" representa os dois dígitos mais significativos da fração de segundos. Ou seja, ele representa os centésimos de segundo em um valor de data e hora.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">Centésimos de segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">O especificador de formato personalizado "FF" representa os dois dígitos mais significativos da fração de segundos. Ou seja, ele representa os centésimos de segundo em um valor de data e hora. No entanto, zeros à direita ou dois dígitos de zero não são exibidos.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">Décimos de segundo</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">Décimos de segundo (diferente de zero)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">O especificador de formato personalizado "F" representa o dígito mais significativo da fração de segundos; ou seja, ele representa os décimos de segundo em um valor de data e hora. Nada será exibido se o dígito for zero. Se o especificador de formato "F" for usado sem outros especificadores de formato, ele será interpretado como o especificador de formato padrão de data e hora "F". O número de especificadores de formato "F" usados com o método ParseExact, TryParseExact, ParseExact ou TryParseExact indica o número máximo de dígitos significativos da fração de segundos que podem estar presentes para analisar a cadeia de caracteres com êxito.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">Relógio de 12 horas (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">O especificador de formato personalizado "h" representa a hora como um número de 1 a 12. Ou seja, a hora é representada por um relógio de 12 horas que conta todas as horas desde a meia-noite ou o meio-dia. Uma determinada hora após a meia-noite é indistinguível da mesma hora após o meio-dia. A hora não é arredondada e uma hora de dígito único é formatada sem um zero à esquerda. Por exemplo, dado um horário de 5:43 na manhã ou à tarde, este especificador de formato personalizado exibe "5". Se o especificador de formato "h" for usado sem outros especificadores de formato personalizado, ele será interpretado como um especificador de formato padrão de data e hora e gerará uma FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">Relógio de 12 horas (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">O especificador de formato personalizado "hh" (mais qualquer número de especificadores "h" adicionais) representa a hora como um número de 01 a 12. Ou seja, a hora é representada por um relógio de 12 horas que conta todas as horas desde a meia-noite ou o meio-dia. Uma determinada hora após a meia-noite é indistinguível da mesma hora após o meio-dia. A hora não é arredondada e uma hora de dígito único é formatada com um zero à esquerda. Por exemplo, dado um horário de 5:43 na manhã ou à tarde, esse especificador de formato exibe "05".</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">Relógio de 24 horas (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">O especificador de formato personalizado "H" representa a hora como um número de 0 a 23. Ou seja, a hora é representada por um relógio de 24 horas com base em zero que conta as horas desde a meia-noite. Uma hora de dígito único é formatada sem um zero à esquerda. Se o especificador de formato "H" for usado sem outros especificadores de formato personalizado, ele será interpretado como um especificador de formato padrão de data e hora e gerará uma FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">Relógio de 24 horas (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">O especificador de formato personalizado "HH" (mais qualquer número de especificadores "H" adicionais) representa a hora como um número de 00 a 23. Ou seja, a hora é representada por um relógio de 24 horas com base em zero que conta as horas desde a meia-noite. Uma hora de dígito único é formatada com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">código</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">separador de data</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">O especificador de formato personalizado "/" representa o separador de data, que é usado para diferenciar anos, meses e dias. O separador de data localizado apropriado é recuperado da propriedade DateTimeFormatInfo.DateSeparator da cultura atual ou especificada. Observação: para alterar o separador de data de uma determinada cadeia de caracteres de data e hora, especifique o caractere separador em um delimitador de cadeia de caracteres literal. Por exemplo, a cadeia de caracteres de formato personalizado mm'/'dd'/'yyyy produz uma cadeia de resultado na qual "/" é sempre usado como separador de data. Para alterar o separador de data para todas as datas para uma cultura, altere o valor da propriedade DateTimeFormatInfo.DateSeparator da cultura atual ou crie uma instância de um objeto DateTimeFormatInfo, atribua o caractere à sua propriedade DateSeparator e chame uma sobrecarga do método de formatação que inclui um parâmetro IFormatProvider. Se o especificador de formato "/" for usado sem outros especificadores de formato personalizado, ele será interpretado como um especificador de formato padrão de data e hora e gerará uma FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">dia do mês (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">O especificador de formato personalizado "d" representa o dia do mês como um número de 1 a 31. Um dia de dígito único é formatado sem um zero à esquerda. Se o especificador de formato "d" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato padrão de data e hora "d".</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">dia do mês (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">A cadeia de caracteres de formato personalizado "dd" representa o dia do mês como um número de 01 a 31. Um dia de dígito único é formatado com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">dia da semana (abreviado)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">O especificador de formato personalizado "ddd" representa o nome abreviado do dia da semana. O nome abreviado localizado do dia da semana é recuperado da propriedade DateTimeFormatInfo.AbbreviatedDayNames da cultura atual ou especificada.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">dia da semana (completo)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">O especificador de formato personalizado "dddd" (mais qualquer número de especificadores "d" adicionais) representa o nome completo do dia da semana. O nome localizado do dia da semana é recuperado da propriedade DateTimeFormatInfo.DayNames da cultura atual ou especificada.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">discard</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">de metadados</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">data/hora completa por extenso</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">O especificador de formato padrão "F" representa uma cadeia de caracteres de formato de data e hora personalizada que é definida pela propriedade DateTimeFormatInfo. FullDateTimePattern atual. Por exemplo, a cadeia de caracteres de formato personalizado para a cultura invariável é "dddd, dd MMMM yyyy HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">data/hora abreviada por extenso</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">O Especificador de Formato de Data por Extenso Hora Abreviada ("f") O especificador de formato padrão "f" representa uma combinação de padrões de data por extenso ("D") e tempo abreviado ("t"), separados por um espaço.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">data/hora geral por extenso</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">O especificador de formato padrão "G" representa uma combinação dos padrões de data abreviada ("d") e hora por extenso ("T"), separados por um espaço.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">data/hora abreviada geral</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">O especificador de formato padrão "g" representa uma combinação dos padrões de data abreviada ("d") e hora abreviada ("t"), separados por um espaço.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">sobrecarga genérica</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">sobrecargas genéricas</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">em {0} ({1} – {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">na Origem (atributo)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">data completa</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">O especificador de formato padrão "D" representa uma cadeia de caracteres de formato de data e hora personalizada que é definida pela propriedade DateTimeFormatInfo.LongDatePattern atual. Por exemplo, a cadeia de caracteres de formato personalizado para a cultura invariável é "dddd, dd MMMM yyyy".</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">hora completa</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">O especificador de formato padrão "T" representa uma cadeia de caracteres de formato personalizado de data e hora que é definida pela propriedade DateTimeFormatInfo.LongTimePattern de uma cultura específica. Por exemplo, a cadeia de caracteres de formato personalizado para a cultura invariável é "HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">minuto (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">O especificador de formato personalizado "m" representa o minuto como um número de 0 a 59. O minuto representa minutos inteiros que passaram desde a última hora. Um minuto de dígito único é formatado sem um zero à esquerda. Se o especificador de formato "m" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato padrão de data e hora "m".</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">minuto (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">O especificador de formato personalizado "mm" (mais qualquer número de especificadores "m" adicionais) representa o minuto como um número de 00 a 59. O minuto representa minutos inteiros que passaram desde a última hora. Um minuto de dígito único é formatado com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">mês (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">O especificador de formato personalizado "M" representa o mês como um número de 1 a 12 (ou de 1 a 13 para calendários com 13 meses). Um mês de dígito único é formatado sem um zero à esquerda. Se o especificador de formato "M" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato padrão de data e hora "M".</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">mês (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">O especificador de formato personalizado "MM" representa o mês como um número de 01 a 12 (ou de 1 a 13 para calendários com 13 meses). Um mês de dígito único é formatado com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">mês (abreviado)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">O especificador de formato personalizado "MMM" representa o nome abreviado do mês. O nome abreviado localizado do mês é recuperado da propriedade DateTimeFormatInfo.AbbreviatedMonthNames da cultura atual ou especificada.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">dia do mês</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">O especificador de formato padrão "M" ou "m" representa uma cadeia de caracteres de formato personalizado de data e hora definida pela propriedade DateTimeFormatInfo.MonthDayPattern atual. Por exemplo, a cadeia de caracteres de formato personalizado para a cultura invariável é "MMMM dd".</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">mês (completo)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">O especificador de formato personalizado "MMMM" representa o nome completo do mês. O nome localizado do mês é recuperado da propriedade DateTimeFormatInfo.MonthNames da cultura atual ou especificada.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">sobrecarga</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">sobrecargas</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} Palavra-chave</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Encapsular campo: "{0}" (e usar propriedade)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Encapsular campo: "{0}" (mas ainda usar o campo)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Encapsular campos (e usar propriedade)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Encapsular campos (mas ainda usá-los)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Não foi possível extrair interface: a seleção não está dentro de uma classe/interface/struct.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Não foi possível extrair interface: O tipo não contém membros que podem ser extraídos para uma interface.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">não é possível construir a árvore final</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Tipo dos parâmetros ou tipo de retorno não pode ser um tipo anônimo: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">A seleção não contém instrução ativa.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">A seleção contém um erro ou tipo desconhecido.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Parâmetro de tipo "{0}" está oculto por outro parâmetro de tipo "{1}".</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">O endereço de uma variável é usado dentro do código selecionado.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">A atribuição a campos somente leitura deve ser feita em um construtor: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">o código gerado se sobrepõe à porção oculta do código</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Adicionar parâmetros opcionais ao '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Adicionar parâmetros ao '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Gerar construtor delegante "{0}({1})"</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Gerar construtor "{0}({1})"</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Gerar construtor de atribuição de campo "{0}({1})"</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Gerar Equals e GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Gerar Equals(object)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Gerar GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Gerar construtor em '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Gerar todos</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Gerar membro enum '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Gerar constante '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Gerar propriedade somente leitura '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Gerar propriedade '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Gerar campo somente leitura '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Gerar campo '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Gerar local '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Gerar {0} '{1}' no novo arquivo</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Gerar {0} '{1}' aninhado</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Namespace Global</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Implementar interface de forma abstrata</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Implementar interface por meio de "{0}"</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Implementar a interface</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Encapsular campo para "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Introduzir local para "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Introduzir constante para "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Introduzir constante local para "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Introduzir campo para todas as ocorrências de "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Introduzir local para todas as ocorrências de "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Introduzir constante para todas as ocorrências de "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Introduzir constante de local para todas as ocorrências de "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Introduzir variável de consulta para todas as ocorrências de "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Introduzir variável de consulta para "{0}"</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Tipos Anônimos:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">é</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Representa um objeto cujas operações serão resolvidas no tempo de execução.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">constante</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">Campo</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">constante local</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">variável local</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">Rótulo</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">período/era</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Os especificadores de formato personalizado "g" ou "gg" (mais qualquer número de especificadores "g" adicionais) representam o período ou a era, como D.C. A operação de formatação ignorará o especificador se a data a ser formatada não tiver um período associado ou uma cadeia de caracteres de era. Se o especificador de formato "g" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato padrão de data e hora "g".</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">variável de intervalo</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">parâmetro</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">Em</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Resumo:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Locais e parâmetros</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Parâmetros de Tipo:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Devoluções:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Exceções:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Comentários:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">gerar fonte para símbolos deste tipo não é suportado</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">assembly</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">local desconhecido</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Tipo de membro de interface inesperado: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Tipo de símbolo desconhecido</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Gerar propriedade abstrata '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Gerar método abstrato '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Gerar método '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">Assembly solicitado já carregado de "{0}".</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">O símbolo não tem um ícone.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Método assíncrono não pode ter parâmetros ref/out: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">O membro é definido em metadados.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Você só pode alterar a assinatura de um construtor, indexador, método ou delegate.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Este símbolo possui definições relacionadas ou referências nos metadados. Alterar sua assinatura pode resultar em erros de compilação. Deseja continuar?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Alterar assinatura...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Gerar novo tipo...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Falha do Analisador de Diagnóstico do Usuário.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">O analisador '{0}' gerou uma exceção do tipo '{1}' com a mensagem '{2}'.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">O analisador '{0}' gerou a seguinte exceção: '{1}'.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Simplificar Nomes</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Simplificar o Acesso de Membro</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Remover qualificação</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Erro desconhecido</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Disponível</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Não Disponível ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">na Fonte</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">no Arquivo de Supressão</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Remover a Supressão {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Remover Supressão</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;Pendente&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Observação: pressione Tab duas vezes para inserir o snippet '{0}'.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Implementar interface explicitamente com Padrão de descarte</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Implementar interface com Padrão de descarte</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Fazer nova triagem de {0}(no momento, "{1}")</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">O argumento não pode ter um elemento nulo.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">O argumento não pode estar vazio.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">O analisador não dá suporte ao diagnóstico relatado com ID '{0}'.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Computando a correção de todas as correções de código de ocorrências…</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Corrigir todas as ocorrências</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Documento</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Projeto</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Solução</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="new">TODO: dispose managed state (managed objects)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="new">TODO: set large fields to null</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Compilador</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">Ao Vivo</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">valor de enum</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">campo const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">método</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">Operador</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">construtor</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">propriedade automática</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">propriedade</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">acessador de evento</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">data/hora rfc1123</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">O especificador de formato padrão "R" ou "r" representa uma cadeia de caracteres de formato de data e hora personalizado definida pela propriedade DateTimeFormatInfo.RFC1123Pattern. O padrão reflete um padrão definido e a propriedade é somente leitura. Portanto, é sempre o mesmo, independentemente da cultura usada ou do provedor de formato fornecido. A cadeia de caracteres de formato personalizado é "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". Quando esse especificador de formato padrão é usado, a operação de análise ou formatação sempre usa a cultura invariável.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">data/hora de viagem de ida e volta</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">O especificador de formato padrão "O" ou "o" representa uma cadeia de caracteres de formato de data e hora personalizado usando um padrão que preserva as informações de fuso horário e emite uma cadeia de resultado que está em conformidade com o ISO 8601. Para valores DateTime, esse especificador de formato é projetado para preservar valores de data e hora juntamente com a propriedade DateTime.Kind no texto. A cadeia de caracteres formatada poderá ser analisada novamente usando o método DateTime.Parse (String, IFormatProvider, DateTimeStyles) ou DateTime.ParseExact se o parâmetro styles estiver definido como DateTimeStyles.RoundtripKind. O especificador de formato padrão "O" ou "o" corresponde à cadeia de caracteres de formato personalizado "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" para valores DateTime e à cadeia de caracteres de formato personalizado "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" para valores de DateTimeOffset. Nessa cadeia de caracteres, os pares de aspas simples que delimitam caracteres individuais, como hifens, dois-pontos e a letra "T", indicam que o caractere individual é um literal que não pode ser alterado. Os apóstrofos não aparecem na cadeia de caracteres de saída. O especificador de formato padrão "O" ou "o" (e a cadeia de caracteres de formato personalizado "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK") aproveita as três maneiras pelas quais o ISO 8601 representa as informações de fuso horário para preservar a propriedade Kind dos valores DateTime: O componente de fuso horário de DateTimeKind.Local dos valores de data e hora é uma diferença do UTC (por exemplo, +01:00, -07:00). Todos os valores de DateTimeOffset também são representados nesse formato. O componente de fuso horário de DateTimeKind.Utc dos valores de data e hora usa "Z" (que significa diferença zero) para representar o UTC. Os valores de data e hora de DateTimeKind.Unspecified não especificados não têm informações de fuso horário. Como o especificador de formato padrão "O" ou "o" está em conformidade com um padrão internacional, a operação de formatação ou análise que usa o especificador sempre usa a cultura invariável e o calendário gregoriano. As cadeias de caracteres que são passadas para os métodos Parse, TryParse, ParseExact e TryParseExact de DateTime e DateTimeOffset podem ser analisadas usando o especificador de formato "O" ou "o" caso elas estejam em um desses formatos. No caso de objetos DateTime, a sobrecarga de análise que você chama também deve incluir um parâmetro styles com um valor de DateTimeStyles.RoundtripKind. Observe que, se você chamar um método de análise com a cadeia de caracteres de formato personalizado que corresponde ao especificador de formato "O" ou "o", você não obterá os mesmos resultados de "O" ou "o". Isso porque os métodos de análise que usam uma cadeia de caracteres de formato personalizado não podem analisar a representação de cadeia de caracteres dos valores de data e hora que não têm um componente de fuso horário ou usar "Z" para indicar o UTC.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">segundo (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">O especificador de formato personalizado "s" representa os segundos como um número de 0 a 59. O resultado representa segundos inteiros que passaram desde o último minuto. Um segundo de dígito único é formatado sem um zero à esquerda. Se o especificador de formato "s" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato de data e hora padrão "s".</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">segundo (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">O especificador de formato personalizado "ss" (mais qualquer número de especificadores "s" adicionais) representa os segundos como um número de 00 a 59. O resultado representa segundos inteiros que passaram desde o último minuto. Um segundo de dígito único é formatado com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">data abreviada</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">O especificador de formato padrão "d" representa uma cadeia de caracteres de formato personalizado de data e hora que é definida pela propriedade DateTimeFormatInfo.ShortDatePattern de uma cultura específica. Por exemplo, a cadeia de caracteres de formato personalizado retornada pela propriedade ShortDatePattern da cultura invariável é "MM/dd/yyyy".</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">hora abreviada</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">O especificador de formato padrão "t" representa uma cadeia de caracteres de formato de data e hora personalizada que é definida pela propriedade DateTimeFormatInfo.ShortTimePattern atual. Por exemplo, a cadeia de caracteres de formato personalizado para a cultura invariável é "HH:mm".</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">data/hora classificável</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">O especificador de formato padrão "s" representa uma cadeia de caracteres de formato personalizado de data e hora que é definida pela propriedade DateTimeFormatInfo.SortableDateTimePattern. O padrão reflete um padrão definido (ISO 8601) e a propriedade é somente leitura. Portanto, é sempre o mesmo, independentemente da cultura usada ou do provedor de formato fornecido. A cadeia de caracteres de formato personalizado é "yyyy'-'MM'-'dd'T'HH':'mm':'ss". O objetivo do especificador de formato "s" é produzir cadeias de caracteres de resultado que são classificadas consistentemente em ordem crescente ou decrescente com base nos valores de data e hora. Como resultado, embora o especificador de formato padrão "s" represente um valor de data e hora em um formato consistente, a operação de formatação não modifica o valor do objeto de data e hora que está sendo formatado para refletir sua propriedade DateTime.Kind ou seu valor DateTimeOffset.Offset. Por exemplo, as cadeias de caracteres de resultado produzidas pela formatação dos valores de data e hora 2014-11-15T18:32:17+00:00 e 2014-11-15T18:32:17+08:00 são idênticas. Quando esse especificador de formato padrão é usado, a operação de análise ou formatação sempre usa a cultura invariável.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">construtor estático</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">"símbolo" não pode ser um namespace.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">separador de hora</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">O especificador de formato personalizado ":" representa o separador de hora, que é usado para diferenciar horas, minutos e segundos. O separador de hora localizado apropriado é recuperado da propriedade DateTimeFormatInfo.TimeSeparator da cultura atual ou especificada. Observação: para alterar o separador de hora de uma determinada cadeia de caracteres de data e hora, especifique o caractere separador em um delimitador de cadeia de caracteres literal. Por exemplo, a cadeia de caracteres de formato personalizado hh'_'dd'_'ss produz uma cadeia de caracteres de resultado na qual "_" (um sublinhado) é sempre usado como o separador de hora. Para alterar o separador de hora para todas as datas para uma cultura, altere o valor da propriedade DateTimeFormatInfo.TimeSeparator da cultura atual ou crie uma instância de um objeto DateTimeFormatInfo, atribua o caractere à propriedade TimeSeparator e chame uma sobrecarga do método de formatação que inclui um parâmetro IFormatProvider. Se o especificador de formato ":" for usado sem outros especificadores de formato personalizado, ele será interpretado como um especificador de formato padrão de data e hora e gerará uma FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">fuso horário</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">O especificador de formato personalizado "K" representa as informações de fuso horário de um valor de data e hora. Quando esse especificador de formato é usado com valores DateTime, a cadeia de caracteres de resultado é definida pelo valor da propriedade DateTime.Kind: Para o fuso horário local (um valor da propriedade DateTime.Kind de DateTimeKind.Local), este especificador é equivalente ao especificador "zzz" e produz uma cadeia de caracteres de resultado contendo o deslocamento local do UTC (Tempo Universal Coordenado); por exemplo, "-07:00". Para uma hora UTC (um valor de propriedade DateTime.Kind de DateTimeKind.Utc), a cadeia de caracteres de resultado inclui um caractere "Z" para representar uma data UTC. Para um horário de um fuso horário não especificado (uma hora cuja propriedade DateTime.Kind seja igual a DateTimeKind.Unspecified), o resultado é equivalente a String.Empty. Para os valores de DateTimeOffset, o especificador de formato "K" é equivalente ao especificador de formato "zzz" e produz uma cadeia de caracteres de resultado contendo o deslocamento do valor de DateTimeOffset do UTC. Se o especificador de formato "K" for usado sem outros especificadores de formato personalizado, ele será interpretado como um especificador de formato padrão de data e hora e gerará uma FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">restrição de tipo</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">parâmetro de tipo</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">atributo</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Substituir "{0}" e "{1}" por propriedades</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Substituir "{0}" por uma propriedade</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Método referenciado implicitamente</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Gerar tipo '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Gerar {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Alterar '{0}' para '{1}'.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">O método não invocado não pode ser substituído por uma propriedade.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Somente os métodos com um único argumento, que não é uma declaração de variável externa, podem ser substituídos por uma propriedade.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Uma instância do analisador de {0} não pode ser criada de {1} : {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">O assembly {0} não contém quaisquer analisadores.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Não é possível carregar o assembly do Analisador {0} : {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Tornar o método síncrono</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">de {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Localizar e instalar a versão mais recente</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Usar a versão local '{0}'</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Use a versão '{0}' instalada localmente '{1}' Essa versão é usada no: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Localizar e instalar a versão mais recente de '{0}'</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Instalar com o gerenciador de pacotes...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Instalar '{0} {1}'</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Instalar a versão '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Gerar variável '{0}'</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Classes</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Constantes</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Delega</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Enums</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Eventos</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Métodos de extensão</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Campos</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Interfaces</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Locais</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Métodos</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Módulos</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Namespaces</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Propriedades</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Estruturas</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parâmetros:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Variadic SignatureHelpItem deve ter pelo menos um parâmetro.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Substituir '{0}' com método</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Substituir '{0}' com métodos</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Propriedade referenciada implicitamente</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">A propriedade não pode ser substituída com segurança com uma chamada de método</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Converter para cadeia de caracteres interpolada</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Mover tipo para {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Renomear arquivo para {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Renomear tipo para {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Remover tag</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Adicionar nós de parâmetro ausentes</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Tornar o escopo contentor assíncrono</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Tornar o escopo contentor assíncrono (retornar Task)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Desconhecido)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Usar o tipo de estrutura</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Instalar o pacote '{0}'</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">projeto {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">Qualificar '{0}' totalmente</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Remova a referência a '{0}'.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Palavras-chave</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Snippets</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Tudo em minúsculas</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Tudo em maiúsculas</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Primeira palavra em maiúsculas</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Pascal Case</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Remover documento '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Adicionar documento '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Adicionar nome de argumento '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Obter '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Obter ambos</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Obter inferior</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Obter superior</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Remover variável não usada</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Converter em binário</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Converter em decimal</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Converter para hexa</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Separar milhares</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Separar palavras</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Separar nibbles</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Remover separadores</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Adicionar parâmetro ao '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Gerar construtor...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Escolher membros para que sejam usados como parâmetros do construtor</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Escolher membros para que sejam usados em Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Gerar substituições...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Escolher membros para substituir</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Adicionar verificação nula</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Adicionar a verificação 'string.IsNullOrEmpty'</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Adicionar a verificação 'string.IsNullOrWhiteSpace'</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Inicializar campo '{0}'</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Inicializar propriedade '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Adicionar verificações nulas</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Gerar operadores</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Implementar {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">O diagnóstico relatado '{0}' tem um local de origem no arquivo '{1}', que não faz parte da compilação sendo analisada.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">O diagnóstico relatado '{0}' tem um local de origem '{1}' no arquivo '{2}', que está fora do arquivo fornecido.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">em {0} (projeto {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Adicionar modificadores de acessibilidade</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Mover declaração para próximo da referência</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Converter em propriedade completa</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Aviso: o método substitui o símbolo de metadados</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Usar {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Adicionar nome de argumento '{0}' (incluindo argumentos à direita)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">função local</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">indexador</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Tipo de alias ambíguo '{0}'</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Aviso: a coleção foi modificada durante a iteração.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Aviso: a variável de iteração passou o limite da função.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Aviso: a coleção pode ser modificada durante a iteração.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">data/hora universal por extenso</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">O especificador de formato padrão "U" representa uma cadeia de caracteres de formato personalizado de data e hora que é definida pela propriedade DateTimeFormatInfo.FullDateTimePattern de uma cultura especificada. O padrão é o mesmo que o padrão "F". No entanto, o valor DateTime é convertido automaticamente para UTC antes de ser formatado.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">data/hora universal classificável</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">O especificador de formato padrão "u" representa uma cadeia de caracteres de formato personalizado de data e hora que é definida pela propriedade DateTimeFormatInfo.UniversalSortableDateTimePattern. O padrão reflete um padrão definido e a propriedade é somente leitura. Portanto, é sempre o mesmo, independentemente da cultura usada ou do provedor de formato fornecido. A cadeia de caracteres de formato personalizado é "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". Quando esse especificador de formato padrão é usado, a operação de análise ou formatação sempre usa a cultura invariável. Embora a cadeia de caracteres de resultado deva expressar um horário como UTC (Tempo Universal Coordenado), nenhuma conversão do valor original DateTime é executada durante a operação de formatação. Portanto, você precisa converter um valor DateTime para UTC chamando o método DateTime.ToUniversalTime antes de formatá-lo.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">atualizando os usos em contém membros</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">usos em que contém o projeto de atualização</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">usos em que contém o tipo de atualização</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">atualizar usos em projetos dependentes</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">diferença de hora e minuto UTC</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Com os valores DateTime, o especificador de formato personalizado "ZZZ" representa o deslocamento assinado do fuso horário do sistema operacional local do UTC, medido em horas e minutos. Ele não reflete o valor da propriedade DateTime.Kind de uma instância. Por esse motivo, o especificador de formato "ZZZ" não é recomendado para uso com valores DateTime. Com os valores de DateTimeOffset, este especificador de formato representa o deslocamento do valor de DateTimeOffset do UTC em horas e minutos. O deslocamento é sempre exibido com um sinal à esquerda. Um sinal de adição (+) indica horas à frente do UTC e um sinal de subtração (-) indica horas atrás do UTC. Um deslocamento de dígito único é formatado com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">diferença horária UTC (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Com valores DateTime, o especificador de formato personalizado "z" representa o deslocamento assinado do fuso horário do sistema operacional local do UTC (Tempo Universal Coordenado), medido em horas. Ele não reflete o valor da propriedade DateTime.Kind de uma instância. Por esse motivo, o especificador de formato "z" não é recomendado para uso com valores DateTime. Com os valores de DateTimeOffset, este especificador de formato representa o deslocamento do valor de DateTimeOffset do UTC em horas. O deslocamento é sempre exibido com um sinal à esquerda. Um sinal de adição (+) indica horas à frente do UTC e um sinal de subtração (-) indica horas atrás do UTC. Um deslocamento de dígito único é formatado sem um zero à esquerda. Se o especificador de formato "z" for usado sem outros especificadores de formato personalizado, ele será interpretado como um especificador de formato padrão de data e hora e gerará uma FormatException.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">diferença horária UTC (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">Com valores DateTime, o especificador de formato personalizado "zz" representa o deslocamento assinado do fuso horário do sistema operacional local do UTC, medido em horas. Ele não reflete o valor da propriedade DateTime.Kind de uma instância. Por esse motivo, o especificador de formato "zz" não é recomendado para uso com valores DateTime. Com os valores de DateTimeOffset, este especificador de formato representa o deslocamento do valor de DateTimeOffset do UTC em horas. O deslocamento é sempre exibido com um sinal à esquerda. Um sinal de adição (+) indica horas à frente do UTC e um sinal de subtração (-) indica horas atrás do UTC. Um deslocamento de dígito único é formatado com um zero à esquerda.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">intervalo [x-y] em ordem inversa</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">ano (1-2 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">O especificador de formato personalizado "y" representa o ano como um número de um ou dois dígitos. Se o ano tiver mais de dois dígitos, somente os dois dígitos de ordem baixa aparecerão no resultado. Se o primeiro dígito de um ano de dois dígitos começar com zero (por exemplo, 2008), o número será formatado sem um zero à esquerda. Se o especificador de formato "y" for usado sem outros especificadores de formato personalizado, ele será interpretado como o especificador de formato padrão de data e hora "y".</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">ano (2 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">O especificador de formato personalizado "yy" representa o ano como um número de dois dígitos. Se o ano tiver mais de dois dígitos, somente os dois dígitos de ordem baixa aparecerão no resultado. Se o ano de dois dígitos tiver menos de dois dígitos significativos, o número será preenchido com zeros à esquerda para produzir dois dígitos. Em uma operação de análise, um ano de dois dígitos analisado usando o especificador de formato personalizado "yy" é interpretado com base na Propriedade Calendar.TwoDigitYearMax do calendário atual do provedor de formato. O exemplo a seguir analisa a representação de cadeia de caracteres de uma data que tem um ano de dois dígitos usando o calendário gregoriano padrão da cultura en-US, que, neste caso, é a cultura atual. Em seguida, altera o objeto CultureInfo da cultura atual para usar um objeto GregorianCalendar cuja propriedade TwoDigitYearMax foi modificada.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">ano (3-4 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">O especificador de formato personalizado "yyy" representa o ano com um mínimo de três dígitos. Se o ano tiver mais de três dígitos significativos, eles serão incluídos na cadeia de caracteres de resultado. Se o ano tiver menos de três dígitos, o número será preenchido com zeros à esquerda para produzir três dígitos.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">ano (4 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">O especificador de formato personalizado "yyyy" representa o ano com um mínimo de quatro dígitos. Se o ano tiver mais de quatro dígitos significativos, eles serão incluídos na cadeia de caracteres de resultado. Se o ano tiver menos de quatro dígitos, o número será preenchido com zeros à esquerda para produzir quatro dígitos.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">ano (5 dígitos)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">O especificador de formato personalizado "yyyyy" (mais qualquer número de especificadores "y" adicionais) representa o ano com um mínimo de cinco dígitos. Se o ano tiver mais de cinco dígitos significativos, eles serão incluídos na cadeia de caracteres de resultado. Se o ano tiver menos de cinco dígitos, o número será preenchido com zeros à esquerda para produzir cinco dígitos. Se houver especificadores "y" adicionais, o número será preenchido com quantos zeros à esquerda forem necessários para produzir o número de especificadores "y".</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">mês do ano</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">O especificador de formato padrão "Y" ou "y" representa uma cadeia de caracteres de formato de data e hora personalizado definida pela propriedade DateTimeFormatInfo.YearMonthPattern de uma cultura especificada. Por exemplo, a cadeia de caracteres de formato personalizado para a cultura invariável é "yyyy MMMM".</target> <note /> </trans-unit> </body> </file> </xliff>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/xlf/FeaturesResources.ru.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="ru" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (сокращенно)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">Описатель пользовательского формата "t" представляет первый символ указателя AM/PM. Соответствующий локализованный указатель извлекается из свойства DateTimeFormatInfo.AMDesignator или DateTimeFormatInfo.PMDesignator текущих или заданных языка и региональных параметров. Указатель AM используется для всех значений времени с 0:00:00 (полночь) до 11:59:59,999. Указатель PM используется для всех значений времени с 12:00:00 (полдень) до 23:59:59,999. Если описатель формата "t" используется без других описателей пользовательского формата, он интерпретируется как описатель "t" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (полностью)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">Описатель пользовательского формата "tt" (плюс любое число дополнительных описателей "t") представляет весь указатель AM/PM. Соответствующий локализованный указатель извлекается из свойства DateTimeFormatInfo.AMDesignator или DateTimeFormatInfo.PMDesignator текущих или заданных языка и региональных параметров. Указатель AM используется для всех значений времени с 0:00:00 (полночь) до 11:59:59,999. Указатель PM используется для всех значений времени с 12:00:00 (полдень) до 23:59:59,999. Используйте описатель "tt" для языков, где необходимо сохранить различие между AM и PM. В качестве примера можно привести японский язык, в котором указатели AM и PM различаются вторым, а не первым символом.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Вычитание должно быть последним элементом в классе символов</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Добавить атрибут "DebuggerDisplay"</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Добавить явное приведение</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Добавить имя элемента</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Добавление проверки NULL для всех параметров</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Добавить необязательный параметр в конструктор</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Добавить параметр в "{0}" (а также переопределения или реализации)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Добавить параметр в конструктор</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Добавьте ссылку на проект в "{0}".</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Добавьте ссылку в "{0}".</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Действия не могут быть пустыми.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Добавить имя элемента кортежа "{0}"</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Выровнять свернутые аргументы</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Выровнять свернутые параметры</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Условия чередования не могут быть комментариями</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Условия чередования не выполняют запись, и им невозможно присвоить имя</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Применить параметры заголовка файла</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Применять предпочтения для инициализации объекта или коллекции</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">Ожидаемая задача возвращает "{0}".</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">Ожидаемая задача не возвращает значение.</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Базовые классы содержат недоступные нереализованные члены</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Не удается применить изменения, так как возникла непредвиденная ошибка: "{0}"</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Невозможно включить класс \{0} в диапазон символов</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Номера групп записи должны быть меньше или равны Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Номер записи не может быть равен нулю</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;вывести&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="new">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;пропустить&gt;</target> <note /> </trans-unit> <trans-unit id="Change_namespace_to_0"> <source>Change namespace to '{0}'</source> <target state="translated">Изменить пространство имен на "{0}"</target> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Изменить на глобальное пространство имен</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Изменения запрещены, когда выполнение остановлено при исключении</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Изменения, внесенные в проект "{0}", не будут применены во время выполнения приложения.</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Настройка стиля кода {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Настройка серьезности {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Настройка серьезности для всех анализаторов ("{0}")</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Настройка серьезности для всех анализаторов</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Преобразовать в LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Добавить в "{0}"</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Преобразовать в класс</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Преобразовать в LINQ (форма вызова)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Преобразовать в запись</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Преобразовать в структуру записей</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Преобразовать в структуру</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Преобразовать тип в "{0}"</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Создать и назначить поле "{0}"</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Создать и назначить свойство "{0}"</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Создать и назначить оставшиеся как поля</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Создать и назначить оставшиеся как свойства</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Не изменяйте этот код. Разместите код очистки в методе "{0}".</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Текущее содержимое исходного файла "{0}" не соответствует созданному источнику. Все изменения, внесенные в этот файл во время отладки, не будут применены, пока содержимое файла не будет соответствовать созданному источнику.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Документ должен находиться в рабочей области, в которой была создана эта служба.</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Операция "Изменить и продолжить"</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Операция "Изменить и продолжить" запрещена модулем</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Изменения, внесенные в проект "{0}", препятствуют продолжению сеанса отладки: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">Параметр "изменить и продолжить" не поддерживается средой выполнения.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Ошибка при чтении файла "{0}": {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Ошибка при создании экземпляра CodeFixProvider.</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Ошибка при создании экземпляра CodeFixProvider "{0}".</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Пример:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Примеры:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Явно реализованные методы записей должны иметь имена параметров, соответствующие компилятору, созданному эквивалентом '{0}'</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Извлечь базовый класс...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Извлечение интерфейса…</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Извлечение локальной функции</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Извлечь метод</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Не удалось проанализировать поток данных для: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Исправить форматирование</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Исправьте опечатку "{0}"</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Форматировать документ</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Форматирование документа</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Создать операторы сравнения</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Создать конструктор в "{0}" (с полями)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Создать конструктор в "{0}" (со свойствами)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Создать для "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Создать параметр "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Создать параметр "{0}" (а также переопределения или реализации)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Недопустимый символ "\" в конце шаблона</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">Неправильное использование {x,y} в x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Реализовать "{0}" явно</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Реализовать "{0}" неявно</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Реализовать абстрактный класс</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Реализовать все интерфейсы явно</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Реализовать все интерфейсы неявно</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Реализовать все элементы явно</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Реализовать явно</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Реализовать неявно</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Реализовать оставшиеся элементы явно</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Реализовать через "{0}"</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Незавершенная escape-последовательность \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Добавить отступы для всех аргументов</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Добавить отступы для всех параметров</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Добавить отступы для свернутых аргументов</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Создать отступы для свернутых параметров</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">Встроенный метод "{0}"</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Сделать "{0}" встроенным и сохранить его</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Недостаточно шестнадцатеричных цифр</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Добавить константу</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Добавить поле</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Добавить локальный оператор</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Добавить переменную запроса</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Недопустимое имя группы: имя группы должно начинаться с буквы</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Сделать класс абстрактным</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Сделать статическим</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Инвертировать условный оператор</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">Ошибка в регулярном выражении</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Неправильная escape-последовательность \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Неправильная именованная обратная ссылка \k&lt;...&gt;</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Объединить с вложенным оператором "{0}"</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Объединить со следующим оператором "{0}"</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Объединить с внешним оператором "{0}"</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Объединить с предыдущим оператором "{0}"</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} должен возвращать поток, который поддерживает операции чтения и поиска.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Отсутствует управляющий символ</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Переместить содержимое в пространство имен...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Переместить файл в "{0}"</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Переместить файл в корневую папку проекта</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Переместить в пространство имен...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Вложенный квантификатор {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Отсутствует допустимое расположение для вставки вызова метода.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Отсутствуют закрывающие круглые скобки</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Операторы</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">Не удается обновить ссылку на свойство</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Извлечь "{0}"</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Извлечь '{0}' в '{1}'</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Извлечь элементы до базового типа...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Получение элементов для нового базового класса...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Отсутствуют элементы перед квантификатором {x,y}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">Ссылка на неопределенную группу</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Ссылка на неопределенное имя группы {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Ссылка на неопределенный номер группы {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Все управляющие символы. Сюда входят категории Cc, Cf, Cs, Co и Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">все управляющие символы</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Все диакритические знаки. Сюда входят категории Mn, Mc и Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">все диакритические знаки</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Все буквенные символы. Сюда входят символы Lu, Ll, Lt, Lm и Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">все буквенные символы</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Все числа. Сюда входят категории Nd, Nl и No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">все числа</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Все знаки препинания. Сюда входят категории Pc, Pd, Ps, Pe, Pi, Pf и Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">все знаки препинания</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Все символы-разделители. Сюда входят категории Zs, Zl и Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">все символы-разделители</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Все символы. Сюда входят категории Sm, Sc, Sk и So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">все символы</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Вы можете использовать символ вертикальной черты (|), чтобы сопоставить любую из серий шаблонов, где каждый шаблон отделяется символом |.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">чередование</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Символ точки (.) соответствует любому символу, кроме \n (символ новой строки, \u000A). Если шаблон регулярного выражения изменяется параметром RegexOptions.Singleline или если часть шаблона, содержащая класс символов ., изменяется параметром "s", . соответствует любому символу.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">любой символ</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Атомарные группы (которые в некоторых других модулях обработки регулярных выражений также называются частями выражения без обратного отслеживания, атомарными частями выражения или частями выражения, сопоставляемыми один раз) отключают обратное отслеживание. Обработчик регулярных выражений будет сопоставлять максимально возможное число символов во входной строке. Если дальнейшее сопоставление невозможно, он не будет выполнять обратное отслеживание, чтобы попытаться определить альтернативные совпадения шаблона. (Таким образом, часть выражения соответствует только тем строкам, которые соответствовали бы ей одной; она не пытается сопоставить строку на основе части выражения и любых следующих за ней частей выражения.) Этот параметр рекомендуется использовать, если известно, что обратное отслеживание не даст результата. Запрет выполнять ненужный поиск для обработчика регулярных выражений улучшает производительность.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">атомарная группа</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Соответствует символу возврата \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">символ возврата</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Сбалансированное определение группы удаляет определение ранее определенной группы и сохраняет (в текущей группе) интервал между ранее определенной группой и текущей группой. Значение "имя1" является текущей группой (необязательная), "имя2" является ранее определенной группой, а "часть выражения" является любым допустимым шаблоном регулярного выражения. Сбалансированное определение группы удаляет определение "имя2" и сохраняет интервал между "имя2" и "имя1" в "имя1". Если группа "имя2" не определена, соответствие определяется по обратному отслеживанию. Так как удаление последнего определения name2 приводит к раскрытию предыдущего определения "имя2", эта конструкция позволяет использовать стек записей для группы "имя2" в качестве счетчика для отслеживания вложенных конструкций, таких как круглые скобки или открывающие и закрывающие скобки. Сбалансированное определение группы использует "имя2" в качестве стека. Начальный символ каждой вложенной конструкции помещается в группу и ее коллекцию Group.Captures. При появлении совпадения для закрывающего символа соответствующий ему открывающий символ удаляется из группы, а коллекция Captures уменьшается на единицу. После обнаружения совпадений для всех открывающих и закрывающих символов всех вложенных конструкций "имя1" остается пустой.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">группа балансировки</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">базовая группа</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Соответствует символу колокольчика (сигнала) \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">символ колокольчика</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Соответствует символу возврата каретки \u000D. Обратите внимание, что \r не эквивалентен символу новой строки \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">символ возврата каретки</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">Вычитание класса символов дает набор символов, который является результатом исключения символов одного класса символов из другого класса символов. base_group является положительной или отрицательной группой символов или диапазоном. Компонент excluded_group — это другая положительная или отрицательная группа символов или другое выражение вычитания класса символов (то есть вы можете вкладывать выражения вычитания класса символов).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">вычитание класса символов</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">группа символов</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">комментарий</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Этот элемент языка пытается соответствовать одному из двух шаблонов в зависимости от того, может ли он соответствовать исходному шаблону. expression является исходным шаблоном для проверки соответствия, yes является шаблоном, когда выражение имеет соответствие, а no является необязательным шаблоном для проверки соответствия, если выражение не имеет соответствия.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">условное соответствие выражения</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Этот элемент языка пытается соответствовать одному из двух шаблонов в зависимости от того, установил ли он соответствие указанной группе записи. name является именем (или номером) группы записи, yes является выражением для проверки соответствия, если name (или number) имеет соответствие, а no является необязательным выражением для проверки соответствия в противном случае.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">условное соответствие группы</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">Привязка \G указывает, что соответствие должно находиться в том месте, где заканчивается предыдущее соответствие. При использовании этой привязки с методом Regex.Matches или Match.NextMatch она обеспечивает непрерывность всех соответствий.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">непрерывные соответствия</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Соответствует управляющему символу ASCII, где X — это буква управляющего символа. Например, \cC — это CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">управляющий символ</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d соответствует любой десятичной цифре. Это эквивалент шаблона регулярного выражения \p{Nd}, который включает в себя стандартные десятичные цифры 0–9, а также десятичные цифры из ряда других наборов символов. Если указано поведение, соответствующее ECMAScript, \d является эквивалентом [0–9].</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">символ десятичной цифры</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Символ решетки (#) помечает комментарий x-mode, который начинается с неэкранированного символа # в конце шаблона регулярного выражения и продолжается до конца строки. Чтобы использовать эту конструкцию, нужно либо включить параметр x (посредством встроенных параметров), либо указать значение RegexOptions.IgnorePatternWhitespace для параметра option при создании экземпляра объекта Regex или вызове статического метода Regex.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">комментарий в конце строки</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">Привязка \z указывает, что соответствие должно находиться в конце входной строки. Как и элемент языка $, \z игнорирует параметр RegexOptions.Multiline. В отличие от элемента языка \Z, \z не соответствует символу \n в конце строки. Поэтому она может соответствовать только последней строке входной строки.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">только конец строки</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">Привязка \Z указывает, что соответствие должно находиться в конце входной строки или перед \n в конце входной строки. Она идентична привязке $, за исключением того, что \Z игнорирует параметр RegexOptions.Multiline. Поэтому в многострочной строке она может соответствовать только концу последней строки или последней строке перед \n. Привязка \Z соответствует \n, но не соответствует значению \r\n (сочетание символов CR/LF). Чтобы обеспечить соответствие CR/LF, включите \r?\Z в шаблон регулярного выражения.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">конец строки или до последнего символа новой строки</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">Привязка $ указывает, что предыдущий шаблон должен находиться в конце входной строки или перед \n в конце входной строки. Если использовать $ с параметром RegexOptions.Multiline, соответствие также может находиться в конце строки. Привязка $ соответствует \n, но не соответствует значению \r\n (сочетанию символа возврата каретки и символа новой строки, которое также обозначается как CR/LF). Чтобы обеспечить соответствие сочетанию символов CR/LF, включите \r?$ в шаблон регулярного выражения.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">конец строковых данных или строки</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Соответствует escape-символу \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">escape-символ</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">исключенная группа</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">выражение</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Соответствует символу перевода страницы \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">символ перевода страницы</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Эта конструкция группировки включает или отключает указанные параметры в части выражения. Включаемые параметры указаны после вопросительного знака, а отключаемые параметры — после знака минус. Допустимые параметры: i Использовать сопоставление без учета регистра. m Использовать многострочный режим, где ^ и $ соответствуют началу и концу каждой строки (а не началу и концу входной строки). s Использовать однострочный режим, где точка (.) соответствует каждому символу (а не каждому символу, кроме \n). n Не записывать неименованные группы. Для записи подходят только явно именованные или нумерованные группы формы (?&lt;name&gt; часть выражения). x Исключить неэкранированный пробел из шаблона и включить комментарии после символа решетки (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">параметры группы</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Соответствует символу ASCII, где ## — это двузначный шестнадцатеричный код символа.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">шестнадцатеричный escape-символ</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">Конструкция (?# comment) позволяет включить встроенный комментарий в регулярное выражение. Обработчик регулярных выражений не использует никакие части этого комментария при сравнении шаблонов, однако комментарий включается в строку, возвращаемую методом Regex.ToString. Комментарий заканчивается на первой закрывающей скобке.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">встроенный комментарий</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Включает или отключает конкретные параметры сопоставления шаблонов для оставшейся части регулярного выражения. Включаемые параметры указаны после вопросительного знака, а отключаемые параметры — после знака минус. Допустимые параметры: i Использовать сопоставление без учета регистра. m Использовать многострочный режим, где ^ и $ соответствуют началу и концу каждой строки (вместо начала и конца входной строки). s Использовать однострочный режим, где точка (.) соответствует каждому символу (а не каждому символу, кроме \n). n Не записывать неименованные группы. Для записи подходят только явно именованные или нумерованные группы формы (?&lt;name&gt; часть выражения). x Исключить неэкранированный пробел из шаблона и включить комментарии после символа решетки (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">встроенные параметры</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Проблема с регулярным выражением: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">буква, строчная</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">буква, модификатор</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">буква, другая</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">буква, заглавная</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">буква, прописная</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">метка, с включением</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">метка, без пробелов</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">метка, объединение интервалов</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">Квантификатор {n,}? соответствует предыдущему элементу по меньшей мере n раз, где n — любое целое число, при этом данное количество должно быть минимальным. Это "ленивый" аналог "жадного" квантификатора {n,}</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">совпадение не менее "n" раз (ленивый)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">Квантификатор {n,} соответствует предыдущему элементу по меньшей мере n раз, где n — любое целое число. {n,} — это "жадный" квантификатор, "ленивым" аналогом которого является {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">совпадают по меньшей мере "n" раз</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">Квантификатор {n,m}? соответствует предыдущему элементу от n до m раз, где n и m — любые целые числа, при этом данное количество должно быть минимальным. Это "ленивый" аналог "жадного" квантификатора {n,m}</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">совпадение не менее "n" раз (ленивый)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">Квантификатор {n,m} соответствует предыдущему элементу по меньшей мере n раз, но не более m раз, где n и m — любые целые числа. {n,m} — это "жадный" квантификатор, "ленивым" аналогом которого является {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">совпадение от "m" до "n" раз</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">Квантификатор {n}? соответствует предыдущему элементу ровно n раз, где n — любое целое число. Это "ленивый" аналог "жадного" квантификатора {n}+</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">совпадение ровно "n" раз (ленивый)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">Квантификатор {n} соответствует предыдущему элементу ровно n раз, где n — любое целое число. {n} — это "жадный" квантификатор, "ленивым" аналогом которого является {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">совпадение ровно "n" раз</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">Квантификатор +? соответствует предыдущему элементу один или несколько раз, при этом данное количество должно быть минимальным. Это "ленивый" аналог "жадного" квантификатора +</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">совпадение один или несколько раз (ленивый)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">Квантификатор + соответствует предыдущему элементу один или несколько раз. Это эквивалент квантификатора {1,}. + — это "жадный" квантификатор, "ленивым" аналогом которого является +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">совпадение один или несколько раз</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">Квантификатор *? соответствует предыдущему элементу ни одного или несколько раз, при этом данное количество должно быть минимальным. Это "ленивый" аналог "жадного" квантификатора *</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">совпадение ни одного или несколько раз (ленивый)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">Квантификатор * соответствует предыдущему элементу ни одного или несколько раз. Это эквивалент квантификатора {0,}. * — это "жадный" квантификатор, "ленивым" аналогом которого является *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">совпадение ни одного или несколько раз</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">Квантификатор ?? соответствует предыдущему элементу ни одного раза или один раз, при этом данное количество должно быть минимальным. Это "ленивый" аналог "жадного" квантификатора ?</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">совпадение ни одного раза или один раз (ленивый)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">Квантификатор ? соответствует предыдущему элементу ни одного раза или один раз. Это эквивалент квантификатора {0,1}. ? — это "жадный" квантификатор, "ленивым" аналогом которого является ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">совпадение ни одного раза или один раз</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Эта конструкция группировки записывает соответствующую "часть выражения", где "часть выражения" — это любой допустимый шаблон регулярного выражения. Записи, использующие круглые скобки, нумеруются автоматически слева направо в порядке открывающих скобок в регулярном выражении, начиная с первой. Запись с нулевым номером — это текст, совпадающий со всем шаблоном регулярного выражения.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">соответствующая часть выражения</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">имя</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">имя1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">имя2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">имя-или-число</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Именованная или нумерованная обратная ссылка. Значение "имя" — это имя группы записи, определенное в шаблоне регулярного выражения.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">именованная обратная ссылка</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Записывает совпадающую часть выражения и позволяет вам обратиться к ней по имени или номеру. Значение "имя" — это допустимое имя группы, а "часть выражения" — любой допустимый шаблон регулярного выражения. Значение "имя" не должно содержать знаков пунктуации или начинаться с числа. Если параметр RegexOptions метода сопоставления шаблона регулярного выражения включает флаг RegexOptions.ExplicitCapture или если параметр n применяется к этой части выражения, единственным способом записи части выражения является явное именование групп записи.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">именованная соответствующая часть выражения</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Отрицательная группа символов указывает список символов, которые не должны присутствовать во входной строке для выполняемой проверки соответствия. Список символов настраивается в индивидуальном порядке. Можно сцепить два или более диапазонов символов. Например, чтобы указать диапазон десятичных цифр от 0 до 9, диапазон строчных букв от a до f и диапазон прописных букв от A до F, используйте [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">отрицательная группа символов</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Отрицательный диапазон символов указывает список символов, которые не должны присутствовать во входной строке для выполняемой проверки соответствия. firstCharacter — это первый символ диапазона, а lastCharacter — последний. Можно сцепить два или более диапазонов символов. Например, чтобы указать диапазон десятичных цифр от 0 до 9, диапазон строчных букв от a до f и диапазон прописных букв от A до F, используйте [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">отрицательный диапазон символов</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Конструкция регулярного выражения \P{ имя } соответствует любому символу, который не относится к общей категории Юникода или именованному блоку, где "имя" — это сокращение названия категории или имя именованного блока.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">отрицательная категория Юникода</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Соответствует символу новой строки \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">символ новой строки</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">нет</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D соответствует любому символу, не являющемуся цифрой. Это эквивалент шаблона регулярного выражения \P{Nd}. Если указано поведение, соответствующее ECMAScript, \D является эквивалентом [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">символ, не являющийся цифрой</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S соответствует любому символу, не являющемуся пробелом. Это эквивалент шаблона регулярного выражения [^\f\n\r\t\v\x85\p{Z}] либо противоположность шаблона регулярного выражения, эквивалентного \s, который сопоставляет символы пробелов. Если указано поведение, соответствующее ECMAScript, \S является эквивалентом [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">символ, не являющийся пробелом</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">Привязка \B указывает, что соответствие не должно находиться на границе слов. Это противоположность привязки \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">граница не по словам</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W соответствует любому символу, не образующему слово. Он соответствует любому символу, кроме относящихся к следующим категориям Юникода: Ll буква, строчная Lu буква, прописная Lt буква, заглавная Lo буква, другая Lm буква, модификатор Mn метка, без пробела Nd число, десятичная цифра Pc пунктуация, соединитель Если указано поведение, соответствующее ECMAScript, \W является эквивалентом [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">символ, не образующий слово</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Эта конструкция не записывает подстроку, соответствующую части выражения: Конструкция группы без записи обычно используется, когда квантификатор применяется к группе, но подстроки, записанные группой, не представляют интереса. Если регулярное выражение содержит вложенные конструкциb группировки, внешняя конструкция группы без записи не применяется к внутренним вложенным конструкциям группы.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">группа без записи</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">число, десятичная цифра</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">число, буква</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">число, другое</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Нумерованная обратная ссылка, где "номер" — порядковый номер группы записи в регулярном выражении. Например, \4 соответствует содержимому четвертой группы записи. Существует неоднозначность между восьмеричными escape-кодами (например, \16) и обратными ссылками \number, которые используют одну и ту же нотацию. Если подобная неоднозначность является проблемой, можно использовать нотацию \k&lt;name&gt;, которая не является неоднозначной и не может быть перепутана с восьмеричными кодами символов. Аналогичным образом шестнадцатеричные коды, такие как \xdd, не являются неоднозначными и не могут быть перепутаны с обратными ссылками.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">нумерованная обратная ссылка</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">другое, управление</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">другой, формат</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">другое, не назначено</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">другое, частное использование</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">другое, суррогат</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Положительная группа символов задает список символов, любой из которых может выводиться во входной строке для выполняемого сопоставления.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">положительная группа символов</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Положительная группа символов задает диапазон символов, любой из которых может выводиться во входной строке для выполняемого сопоставления. firstCharacter — это первый символ диапазона, а lastCharacter — последний.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">положительный диапазон символов</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">пунктуация, закрытие</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">пунктуация, соединитель</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">пунктуация, тире</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">пунктуация, конечная кавычка</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">пунктуация, начальная кавычка</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">пунктуация, открытие</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">пунктуация, другие</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">разделитель, строка</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">разделитель, абзац</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">разделитель, пробел</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">Привязка \A указывает, что совпадение должно находиться в начале входной строки. Она идентична привязке ^, за исключением того, что \A игнорирует параметр RegexOptions.Multiline. Поэтому она может соответствовать только началу первой строки в многострочной входной строке.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">только начало строки</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">Привязка ^ указывает, что следующий шаблон должен начинаться с позиции первого знака строки. Если вы используете ^ с параметром RegexOptions.Multiline, совпадение должно находиться в начале каждой строки.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">начало строковых данных или строки</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">часть выражения</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">символ, валюта</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">символ, математика</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">символ, модификатор</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">символ, другое</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Соответствует знаку табуляции \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">знак табуляции</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Конструкция регулярного выражения \p{ имя } соответствует любому символу, который относится к общей категории Юникода или именованному блоку, где "имя" — это сокращение названия категории или имя именованного блока.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">категория Юникода</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Соответствует блоку кода UTF-16, шестнадцатеричное значение которого равно ####.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">escape-символ Юникода</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Общая категория Юникода: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Соответствует знаку вертикальной табуляции \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">знак вертикальной табуляции</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s соответствует любому символу пробела. Она эквивалентна следующим escape-последовательностям и категориям Юникода: \f символ перевода страницы, \u000C \n символ новой строки, \u000A \r символ возврата каретки, \u000D \t знак табуляции, \u0009 \v знак вертикальной табуляции, \u000B \x85 многоточие или символ NEXT LINE (NEL)(…), \u0085 \p{Z} соответствует любому символу-разделителю Если указано поведение, соответствующее ECMAScript, \s является эквивалентом [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">символ пробела</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">Привязка \b указывает, что соответствие должно находиться между символом слова (элемент языка \w) и символом, не образующим слово, (элемент языка \W). Символы слова состоят из буквенно-цифровых символов и символов подчеркивания; не образующий слово символ — это любой символ, не являющийся буквенно-цифровым и символом подчеркивания. Соответствие также может находиться на границе слов в начале или конце строки. Привязка \b часто используется для обеспечения того, что часть строки соответствует всему слову, а не только его началу или концу.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">граница слов</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w соответствует любому символу слова. Символ слова относится к любой из следующих категорий Юникода: Ll буква, строчная Lu буква, прописная Lt буква, заглавная Lo буква, другая Lm буква, модификатор Mn метка, без пробела Nd число, десятичная цифра Pc пунктуация, соединитель Если указано поведение, соответствующее ECMAScript, \w является эквивалентом [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">символ слова</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">да</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Отрицательное утверждение просмотра вперед нулевой ширины, в котором для успешного сопоставления входная строка не должна соответствовать шаблону регулярного выражения в части выражения. Соответствующая строка не включается в результат сравнения. Отрицательное упреждающее утверждение нулевой ширины обычно используется либо в начале, либо в конце регулярного выражения. В начале выражения оно может определять определенный шаблон, который не должен совпадать, когда начало регулярного выражения определяет схожий, но более общий сравниваемый шаблон. В этом случае такое утверждение часто используется для ограничения обратного отслеживания. В конце регулярного выражения такое утверждение может определять часть выражения, которое не может находиться в конце сравнения.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">отрицательное утверждение просмотра вперед нулевой ширины</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Отрицательное утверждение просмотра назад нулевой ширины, где для успешного сопоставления "часть выражения" не должна находиться во входной строке слева от текущей позиции. Любая подстрока, не соответствующая "части выражения", не включается в результат сравнения. Отрицательные отстающие утверждения просмотра назад обычно используются в начале регулярных выражений. Шаблон, который они определяют, предотвращает совпадение в следующей строке. Они также используются для ограничения обратного отслеживания, когда один или несколько последних символов в группе записи не должны соответствовать символам шаблона регулярного выражения этой группы.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">отрицательное утверждение просмотра назад нулевой ширины</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Положительное утверждение просмотра вперед нулевой ширины, в котором для успешного сопоставления входная строка должна соответствовать шаблону регулярного выражения в части выражения. Соответствующая подстрока не включается в результат сравнения. Положительное упреждающее утверждение нулевой ширины не выполняет обратное отслеживание. Обычно такое утверждение находится в конце шаблона регулярного выражения. Оно определяет подстроку, которая должна быть найдена в конце строки для выполнения сравнения, но не может быть включена в него. Кроме того, это утверждение удобно использовать для предотвращения избыточного обратного отслеживания. Вы можете использовать положительное упреждающее утверждение нулевой ширины, чтобы убедиться, что определенная записанная группа начинается с текста, который соответствует подмножеству шаблона, определенного для этой записанной группы.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">положительное утверждение просмотра вперед нулевой ширины</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Положительное утверждение просмотра назад нулевой ширины, где для успешного сопоставления "часть выражения" должна находиться во входной строке, слева от текущей позиции. "Часть выражения" не включается в результат сравнения. Такое утверждение не выполняет обратное отслеживание. Положительные отстающие утверждения просмотра назад обычно используются в начале регулярных выражений. Шаблон, который они определяют, является необходимым условием для совпадения, хотя и не входит в его результат.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">положительное утверждение просмотра назад нулевой ширины</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Связанные сигнатуры методов, найденные в метаданных, не будут обновлены.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Удаление документа не поддерживается</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Удалить модификатор "async"</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Удалить ненужные приведения</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Удалить неиспользуемые переменные</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Замените '{0}' на '{1}'</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Разрешение меток конфликтов</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Грубая редакция</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Сортировать модификаторы доступности</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Разделить на последовательные операторы "{0}"</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Разделить на вложенные операторы "{0}"</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Поток должен поддерживать операции чтения и поиска.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Скрыть {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: освободить неуправляемые ресурсы (неуправляемые объекты) и переопределить метод завершения</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: переопределить метод завершения, только если "{0}" содержит код для освобождения неуправляемых ресурсов</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Соответствия целевого типа</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">Сборка "{0}", содержащая тип "{1}", ссылается на платформу .NET Framework, которая не поддерживается.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">Выделенный фрагмент содержит вызов локальной функции без ее объявления.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Слишком много операторов "|" в "(?()|)"</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Слишком много закрывающих круглых скобок</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Не удалось считать исходный файл "{0}" или PDB, созданный для содержащего проекта. Все изменения, внесенные в этот файл во время отладки, не будут применены, пока содержимое файла не будет соответствовать созданному источнику.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Неизвестное свойство</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Неизвестное свойство "{0}"</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Не удалось распознать управляющий символ</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Не удалось распознать escape-последовательность \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Не удалось распознать конструкцию группировки</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Набор [] без признака завершения</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Незавершенный комментарий (? #...)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Развернуть все аргументы</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Развернуть все параметры</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Развернуть все аргументы и удалить отступы для них</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Развернуть все параметры и добавить отступы для них</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Развернуть список аргументов</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Развернуть цепочку вызовов</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Развернуть выражение</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Развернуть список параметров</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Использовать тело блока для лямбда-выражений</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Использовать тело выражения для лямбда-выражений</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Использовать интерполированную буквальную строку</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Внимание! При преобразовании инструкции семантика может измениться.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Свернуть и выровнять цепочку вызовов</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Перенос и выравнивание выражения</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Свернуть и выровнять длинную цепочку вызовов</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Свернуть цепочку вызовов</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Свернуть каждый аргумент</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Свернуть каждый параметр</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Свернуть выражение</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Свернуть длинный список аргументов</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Свернуть длинную цепочку вызовов</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Свернуть длинный список параметров</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Перенос по словам</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Для переключения контекстов можно использовать панель навигации.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">"{0}" не может быть неопределенным или пустым.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">"{0}" не может быть пустым или содержать только пробел.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">Здесь "{0}" имеет значение, отличное от NULL.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">Здесь "{0}" может иметь значение NULL.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">10 000 000-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "fffffff" представляет семь наиболее значащих цифр дробной части секунды; то есть он представляет десятимиллионные доли секунды в значении даты и времени. Хотя десятимиллионные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">10 000 000-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "FFFFFFF" представляет семь наиболее значащих цифр дробной части секунды; то есть он представляет десятимиллионные доли секунды в значении даты и времени. При этом конечные нули или семь нулевых разрядов не отображаются. Хотя десятимиллионные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1 000 000-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "ffffff" представляет шесть наиболее значащих цифр дробной части секунды; то есть он представляет миллионные доли секунды в значении даты и времени. Хотя миллионные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1 000 000-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "FFFFFF" представляет шесть наиболее значащих цифр дробной части секунды; то есть он представляет миллионные доли секунды в значении даты и времени. При этом конечные нули или шесть нулевых разрядов не отображаются. Хотя миллионные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">100 000-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "fffff" представляет пять наиболее значащих цифр дробной части секунды; то есть он представляет стотысячные доли секунды в значении даты и времени. Хотя стотысячные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">100 000-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "FFFFF" представляет пять наиболее значащих цифр дробной части секунды; то есть он представляет стотысячные доли секунды в значении даты и времени. При этом конечные нули или пять нулевых разрядов не отображаются. Хотя стотысячные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">10 000-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "ffff" представляет четыре наиболее значащих цифры дробной части секунды; то есть он представляет десятитысячные доли секунды в значении даты и времени. Хотя десятитысячные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">10 000-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "FFFF" представляет четыре наиболее значащих цифры дробной части секунды; то есть он представляет десятитысячные доли секунды в значении даты и времени. При этом конечные нули или четыре нулевых разряда не отображаются. Хотя десятитысячные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1000-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">Описатель пользовательского формата "fff" представляет три наиболее значащих цифры в дробной части секунды, то есть представляет миллисекунды в значении даты и времени.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1000-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">Описатель пользовательского формата "FFF" представляет три наиболее значащих цифры в дробной части секунды, то есть представляет миллисекунды в значении даты и времени. При этом конечные нули или три нулевых разряда не отображаются.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">100-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">Описатель пользовательского формата "ff" представляет две наиболее значащих цифры в дробной части секунды, то есть представляет сотые доли секунды в значении даты и времени.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">100-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">Описатель пользовательского формата "FF" представляет две наиболее значащих цифры в дробной части секунды, то есть представляет сотые доли секунды в значении даты и времени. При этом конечные нули или два нулевых разряда не отображаются.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">10-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">10-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">Описатель пользовательского формата "F" представляет наиболее значащую цифру в дробной части секунды, то есть представляет десятые доли секунды в значении даты и времени. Если разряд равен нулю, ничего не отображается. Если описатель формата "F" используется без других описателей формата, он интерпретируется как описатель стандартного формата даты и времени "F". Число описателей формата "F", используемых с методом ParseExact, TryParseExact, ParseExact или TryParseExact, указывает максимальное количество наиболее значащих цифр в дробной части секунды, которые должны присутствовать для успешного анализа строки.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12-часовой формат времени (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Описатель пользовательского формата "h" представляет час в виде числа от 1 до 12, то есть час представлен в 12-часовом формате, который подсчитывает целые часы, начиная с полуночи или с полудня. Определенный час после полуночи невозможно отличить от такого же часа после полудня. Значение часа не округляется, а значение часа из одной цифры форматируется без начального нуля. Например, для времени 5:43 утра или вечера этот описатель пользовательского формата выводит "5". Если описатель формата "h" используется без других описателей пользовательского формата, он интерпретируется как описатель стандартного формата даты и времени и вызывает исключение FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12-часовой формат времени (2 цифры)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">Описатель пользовательского формата "hh" (плюс любое число дополнительных описателей "h") представляет час в виде числа от 01 до 12, то есть час представлен в 12-часовом формате, который подсчитывает целые часы, начиная с полуночи или с полудня. Определенный час после полуночи невозможно отличить от такого же часа после полудня. Значение часа не округляется, а значение часа из одной цифры форматируется с начальным нулем. Например, для времени 5:43 утра или вечера этот описатель формата выводит "05".</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24-часовой формат времени (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Описатель пользовательского формата "H" представляет час в виде числа от 0 до 23, то есть час представлен в начинающемся с нуля 24-часовом формате, отсчитывающем часы с полуночи. Значение часа из одной цифры форматируется без начального нуля. Если описатель формата "H" используется без других описателей пользовательского формата, он интерпретируется как описатель стандартного формата даты и времени и вызывает исключение FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24-часовой формат времени (2 цифры)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">Описатель пользовательского формата "HH" (плюс любое число дополнительных описателей "H") представляет час в виде числа от 00 до 23, то есть час представлен в начинающемся с нуля 24-часовом формате, отсчитывающем часы с полуночи. Значение часа из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">код</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">разделитель компонентов даты</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Описатель пользовательского формата "/" представляет разделитель компонентов даты, который позволяет различать годы, месяцы и дни. Соответствующий локализованный разделитель компонентов даты извлекается из свойства DateTimeFormatInfo.DateSeparator текущих или заданных языка и региональных параметров. Примечание. Чтобы изменить разделитель компонентов даты для определенной строки даты и времени, укажите знак разделения в разделителе литеральной строки. Например, строка пользовательского формата mm'/'dd'/'yyyy дает результирующую строку, в которой "/" всегда используется в качестве разделителя компонентов даты. Чтобы изменить разделитель компонентов даты для всех дат для языка и региональных параметров, измените значение свойства DateTimeFormatInfo.DateSeparator текущих языка и региональных параметров или создайте экземпляр объекта DateTimeFormatInfo, присвойте этот знак его свойству DateSeparator и вызовите перегрузку метода форматирования, включающую параметр IFormatProvider. Если описатель формата "/" используется без других описателей пользовательского формата, он интерпретируется как описатель стандартного формата даты и времени и вызывает исключение FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">день месяца (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">Описатель пользовательского формата "d" представляет день месяца в виде числа от 1 до 31. Значение дня из одной цифры форматируется без начального нуля. Если описатель формата "d" используется без других описателей пользовательского формата, он интерпретируется как описатель "d" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">день месяца (2 цифры)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">Описатель пользовательского формата "dd" представляет день месяца в виде числа от 01 до 31. Значение дня из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">День недели (сокращенно)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">Описатель пользовательского формата "ddd" представляет сокращенное название дня недели. Локализованное сокращенное название дня недели извлекается из свойства DateTimeFormatInfo.AbbreviatedDayNames текущих или заданных языка и региональных параметров.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">День недели (полностью)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">Описатель пользовательского формата "dddd" (плюс любое число дополнительных описателей "d") представляет полное название дня недели. Локализованное название дня недели извлекается из свойства DateTimeFormatInfo.DayNames текущих или заданных языка и региональных параметров.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">отменить</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">из метаданных</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">полный длинный формат даты и времени</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">Описатель стандартного формата "F" представляет строку пользовательского формата даты и времени, определяемую текущим свойством DateTimeFormatInfo.FullDateTimePattern. Например, строка пользовательского формата для инвариантных языка и региональных параметров имеет вид "dddd, dd MMMM yyyy HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">полный краткий формат даты и времени</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Описатель формата полной даты и краткого времени ("f") Описатель стандартного формата "f" представляет сочетание шаблонов длинной даты ("D") и краткого времени ("t"), разделенных пробелом.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">общий длинный формат даты и времени</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">Описатель стандартного формата "G" представляет сочетание шаблонов краткой даты ("d") и полного времени ("T"), разделенных пробелом.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">общий краткий формат даты и времени</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">Описатель стандартного формата "g" представляет сочетание шаблонов краткой даты ("d") и краткого времени ("t"), разделенных пробелом.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">универсальная перегрузка</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">универсальные перегрузки</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">в {0} ({1} — {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">в источнике (атрибут)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">Длинный формат даты</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">Описатель стандартного формата "D" представляет строку пользовательского формата даты и времени, определяемую текущим свойством DateTimeFormatInfo.LongDatePattern. Например, строка пользовательского формата для инвариантных языка и региональных параметров имеет вид "dddd, dd MMMM yyyy".</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">Длинный формат времени</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">Описатель стандартного формата "T" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.LongTimePattern конкретных языка и региональных параметров. Например, строка пользовательского формата для инвариантных языка и региональных параметров имеет вид "HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} "{1}"</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">минута (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">Описатель пользовательского формата "m" представляет минуту в виде числа от 0 до 59. Это число представляет собой целые минуты, истекшие с момента наступления последнего часа. Значение минуты из одной цифры форматируется без начального нуля. Если описатель формата "m" используется без других описателей пользовательского формата, он интерпретируется как описатель "m" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">минута (2 цифры)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">Описатель пользовательского формата "mm" (плюс любое число дополнительных описателей "m") представляет минуту в виде числа от 00 до 59. Это число представляет собой целые минуты, истекшие с момента наступления последнего часа. Значение минуты из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">месяц (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">Описатель пользовательского формата "M" представляет месяц в виде числа от 1 до 12 (или от 1 до 13 для календарей, состоящих из 13 месяцев). Значение месяца из одной цифры форматируется без начального нуля. Если описатель формата "M" используется без других описателей пользовательского формата, он интерпретируется как описатель "M" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">месяц (2 цифры)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">Описатель пользовательского формата "MM" представляет месяц в виде числа от 1 до 12 (или от 1 до 13 для календарей, состоящих из 13 месяцев). Значение месяца из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">месяц (сокращенно)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">Описатель пользовательского формата "MMM" представляет сокращенное название месяца. Локализованное сокращенное название месяца извлекается из свойства DateTimeFormatInfo.AbbreviatedMonthNames текущих или заданных языка и региональных параметров.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">День месяца</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">Описатель стандартного формата "M" или "m" представляет строку пользовательского формата даты и времени, определяемую текущим свойством DateTimeFormatInfo.MonthDayPattern. Например, строка пользовательского формата для инвариантных языка и региональных параметров имеет вид "MMMM dd".</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">месяц (полностью)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">Описатель пользовательского формата "MMMM" представляет полное название месяца. Локализованное название месяца извлекается из свойства DateTimeFormatInfo.MonthNames текущих или заданных языка и региональных параметров.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">перегрузка</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">перегрузки</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">Ключевое слово: {0}</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Инкапсулировать поле: "{0}" (и использовать свойство)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Инкапсулировать поле: "{0}" (но продолжать использовать поле)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Инкапсулировать поля (и использовать свойство)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Инкапсулировать поля (но продолжать использовать поле)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Не удалось извлечь интерфейс: выбранный элемент не находится внутри класса, интерфейса или структуры.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Не удалось извлечь интерфейс: тип не содержит никаких членов, которые можно извлечь в интерфейс.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">не удается создать итоговое дерево</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Тип параметров или возвращаемых данных не может иметь анонимный тип: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">Выбранный элемент не содержит активный оператор.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">Выбранный элемент содержит ошибку или неизвестный тип.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Параметр типа "{0}" скрыт другим параметром типа "{1}".</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">Этот адрес переменной используется внутри выбранного кода.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">Назначение значения полям, доступным только для чтения, следует выполнять в конструкторе: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">созданный код накладывается на скрытую часть кода</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Добавить дополнительные параметры в "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Добавить параметры в "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Создать делегирующий конструктор "{0}({1})"</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Создать конструктор "{0}({1})"</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Создать назначающий поля конструктор "{0}({1})"</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Создать Equals и GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Создать "Equals(object)"</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Создать "GetHashCode()"</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Создайте конструктор в "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Создать все</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Создать член перечисления "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Создать константу "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Создайте свойство только для чтения "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Создайте свойство "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Создайте поле только для чтения "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Создать поле "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Создайте локальную переменную "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Создать {0} "{1}" в новом файле</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Создать вложенный {0} "{1}"</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Глобальное пространство имен</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Реализовать интерфейс абстрактно</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Реализовать интерфейс через "{0}"</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Реализовать интерфейс</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Введите поле для "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Введите локальное значение для "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Введите константу для "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Введите локальную константу для "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Введите поле для всех вхождений "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Введите локальное значение для всех вхождений "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Введите константу для всех вхождений "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Введите локальную константу для всех вхождений "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Введите переменную запроса для всех вхождений "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Введите переменную запроса для "{0}"</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Анонимные типы:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">является</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Представляет объект, операции которого будут разрешаться во время выполнения.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">константа</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">Поле</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">локальная константа</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">локальная переменная</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">Этикетка</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">период/эра</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Описатели пользовательского формата "g" или "gg" (плюс любое число дополнительных описателей "g") представляют период или эру, например "время нашей эры". Операция форматирования игнорирует этот описатель, если форматируемая дата не имеет соответствующей строки периода или эры. Если описатель формата "g" используется без других описателей пользовательского формата, он интерпретируется как описатель "g" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">переменная диапазона</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">параметр</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">Входной</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Сводка:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Локальные переменные и параметры</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Параметры типа:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Возврат:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Исключения:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Примечания:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">создание источника для символов такого типа не поддерживается</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">сборка</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">расположение неизвестно</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Непредвиденный тип члена интерфейса: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Неизвестный тип символа</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Создать абстрактное свойство "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Создать абстрактный метод "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Создайте метод "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">Запрошенная сборка уже загружена из "{0}".</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Символ не имеет значка.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Асинхронный метод не может иметь параметры ref/out: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Член определен в метаданных.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Вы можете изменить только подпись конструктора, индексатора, метода или делегата.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Этот символ имеет связанные с ним определения или ссылки в метаданных. Изменение его подписи может привести к ошибкам сборки. Продолжить?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Изменить подпись...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Создать новый тип...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Сбой диагностического анализатора пользователей.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">Анализатор "{0}" создал исключение типа "{1}" с сообщением "{2}".</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">Анализатор "{0}" создал следующее исключение: "{1}".</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Упрощение имен</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Упрощение доступа для членов</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Удалить квалификацию</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Возникла неизвестная ошибка</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Доступные</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Недоступно ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">в исходном</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">в файле подавляемых предупреждений</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Удалить подавление {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Удалить подавление</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;Ожидание&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Примечание. Два раза нажмите клавишу TAB, чтобы вставить фрагмент кода "{0}".</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Явно внедрите интерфейс с шаблоном освобождения</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Внедрите интерфейс с шаблоном освобождения</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Повторное рассмотрение {0} (в настоящее время "{1}")</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">Аргумент не может содержать элемент NULL.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">Аргумент не может быть пустым.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">Зарегистрированное диагностическое событие с идентификатором "{0}" не поддерживается в анализаторе.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Вычисление изменения кода для исправления всех вхождений...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Исправить все случаи</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Документ</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Проект</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Решение</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: освободить управляемое состояние (управляемые объекты)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: установить значение NULL для больших полей</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Компилятор</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">В реальном времени</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">значение enum</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">поле const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">метод</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">Оператор</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">конструктор</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">автосвойство</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">Свойство</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">метод доступа к событию</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">дата и время в формате RFC1123</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Описатель стандартного формата "R" или "r" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.RFC1123Pattern. Шаблон отражает определенный стандарт, а само свойство доступно только для чтения. Таким образом, данное значение всегда одинаково, независимо от используемых языка и региональных параметров или от указанного поставщика формата. Строка пользовательского формата имеет вид "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". Когда используется этот описатель стандартного формата, операция форматирования или анализа всегда использует инвариантные язык и региональные параметры.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">дата и время для кругового пути</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">Описатель стандартного формата "O" или "o" представляет строку пользовательского формата даты и времени с использованием шаблона, который сохраняет сведения о часовом поясе и дает результирующую строку, соответствующую стандарту ISO 8601. Для значений DateTime этот описатель формата предназначен для сохранения значений даты и времени вместе со свойством DateTime.Kind в тексте. Отформатированную строку можно проанализировать в обратном направлении с помощью метода DateTime.Parse(String, IFormatProvider, DateTimeStyles) или DateTime.ParseExact, если параметр styles имеет значение DateTimeStyles.RoundtripKind. Описатель стандартного формата "O" или "o" соответствует строке пользовательского формата "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" для значений DateTime и строке пользовательского формата "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" для значений DateTimeOffset. В этой строке пары одинарных кавычек, разделяющие отдельные символы, такие как дефисы, двоеточия и буква "T", указывают, что этот отдельный знак является литералом, который не может быть изменен. Апострофы не отображаются в выходной строке. Описатель стандартного формата "O" или "o" (и строка пользовательского формата "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK") использует преимущества трех описанных в ISO 8601 способов представления сведений о часовом поясе, для сохранения свойства Kind значений DateTime: Компонент часового пояса в значениях даты и времени DateTimeKind.Local является смещением от UTC (например, +01:00, -07:00). Все значения DateTimeOffset также представлены в этом формате. Компонент часового пояса для значений даты и времени DateTimeKind.Utc использует "Z" (что означает нулевое смещение) для представления времени в формате UTC. Значения даты и времени DateTimeKind.Unspecified не содержат сведения о часовом поясе. Так как описатель стандартного формата "O" или "o" соответствует международным стандарту, операция форматирования или анализа, использующая этот описатель, всегда использует инвариантные язык и региональные параметры, а также григорианский календарь. Строки, передаваемые в методы Parse, TryParse, ParseExact и TryParseExact для значений DateTime и DateTimeOffset, можно проанализировать с помощью описателя формата "O" или "o", если они имеют один из этих форматов. В случае объектов DateTime вызываемая перегрузка анализа должна также включать параметр styles со значением DateTimeStyles.RoundtripKind. Обратите внимание, что при вызове метода анализа со строкой пользовательского формата, соответствующей описателю формата "O" или "o", результаты будут не такими, как для "O" или "o". Это вызвано тем, что методы анализа, использующие строку пользовательского формата, не могут анализировать строковое представление значений даты и времени, в которых отсутствует компонент часового пояса или используется "Z" для обозначения времени в формате UTC.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">секунда (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">Описатель пользовательского формата "s" представляет секунды в виде числа от 0 до 59. Это число представляет собой целые секунды, истекшие с момента наступления последней минуты. Значение секунд из одной цифры форматируется без начального нуля. Если описатель формата "s" используется без других описателей пользовательского формата, он интерпретируется как описатель "s" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">секунда (2 цифры)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">Описатель пользовательского формата "ss" (плюс любое число дополнительных описателей "s") представляет секунды в виде числа от 00 до 59. Это число представляет собой целые секунды, истекшие с момента наступления последней минуты. Значение секунд из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">Краткий формат даты</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">Описатель стандартного формата "d" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.ShortDatePattern конкретных языка и региональных параметров. Например, строка пользовательского формата, возвращаемая свойством ShortDatePattern для инвариантных языка и региональных параметров, имеет вид "MM/dd/yyyy".</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">Краткий формат времени</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">Описатель стандартного формата "t" представляет строку пользовательского формата даты и времени, определяемую текущим свойством DateTimeFormatInfo.ShortTimePattern. Например, строка пользовательского формата для инвариантных языка и региональных параметров имеет вид "HH:mm".</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">Формат даты-времени для сортировки</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Описатель стандартного формата "s" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.SortableDateTimePattern. Шаблон отражает определенный стандарт (ISO 8601), а само свойство доступно только для чтения. Таким образом, данное значение всегда одинаково, независимо от используемых языка и региональных параметров или от указанного поставщика формата. Строка пользовательского формата имеет вид "yyyy'-'MM'-'dd'T'HH':'mm':'ss". Описатель формата "s" предназначен для получения результирующих строк, которые согласованным образом сортируются по возрастанию или убыванию на основе значений даты и времени. В результате, хотя описатель стандартного формата "s" представляет значение даты и времени в согласованном формате, операция форматирования не изменяет значение объекта даты и времени, которое форматируется, чтобы отразить его свойство DateTime.Kind или его значение DateTimeOffset.Offset. Например, результирующие строки, полученные при форматировании значений даты и времени 2014-11-15T18:32:17+00:00 и 2014-11-15T18:32:17+08:00, идентичны. Когда используется этот описатель стандартного формата, операция форматирования или анализа всегда использует инвариантные язык и региональные параметры.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">статический конструктор</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'"символ" не может быть пространством имен.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">разделитель компонентов времени</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Описатель пользовательского формата ":" представляет разделитель компонентов времени, который позволяет различать часы, минуты и секунды. Соответствующий локализованный разделитель компонентов времени извлекается из свойства DateTimeFormatInfo.TimeSeparator текущих или заданных языка и региональных параметров. Примечание. Чтобы изменить разделитель компонентов времени для определенной строки даты и времени, укажите знак разделения в разделителе литеральной строки. Например, строка пользовательского формата hh'_'dd'_'ss дает результирующую строку, в которой "_" (символ подчеркивания) всегда используется в качестве разделителя компонентов времени. Чтобы изменить разделитель компонентов времени для всех дат для языка и региональных параметров, измените значение свойства DateTimeFormatInfo.TimeSeparator текущих языка и региональных параметров или создайте экземпляр объекта DateTimeFormatInfo, присвойте этот знак его свойству TimeSeparator и вызовите перегрузку метода форматирования, включающую параметр IFormatProvider. Если описатель формата ":" используется без других описателей пользовательского формата, он интерпретируется как описатель стандартного формата даты и времени и вызывает исключение FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">Часовой пояс</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Описатель пользовательского формата "K" представляет сведения о часовом поясе для значения даты и времени. Если этот описатель формата используется со значениями DateTime, результирующая строка определяется значением свойства DateTime.Kind: Для локального часового пояса (значение DateTimeKind.Local свойства DateTime.Kind) этот описатель равнозначен описателю "zzz" и дает результирующую строку, содержащую локальное смещение от UTC, например, "-07:00". Для времени в формате UTC (значение DateTimeKind.Utc свойства DateTime.Kind) результирующая строка включает символ "Z" для обозначения даты в формате UTC. Для времени из неуказанного часового пояса (значение DateTimeKind.Unspecified свойства DateTime.Kind) результат эквивалентен String.Empty. Для значений DateTimeOffset описатель формата "K" равнозначен описателю формата "zzz" и дает результирующую строку, содержащую смещение значения DateTimeOffset от UTC. Если описатель формата "K" используется без других описателей пользовательского формата, он интерпретируется как описатель стандартного формата даты и времени и вызывает исключение FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">ограничение типа</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">параметр типа</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">атрибут</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Заменить "{0}" и "{1}" свойством</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Заменить "{0}" свойством</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Неявная ссылка на метод</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Создать тип "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Создать {0} "{1}"</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Измените "{0}" на "{1}".</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Невызванный метод нельзя заменить свойством.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Заменить на свойство можно только методы с одним аргументом, который не является объявлением внешней переменной.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Экземпляр анализатора {0} невозможно создать из {1}: {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">Сборка {0} не содержит анализаторов.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Не удалось загрузить сборку анализатора {0}: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Преобразовать метод в синхронный</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">из {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Найти и установить последнюю версию</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Использовать локальную версию "{0}"</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Использовать локально установленное ПО "{0}" версии "{1}" Эта версия используется в: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Найти и установить последнюю версию "{0}"</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Установить с помощью диспетчера пакетов...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Установить "{0} {1}"</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Установить версию "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Создать переменную "{0}"</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Классы</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Константы</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Делегаты</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Перечисления</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">События</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Методы расширения</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Поля</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Интерфейсы</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Локальные переменные</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Методы</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Модули</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Пространства имен</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Свойства</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Структуры</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Параметры:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Variadic SignatureHelpItem должен иметь хотя бы один параметр.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Заменить "{0}" методом</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Заменить "{0}" методами</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">На свойство имеется неявная ссылка</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Свойство нельзя безопасно заменить на вызов метода</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Преобразовать в интерполированную строку</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Переместить тип в {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Переименовать файл в {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Переименовать тип в {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Удалить тег</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Добавить отсутствующие узлы параметров</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Преобразовать содержащую область в асинхронную</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Преобразовать содержащую область в асинхронную (задача возврата)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Неизвестно)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Использовать тип платформы</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Установить пакет "{0}"</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">проект: {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">Определить полностью "{0}"</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Удалить ссылку на "{0}".</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Ключевые слова</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Фрагменты кода</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Все строчные</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Все прописные</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Первое слово с прописной буквы</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">ВсеЧастиСПрописнойБуквы</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Удалить документ "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Добавить документ "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Добавить имя аргумента "{0}"</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Принимать "{0}"</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Принимать оба</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Принимать нижнее</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Принимать верхнее</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Удалить неиспользуемые переменные</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Преобразовать в двоичное</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Преобразовать в десятичное</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Преобразовать в шестнадцатеричное</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Разделять тысячи</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Разделять слова</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Разделять полубайты</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Удалить разделители</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Добавить параметр в "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Создать конструктор...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Выберите члены, которые будут использоваться как параметры конструктора</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Выберите члены, которые будут использоваться в Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Создать переопределения...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Выберите члены для переопределения</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Добавить проверку значений NULL</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Добавить проверку string.IsNullOrEmpty</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Добавить проверку string.IsNullOrWhiteSpace</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Инициализировать поле "{0}"</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Инициализировать свойство "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Добавить проверки значений NULL</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Создать операторы</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Реализация {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">В отчете о диагностике "{0}" используется исходное расположение "{1}", которое не входит в анализируемую компиляцию.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">В отчете о диагностике "{0}" используется исходное расположение "{1}" в файле "{2}". Это расположение находится за пределами указанного файла.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">в {0} (проект {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Добавьте модификаторы доступности</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Переместить объявление рядом со ссылкой</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Преобразовать в полное свойство</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Предупреждение. Метод переопределяет символ из метаданных.</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Использовать {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Добавьте имя аргумента "{0}" (включая конечные аргументы)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">локальная функция</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">индексатор</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Неоднозначный тип псевдонима "{0}"</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Внимание! Коллекция изменена во время итерации.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Внимание! Переменная итерации вышла за границу функции.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Внимание! Коллекция может быть изменена во время итерации.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">Универсальный полный формат даты-времени</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">Описатель стандартного формата "U" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.FullDateTimePattern заданных языка и региональных параметров. Этот шаблон совпадает с шаблоном "F". Однако перед форматированием значение DateTime автоматически преобразуется в формат UTC.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">Универсальный формат даты-времени для сортировки</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">Описатель стандартного формата "u" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.UniversalSortableDateTimePattern. Шаблон отражает определенный стандарт, а само свойство доступно только для чтения. Таким образом, данное значение всегда одинаково, независимо от используемых языка и региональных параметров или указанного поставщика формата. Строка пользовательского формата имеет вид "yyyy'-'MM'-'dd HH':'mm':'ss'Z". Когда применяется этот описатель стандартного формата, операция форматирования или анализа всегда использует инвариантные язык и региональные параметры. Хотя результирующая строка должна выражать время в формате UTC, во время операции форматирования преобразование исходного значения DateTime не выполняется. Поэтому перед форматированием необходимо преобразовать значение DateTime в формат UTC, вызвав метод DateTime.ToUniversalTime.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">обновление директив usage во вложенном элементе</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">обновление директив usage во вложенном проекте</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">обновление директив usage во вложенном типе</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">обновление директив usage в зависимых проектах</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">смещение от UTC в часах и минутах</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">При использовании значений типа DateTime описатель пользовательского формата "zzz" представляет значение смещения локального часового пояса операционной системы от UTC, имеющее знак и измеряемое в часах и минутах. Оно не отражает значение свойства DateTime.Kind экземпляра. Поэтому описатель формата "zzz" не рекомендуется использовать со значениями DateTime. При использовании значений DateTimeOffset этот описатель формата представляет смещение значения DateTimeOffset от UTC в часах и минутах. Смещение всегда отображается с предшествующим знаком. Знак "плюс" (+) обозначает часы опережения UTC, а знак "минус" (-) — часы отставания от UTC. Смещение из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">смещение от UTC в часах (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">При использовании значений типа DateTime описатель пользовательского формата "z" представляет значение смещения локального часового пояса операционной системы от UTC, имеющее знак и измеряемое в часах. Оно не отражает значение свойства DateTime.Kind экземпляра. Поэтому описатель формата "z" не рекомендуется использовать со значениями DateTime. При использовании значений DateTimeOffset этот описатель формата представляет смещение значения DateTimeOffset от UTC в часах. Смещение всегда отображается с предшествующим знаком. Знак "плюс" (+) обозначает часы опережения UTC, а знак "минус" (-) — часы отставания от UTC. Смещение из одной цифры форматируется без начального нуля. Если описатель формата "z" используется без других описателей пользовательского формата, он интерпретируется как описатель стандартного формата даты и времени и вызывает исключение FormatException.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">смещение от UTC в часах (2 цифры)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">При использовании значений типа DateTime описатель пользовательского формата "zz" представляет значение смещения локального часового пояса операционной системы от UTC, имеющее знак и измеряемое в часах. Оно не отражает значение свойства DateTime.Kind экземпляра. Поэтому описатель формата "zz" не рекомендуется использовать со значениями DateTime. При использовании значений DateTimeOffset этот описатель формата представляет смещение значения DateTimeOffset от UTC в часах. Смещение всегда отображается с предшествующим знаком. Знак "плюс" (+) обозначает часы опережения UTC, а знак "минус" (-) — часы отставания от UTC. Смещение из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">Диапазон [x-y] в обратном порядке</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">год (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">Описатель пользовательского формата "y" представляет год как число из одной или двух цифр. Если в значении года больше двух цифр, в результате появятся только два младших разряда. Если первый разряд такого двузначного года является нулевым (например, 2008), число форматируется без начального нуля. Если описатель формата "y" используется без других описателей пользовательского формата, он интерпретируется как описатель "y" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">год (2 цифры)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">Описатель пользовательского формата "yy" представляет год как число из двух цифр. Если в значении года больше двух значащих цифр, в результате появятся только два младших разряда. Если двузначное значение года содержит меньше двух значащих цифр, число дополняется начальными нулями, чтобы получить два разряда. В операции анализа двузначное значение года, проанализированное с использованием описателя пользовательского формата "yy", интерпретируется на основе Calendar.TwoDigitYearMax текущего календаря поставщика формата. В следующем примере строковое представление даты с двузначным годом анализируется с использованием григорианского календаря для языка и региональных параметров en-US, которые в данном случае являются текущими. Затем объект CultureInfo текущих языка и региональных параметров изменяется для использования объекта GregorianCalendar, свойство TwoDigitYearMax которого было изменено.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">год (3–4 цифры)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">Описатель пользовательского формата "yyy" представляет год как число из по меньшей мере трех цифр. Если в значении года больше трех значащих цифр, они включаются в результирующую строку. Если значение года содержит меньше трех цифр, число дополняется начальными нулями, чтобы получить три разряда.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">год (4 цифры)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">Описатель пользовательского формата "yyyy" представляет год как число из по меньшей мере четырех цифр. Если в значении года больше четырех значащих цифр, они включаются в результирующую строку. Если значение года содержит меньше четырех цифр, число дополняется начальными нулями, чтобы получить четыре разряда.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">год (5 цифр)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">Описатель пользовательского формата "yyyyy" (плюс любое число дополнительных описателей "y") представляет год как число из по меньшей мере пяти цифр. Если в значении года больше пяти значащих цифр, они включаются в результирующую строку. Если значение года содержит меньше пяти цифр, число дополняется начальными нулями, чтобы получить пять разрядов. При наличии дополнительных описателей "y" число дополняется таким количеством начальных нулей, которое позволяет получить нужное число описателей "y".</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">Месяц года</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">Описатель стандартного формата "Y" или "y" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.YearMonthPattern заданных языка и региональных параметров. Например, строка пользовательского формата для инвариантных языка и региональных параметров имеет вид "yyyy MMMM".</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="ru" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (сокращенно)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">Описатель пользовательского формата "t" представляет первый символ указателя AM/PM. Соответствующий локализованный указатель извлекается из свойства DateTimeFormatInfo.AMDesignator или DateTimeFormatInfo.PMDesignator текущих или заданных языка и региональных параметров. Указатель AM используется для всех значений времени с 0:00:00 (полночь) до 11:59:59,999. Указатель PM используется для всех значений времени с 12:00:00 (полдень) до 23:59:59,999. Если описатель формата "t" используется без других описателей пользовательского формата, он интерпретируется как описатель "t" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (полностью)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">Описатель пользовательского формата "tt" (плюс любое число дополнительных описателей "t") представляет весь указатель AM/PM. Соответствующий локализованный указатель извлекается из свойства DateTimeFormatInfo.AMDesignator или DateTimeFormatInfo.PMDesignator текущих или заданных языка и региональных параметров. Указатель AM используется для всех значений времени с 0:00:00 (полночь) до 11:59:59,999. Указатель PM используется для всех значений времени с 12:00:00 (полдень) до 23:59:59,999. Используйте описатель "tt" для языков, где необходимо сохранить различие между AM и PM. В качестве примера можно привести японский язык, в котором указатели AM и PM различаются вторым, а не первым символом.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Вычитание должно быть последним элементом в классе символов</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">Добавить атрибут "DebuggerDisplay"</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Добавить явное приведение</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Добавить имя элемента</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Добавление проверки NULL для всех параметров</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Добавить необязательный параметр в конструктор</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">Добавить параметр в "{0}" (а также переопределения или реализации)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Добавить параметр в конструктор</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">Добавьте ссылку на проект в "{0}".</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">Добавьте ссылку в "{0}".</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Действия не могут быть пустыми.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">Добавить имя элемента кортежа "{0}"</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Выровнять свернутые аргументы</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Выровнять свернутые параметры</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Условия чередования не могут быть комментариями</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Условия чередования не выполняют запись, и им невозможно присвоить имя</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Применить параметры заголовка файла</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Применять предпочтения для инициализации объекта или коллекции</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">Ожидаемая задача возвращает "{0}".</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">Ожидаемая задача не возвращает значение.</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Базовые классы содержат недоступные нереализованные члены</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Не удается применить изменения, так как возникла непредвиденная ошибка: "{0}"</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Невозможно включить класс \{0} в диапазон символов</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Номера групп записи должны быть меньше или равны Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Номер записи не может быть равен нулю</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;вывести&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="new">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;пропустить&gt;</target> <note /> </trans-unit> <trans-unit id="Change_namespace_to_0"> <source>Change namespace to '{0}'</source> <target state="translated">Изменить пространство имен на "{0}"</target> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Изменить на глобальное пространство имен</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Изменения запрещены, когда выполнение остановлено при исключении</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">Изменения, внесенные в проект "{0}", не будут применены во время выполнения приложения.</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application"> <source>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</source> <target state="new">Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">Настройка стиля кода {0}</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">Настройка серьезности {0}</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Настройка серьезности для всех анализаторов ("{0}")</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Настройка серьезности для всех анализаторов</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">Преобразовать в LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">Добавить в "{0}"</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Преобразовать в класс</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">Преобразовать в LINQ (форма вызова)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Преобразовать в запись</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Преобразовать в структуру записей</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Преобразовать в структуру</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Преобразовать тип в "{0}"</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">Создать и назначить поле "{0}"</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">Создать и назначить свойство "{0}"</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Создать и назначить оставшиеся как поля</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Создать и назначить оставшиеся как свойства</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Не изменяйте этот код. Разместите код очистки в методе "{0}".</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Текущее содержимое исходного файла "{0}" не соответствует созданному источнику. Все изменения, внесенные в этот файл во время отладки, не будут применены, пока содержимое файла не будет соответствовать созданному источнику.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Документ должен находиться в рабочей области, в которой была создана эта служба.</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Операция "Изменить и продолжить"</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Операция "Изменить и продолжить" запрещена модулем</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">Изменения, внесенные в проект "{0}", препятствуют продолжению сеанса отладки: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">Параметр "изменить и продолжить" не поддерживается средой выполнения.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">Ошибка при чтении файла "{0}": {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">Ошибка при создании экземпляра CodeFixProvider.</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">Ошибка при создании экземпляра CodeFixProvider "{0}".</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Пример:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Примеры:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Явно реализованные методы записей должны иметь имена параметров, соответствующие компилятору, созданному эквивалентом '{0}'</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Извлечь базовый класс...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Извлечение интерфейса…</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Извлечение локальной функции</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Извлечь метод</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">Не удалось проанализировать поток данных для: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Исправить форматирование</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">Исправьте опечатку "{0}"</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Форматировать документ</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Форматирование документа</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Создать операторы сравнения</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">Создать конструктор в "{0}" (с полями)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">Создать конструктор в "{0}" (со свойствами)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">Создать для "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">Создать параметр "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">Создать параметр "{0}" (а также переопределения или реализации)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Недопустимый символ "\" в конце шаблона</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">Неправильное использование {x,y} в x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">Реализовать "{0}" явно</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">Реализовать "{0}" неявно</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Реализовать абстрактный класс</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Реализовать все интерфейсы явно</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Реализовать все интерфейсы неявно</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Реализовать все элементы явно</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Реализовать явно</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Реализовать неявно</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Реализовать оставшиеся элементы явно</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">Реализовать через "{0}"</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Незавершенная escape-последовательность \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Добавить отступы для всех аргументов</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Добавить отступы для всех параметров</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Добавить отступы для свернутых аргументов</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Создать отступы для свернутых параметров</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">Встроенный метод "{0}"</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">Сделать "{0}" встроенным и сохранить его</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Недостаточно шестнадцатеричных цифр</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Добавить константу</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Добавить поле</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Добавить локальный оператор</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Добавить переменную запроса</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Недопустимое имя группы: имя группы должно начинаться с буквы</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Сделать класс абстрактным</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Сделать статическим</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Инвертировать условный оператор</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">Ошибка в регулярном выражении</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Неправильная escape-последовательность \p{X}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Неправильная именованная обратная ссылка \k&lt;...&gt;</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">Объединить с вложенным оператором "{0}"</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Объединить со следующим оператором "{0}"</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Объединить с внешним оператором "{0}"</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Объединить с предыдущим оператором "{0}"</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} должен возвращать поток, который поддерживает операции чтения и поиска.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Отсутствует управляющий символ</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">Переместить содержимое в пространство имен...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Переместить файл в "{0}"</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Переместить файл в корневую папку проекта</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Переместить в пространство имен...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">Вложенный квантификатор {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Отсутствует допустимое расположение для вставки вызова метода.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Отсутствуют закрывающие круглые скобки</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Операторы</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">Не удается обновить ссылку на свойство</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">Извлечь "{0}"</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">Извлечь '{0}' в '{1}'</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Извлечь элементы до базового типа...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Получение элементов для нового базового класса...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Отсутствуют элементы перед квантификатором {x,y}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">Ссылка на неопределенную группу</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">Ссылка на неопределенное имя группы {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Ссылка на неопределенный номер группы {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Все управляющие символы. Сюда входят категории Cc, Cf, Cs, Co и Cn.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">все управляющие символы</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Все диакритические знаки. Сюда входят категории Mn, Mc и Me.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">все диакритические знаки</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Все буквенные символы. Сюда входят символы Lu, Ll, Lt, Lm и Lo.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">все буквенные символы</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Все числа. Сюда входят категории Nd, Nl и No.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">все числа</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Все знаки препинания. Сюда входят категории Pc, Pd, Ps, Pe, Pi, Pf и Po.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">все знаки препинания</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Все символы-разделители. Сюда входят категории Zs, Zl и Zp.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">все символы-разделители</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Все символы. Сюда входят категории Sm, Sc, Sk и So.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">все символы</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Вы можете использовать символ вертикальной черты (|), чтобы сопоставить любую из серий шаблонов, где каждый шаблон отделяется символом |.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">чередование</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Символ точки (.) соответствует любому символу, кроме \n (символ новой строки, \u000A). Если шаблон регулярного выражения изменяется параметром RegexOptions.Singleline или если часть шаблона, содержащая класс символов ., изменяется параметром "s", . соответствует любому символу.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">любой символ</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Атомарные группы (которые в некоторых других модулях обработки регулярных выражений также называются частями выражения без обратного отслеживания, атомарными частями выражения или частями выражения, сопоставляемыми один раз) отключают обратное отслеживание. Обработчик регулярных выражений будет сопоставлять максимально возможное число символов во входной строке. Если дальнейшее сопоставление невозможно, он не будет выполнять обратное отслеживание, чтобы попытаться определить альтернативные совпадения шаблона. (Таким образом, часть выражения соответствует только тем строкам, которые соответствовали бы ей одной; она не пытается сопоставить строку на основе части выражения и любых следующих за ней частей выражения.) Этот параметр рекомендуется использовать, если известно, что обратное отслеживание не даст результата. Запрет выполнять ненужный поиск для обработчика регулярных выражений улучшает производительность.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">атомарная группа</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Соответствует символу возврата \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">символ возврата</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Сбалансированное определение группы удаляет определение ранее определенной группы и сохраняет (в текущей группе) интервал между ранее определенной группой и текущей группой. Значение "имя1" является текущей группой (необязательная), "имя2" является ранее определенной группой, а "часть выражения" является любым допустимым шаблоном регулярного выражения. Сбалансированное определение группы удаляет определение "имя2" и сохраняет интервал между "имя2" и "имя1" в "имя1". Если группа "имя2" не определена, соответствие определяется по обратному отслеживанию. Так как удаление последнего определения name2 приводит к раскрытию предыдущего определения "имя2", эта конструкция позволяет использовать стек записей для группы "имя2" в качестве счетчика для отслеживания вложенных конструкций, таких как круглые скобки или открывающие и закрывающие скобки. Сбалансированное определение группы использует "имя2" в качестве стека. Начальный символ каждой вложенной конструкции помещается в группу и ее коллекцию Group.Captures. При появлении совпадения для закрывающего символа соответствующий ему открывающий символ удаляется из группы, а коллекция Captures уменьшается на единицу. После обнаружения совпадений для всех открывающих и закрывающих символов всех вложенных конструкций "имя1" остается пустой.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">группа балансировки</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">базовая группа</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Соответствует символу колокольчика (сигнала) \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">символ колокольчика</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Соответствует символу возврата каретки \u000D. Обратите внимание, что \r не эквивалентен символу новой строки \n.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">символ возврата каретки</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">Вычитание класса символов дает набор символов, который является результатом исключения символов одного класса символов из другого класса символов. base_group является положительной или отрицательной группой символов или диапазоном. Компонент excluded_group — это другая положительная или отрицательная группа символов или другое выражение вычитания класса символов (то есть вы можете вкладывать выражения вычитания класса символов).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">вычитание класса символов</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">группа символов</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">комментарий</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Этот элемент языка пытается соответствовать одному из двух шаблонов в зависимости от того, может ли он соответствовать исходному шаблону. expression является исходным шаблоном для проверки соответствия, yes является шаблоном, когда выражение имеет соответствие, а no является необязательным шаблоном для проверки соответствия, если выражение не имеет соответствия.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">условное соответствие выражения</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Этот элемент языка пытается соответствовать одному из двух шаблонов в зависимости от того, установил ли он соответствие указанной группе записи. name является именем (или номером) группы записи, yes является выражением для проверки соответствия, если name (или number) имеет соответствие, а no является необязательным выражением для проверки соответствия в противном случае.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">условное соответствие группы</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">Привязка \G указывает, что соответствие должно находиться в том месте, где заканчивается предыдущее соответствие. При использовании этой привязки с методом Regex.Matches или Match.NextMatch она обеспечивает непрерывность всех соответствий.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">непрерывные соответствия</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">Соответствует управляющему символу ASCII, где X — это буква управляющего символа. Например, \cC — это CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">управляющий символ</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d соответствует любой десятичной цифре. Это эквивалент шаблона регулярного выражения \p{Nd}, который включает в себя стандартные десятичные цифры 0–9, а также десятичные цифры из ряда других наборов символов. Если указано поведение, соответствующее ECMAScript, \d является эквивалентом [0–9].</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">символ десятичной цифры</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Символ решетки (#) помечает комментарий x-mode, который начинается с неэкранированного символа # в конце шаблона регулярного выражения и продолжается до конца строки. Чтобы использовать эту конструкцию, нужно либо включить параметр x (посредством встроенных параметров), либо указать значение RegexOptions.IgnorePatternWhitespace для параметра option при создании экземпляра объекта Regex или вызове статического метода Regex.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">комментарий в конце строки</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">Привязка \z указывает, что соответствие должно находиться в конце входной строки. Как и элемент языка $, \z игнорирует параметр RegexOptions.Multiline. В отличие от элемента языка \Z, \z не соответствует символу \n в конце строки. Поэтому она может соответствовать только последней строке входной строки.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">только конец строки</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">Привязка \Z указывает, что соответствие должно находиться в конце входной строки или перед \n в конце входной строки. Она идентична привязке $, за исключением того, что \Z игнорирует параметр RegexOptions.Multiline. Поэтому в многострочной строке она может соответствовать только концу последней строки или последней строке перед \n. Привязка \Z соответствует \n, но не соответствует значению \r\n (сочетание символов CR/LF). Чтобы обеспечить соответствие CR/LF, включите \r?\Z в шаблон регулярного выражения.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">конец строки или до последнего символа новой строки</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">Привязка $ указывает, что предыдущий шаблон должен находиться в конце входной строки или перед \n в конце входной строки. Если использовать $ с параметром RegexOptions.Multiline, соответствие также может находиться в конце строки. Привязка $ соответствует \n, но не соответствует значению \r\n (сочетанию символа возврата каретки и символа новой строки, которое также обозначается как CR/LF). Чтобы обеспечить соответствие сочетанию символов CR/LF, включите \r?$ в шаблон регулярного выражения.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">конец строковых данных или строки</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Соответствует escape-символу \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">escape-символ</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">исключенная группа</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">выражение</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Соответствует символу перевода страницы \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">символ перевода страницы</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Эта конструкция группировки включает или отключает указанные параметры в части выражения. Включаемые параметры указаны после вопросительного знака, а отключаемые параметры — после знака минус. Допустимые параметры: i Использовать сопоставление без учета регистра. m Использовать многострочный режим, где ^ и $ соответствуют началу и концу каждой строки (а не началу и концу входной строки). s Использовать однострочный режим, где точка (.) соответствует каждому символу (а не каждому символу, кроме \n). n Не записывать неименованные группы. Для записи подходят только явно именованные или нумерованные группы формы (?&lt;name&gt; часть выражения). x Исключить неэкранированный пробел из шаблона и включить комментарии после символа решетки (#).</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">параметры группы</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">Соответствует символу ASCII, где ## — это двузначный шестнадцатеричный код символа.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">шестнадцатеричный escape-символ</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">Конструкция (?# comment) позволяет включить встроенный комментарий в регулярное выражение. Обработчик регулярных выражений не использует никакие части этого комментария при сравнении шаблонов, однако комментарий включается в строку, возвращаемую методом Regex.ToString. Комментарий заканчивается на первой закрывающей скобке.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">встроенный комментарий</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Включает или отключает конкретные параметры сопоставления шаблонов для оставшейся части регулярного выражения. Включаемые параметры указаны после вопросительного знака, а отключаемые параметры — после знака минус. Допустимые параметры: i Использовать сопоставление без учета регистра. m Использовать многострочный режим, где ^ и $ соответствуют началу и концу каждой строки (вместо начала и конца входной строки). s Использовать однострочный режим, где точка (.) соответствует каждому символу (а не каждому символу, кроме \n). n Не записывать неименованные группы. Для записи подходят только явно именованные или нумерованные группы формы (?&lt;name&gt; часть выражения). x Исключить неэкранированный пробел из шаблона и включить комментарии после символа решетки (#).</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">встроенные параметры</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Проблема с регулярным выражением: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">буква, строчная</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">буква, модификатор</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">буква, другая</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">буква, заглавная</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">буква, прописная</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">метка, с включением</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">метка, без пробелов</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">метка, объединение интервалов</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">Квантификатор {n,}? соответствует предыдущему элементу по меньшей мере n раз, где n — любое целое число, при этом данное количество должно быть минимальным. Это "ленивый" аналог "жадного" квантификатора {n,}</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">совпадение не менее "n" раз (ленивый)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">Квантификатор {n,} соответствует предыдущему элементу по меньшей мере n раз, где n — любое целое число. {n,} — это "жадный" квантификатор, "ленивым" аналогом которого является {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">совпадают по меньшей мере "n" раз</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">Квантификатор {n,m}? соответствует предыдущему элементу от n до m раз, где n и m — любые целые числа, при этом данное количество должно быть минимальным. Это "ленивый" аналог "жадного" квантификатора {n,m}</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">совпадение не менее "n" раз (ленивый)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">Квантификатор {n,m} соответствует предыдущему элементу по меньшей мере n раз, но не более m раз, где n и m — любые целые числа. {n,m} — это "жадный" квантификатор, "ленивым" аналогом которого является {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">совпадение от "m" до "n" раз</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">Квантификатор {n}? соответствует предыдущему элементу ровно n раз, где n — любое целое число. Это "ленивый" аналог "жадного" квантификатора {n}+</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">совпадение ровно "n" раз (ленивый)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">Квантификатор {n} соответствует предыдущему элементу ровно n раз, где n — любое целое число. {n} — это "жадный" квантификатор, "ленивым" аналогом которого является {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">совпадение ровно "n" раз</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">Квантификатор +? соответствует предыдущему элементу один или несколько раз, при этом данное количество должно быть минимальным. Это "ленивый" аналог "жадного" квантификатора +</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">совпадение один или несколько раз (ленивый)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">Квантификатор + соответствует предыдущему элементу один или несколько раз. Это эквивалент квантификатора {1,}. + — это "жадный" квантификатор, "ленивым" аналогом которого является +?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">совпадение один или несколько раз</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">Квантификатор *? соответствует предыдущему элементу ни одного или несколько раз, при этом данное количество должно быть минимальным. Это "ленивый" аналог "жадного" квантификатора *</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">совпадение ни одного или несколько раз (ленивый)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">Квантификатор * соответствует предыдущему элементу ни одного или несколько раз. Это эквивалент квантификатора {0,}. * — это "жадный" квантификатор, "ленивым" аналогом которого является *?.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">совпадение ни одного или несколько раз</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">Квантификатор ?? соответствует предыдущему элементу ни одного раза или один раз, при этом данное количество должно быть минимальным. Это "ленивый" аналог "жадного" квантификатора ?</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">совпадение ни одного раза или один раз (ленивый)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">Квантификатор ? соответствует предыдущему элементу ни одного раза или один раз. Это эквивалент квантификатора {0,1}. ? — это "жадный" квантификатор, "ленивым" аналогом которого является ??.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">совпадение ни одного раза или один раз</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Эта конструкция группировки записывает соответствующую "часть выражения", где "часть выражения" — это любой допустимый шаблон регулярного выражения. Записи, использующие круглые скобки, нумеруются автоматически слева направо в порядке открывающих скобок в регулярном выражении, начиная с первой. Запись с нулевым номером — это текст, совпадающий со всем шаблоном регулярного выражения.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">соответствующая часть выражения</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">имя</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">имя1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">имя2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">имя-или-число</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Именованная или нумерованная обратная ссылка. Значение "имя" — это имя группы записи, определенное в шаблоне регулярного выражения.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">именованная обратная ссылка</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Записывает совпадающую часть выражения и позволяет вам обратиться к ней по имени или номеру. Значение "имя" — это допустимое имя группы, а "часть выражения" — любой допустимый шаблон регулярного выражения. Значение "имя" не должно содержать знаков пунктуации или начинаться с числа. Если параметр RegexOptions метода сопоставления шаблона регулярного выражения включает флаг RegexOptions.ExplicitCapture или если параметр n применяется к этой части выражения, единственным способом записи части выражения является явное именование групп записи.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">именованная соответствующая часть выражения</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Отрицательная группа символов указывает список символов, которые не должны присутствовать во входной строке для выполняемой проверки соответствия. Список символов настраивается в индивидуальном порядке. Можно сцепить два или более диапазонов символов. Например, чтобы указать диапазон десятичных цифр от 0 до 9, диапазон строчных букв от a до f и диапазон прописных букв от A до F, используйте [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">отрицательная группа символов</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Отрицательный диапазон символов указывает список символов, которые не должны присутствовать во входной строке для выполняемой проверки соответствия. firstCharacter — это первый символ диапазона, а lastCharacter — последний. Можно сцепить два или более диапазонов символов. Например, чтобы указать диапазон десятичных цифр от 0 до 9, диапазон строчных букв от a до f и диапазон прописных букв от A до F, используйте [0-9a-fA-F].</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">отрицательный диапазон символов</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Конструкция регулярного выражения \P{ имя } соответствует любому символу, который не относится к общей категории Юникода или именованному блоку, где "имя" — это сокращение названия категории или имя именованного блока.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">отрицательная категория Юникода</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Соответствует символу новой строки \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">символ новой строки</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">нет</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D соответствует любому символу, не являющемуся цифрой. Это эквивалент шаблона регулярного выражения \P{Nd}. Если указано поведение, соответствующее ECMAScript, \D является эквивалентом [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">символ, не являющийся цифрой</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S соответствует любому символу, не являющемуся пробелом. Это эквивалент шаблона регулярного выражения [^\f\n\r\t\v\x85\p{Z}] либо противоположность шаблона регулярного выражения, эквивалентного \s, который сопоставляет символы пробелов. Если указано поведение, соответствующее ECMAScript, \S является эквивалентом [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">символ, не являющийся пробелом</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">Привязка \B указывает, что соответствие не должно находиться на границе слов. Это противоположность привязки \b.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">граница не по словам</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W соответствует любому символу, не образующему слово. Он соответствует любому символу, кроме относящихся к следующим категориям Юникода: Ll буква, строчная Lu буква, прописная Lt буква, заглавная Lo буква, другая Lm буква, модификатор Mn метка, без пробела Nd число, десятичная цифра Pc пунктуация, соединитель Если указано поведение, соответствующее ECMAScript, \W является эквивалентом [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">символ, не образующий слово</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Эта конструкция не записывает подстроку, соответствующую части выражения: Конструкция группы без записи обычно используется, когда квантификатор применяется к группе, но подстроки, записанные группой, не представляют интереса. Если регулярное выражение содержит вложенные конструкциb группировки, внешняя конструкция группы без записи не применяется к внутренним вложенным конструкциям группы.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">группа без записи</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">число, десятичная цифра</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">число, буква</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">число, другое</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">Нумерованная обратная ссылка, где "номер" — порядковый номер группы записи в регулярном выражении. Например, \4 соответствует содержимому четвертой группы записи. Существует неоднозначность между восьмеричными escape-кодами (например, \16) и обратными ссылками \number, которые используют одну и ту же нотацию. Если подобная неоднозначность является проблемой, можно использовать нотацию \k&lt;name&gt;, которая не является неоднозначной и не может быть перепутана с восьмеричными кодами символов. Аналогичным образом шестнадцатеричные коды, такие как \xdd, не являются неоднозначными и не могут быть перепутаны с обратными ссылками.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">нумерованная обратная ссылка</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">другое, управление</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">другой, формат</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">другое, не назначено</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">другое, частное использование</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">другое, суррогат</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Положительная группа символов задает список символов, любой из которых может выводиться во входной строке для выполняемого сопоставления.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">положительная группа символов</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Положительная группа символов задает диапазон символов, любой из которых может выводиться во входной строке для выполняемого сопоставления. firstCharacter — это первый символ диапазона, а lastCharacter — последний.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">положительный диапазон символов</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">пунктуация, закрытие</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">пунктуация, соединитель</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">пунктуация, тире</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">пунктуация, конечная кавычка</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">пунктуация, начальная кавычка</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">пунктуация, открытие</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">пунктуация, другие</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">разделитель, строка</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">разделитель, абзац</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">разделитель, пробел</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">Привязка \A указывает, что совпадение должно находиться в начале входной строки. Она идентична привязке ^, за исключением того, что \A игнорирует параметр RegexOptions.Multiline. Поэтому она может соответствовать только началу первой строки в многострочной входной строке.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">только начало строки</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">Привязка ^ указывает, что следующий шаблон должен начинаться с позиции первого знака строки. Если вы используете ^ с параметром RegexOptions.Multiline, совпадение должно находиться в начале каждой строки.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">начало строковых данных или строки</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">часть выражения</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">символ, валюта</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">символ, математика</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">символ, модификатор</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">символ, другое</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Соответствует знаку табуляции \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">знак табуляции</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">Конструкция регулярного выражения \p{ имя } соответствует любому символу, который относится к общей категории Юникода или именованному блоку, где "имя" — это сокращение названия категории или имя именованного блока.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">категория Юникода</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">Соответствует блоку кода UTF-16, шестнадцатеричное значение которого равно ####.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">escape-символ Юникода</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Общая категория Юникода: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Соответствует знаку вертикальной табуляции \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">знак вертикальной табуляции</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s соответствует любому символу пробела. Она эквивалентна следующим escape-последовательностям и категориям Юникода: \f символ перевода страницы, \u000C \n символ новой строки, \u000A \r символ возврата каретки, \u000D \t знак табуляции, \u0009 \v знак вертикальной табуляции, \u000B \x85 многоточие или символ NEXT LINE (NEL)(…), \u0085 \p{Z} соответствует любому символу-разделителю Если указано поведение, соответствующее ECMAScript, \s является эквивалентом [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">символ пробела</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">Привязка \b указывает, что соответствие должно находиться между символом слова (элемент языка \w) и символом, не образующим слово, (элемент языка \W). Символы слова состоят из буквенно-цифровых символов и символов подчеркивания; не образующий слово символ — это любой символ, не являющийся буквенно-цифровым и символом подчеркивания. Соответствие также может находиться на границе слов в начале или конце строки. Привязка \b часто используется для обеспечения того, что часть строки соответствует всему слову, а не только его началу или концу.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">граница слов</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w соответствует любому символу слова. Символ слова относится к любой из следующих категорий Юникода: Ll буква, строчная Lu буква, прописная Lt буква, заглавная Lo буква, другая Lm буква, модификатор Mn метка, без пробела Nd число, десятичная цифра Pc пунктуация, соединитель Если указано поведение, соответствующее ECMAScript, \w является эквивалентом [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">символ слова</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">да</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Отрицательное утверждение просмотра вперед нулевой ширины, в котором для успешного сопоставления входная строка не должна соответствовать шаблону регулярного выражения в части выражения. Соответствующая строка не включается в результат сравнения. Отрицательное упреждающее утверждение нулевой ширины обычно используется либо в начале, либо в конце регулярного выражения. В начале выражения оно может определять определенный шаблон, который не должен совпадать, когда начало регулярного выражения определяет схожий, но более общий сравниваемый шаблон. В этом случае такое утверждение часто используется для ограничения обратного отслеживания. В конце регулярного выражения такое утверждение может определять часть выражения, которое не может находиться в конце сравнения.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">отрицательное утверждение просмотра вперед нулевой ширины</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Отрицательное утверждение просмотра назад нулевой ширины, где для успешного сопоставления "часть выражения" не должна находиться во входной строке слева от текущей позиции. Любая подстрока, не соответствующая "части выражения", не включается в результат сравнения. Отрицательные отстающие утверждения просмотра назад обычно используются в начале регулярных выражений. Шаблон, который они определяют, предотвращает совпадение в следующей строке. Они также используются для ограничения обратного отслеживания, когда один или несколько последних символов в группе записи не должны соответствовать символам шаблона регулярного выражения этой группы.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">отрицательное утверждение просмотра назад нулевой ширины</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Положительное утверждение просмотра вперед нулевой ширины, в котором для успешного сопоставления входная строка должна соответствовать шаблону регулярного выражения в части выражения. Соответствующая подстрока не включается в результат сравнения. Положительное упреждающее утверждение нулевой ширины не выполняет обратное отслеживание. Обычно такое утверждение находится в конце шаблона регулярного выражения. Оно определяет подстроку, которая должна быть найдена в конце строки для выполнения сравнения, но не может быть включена в него. Кроме того, это утверждение удобно использовать для предотвращения избыточного обратного отслеживания. Вы можете использовать положительное упреждающее утверждение нулевой ширины, чтобы убедиться, что определенная записанная группа начинается с текста, который соответствует подмножеству шаблона, определенного для этой записанной группы.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">положительное утверждение просмотра вперед нулевой ширины</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Положительное утверждение просмотра назад нулевой ширины, где для успешного сопоставления "часть выражения" должна находиться во входной строке, слева от текущей позиции. "Часть выражения" не включается в результат сравнения. Такое утверждение не выполняет обратное отслеживание. Положительные отстающие утверждения просмотра назад обычно используются в начале регулярных выражений. Шаблон, который они определяют, является необходимым условием для совпадения, хотя и не входит в его результат.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">положительное утверждение просмотра назад нулевой ширины</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Связанные сигнатуры методов, найденные в метаданных, не будут обновлены.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Удаление документа не поддерживается</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">Удалить модификатор "async"</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Удалить ненужные приведения</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Удалить неиспользуемые переменные</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">Замените '{0}' на '{1}'</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Разрешение меток конфликтов</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">Грубая редакция</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Сортировать модификаторы доступности</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Разделить на последовательные операторы "{0}"</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">Разделить на вложенные операторы "{0}"</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Поток должен поддерживать операции чтения и поиска.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">Скрыть {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: освободить неуправляемые ресурсы (неуправляемые объекты) и переопределить метод завершения</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: переопределить метод завершения, только если "{0}" содержит код для освобождения неуправляемых ресурсов</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Соответствия целевого типа</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">Сборка "{0}", содержащая тип "{1}", ссылается на платформу .NET Framework, которая не поддерживается.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">Выделенный фрагмент содержит вызов локальной функции без ее объявления.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Слишком много операторов "|" в "(?()|)"</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Слишком много закрывающих круглых скобок</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">Не удалось считать исходный файл "{0}" или PDB, созданный для содержащего проекта. Все изменения, внесенные в этот файл во время отладки, не будут применены, пока содержимое файла не будет соответствовать созданному источнику.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Неизвестное свойство</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">Неизвестное свойство "{0}"</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Не удалось распознать управляющий символ</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Не удалось распознать escape-последовательность \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Не удалось распознать конструкцию группировки</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Набор [] без признака завершения</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Незавершенный комментарий (? #...)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">Развернуть все аргументы</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Развернуть все параметры</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Развернуть все аргументы и удалить отступы для них</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Развернуть все параметры и добавить отступы для них</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Развернуть список аргументов</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Развернуть цепочку вызовов</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">Развернуть выражение</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Развернуть список параметров</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Использовать тело блока для лямбда-выражений</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Использовать тело выражения для лямбда-выражений</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Использовать интерполированную буквальную строку</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Внимание! При преобразовании инструкции семантика может измениться.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Свернуть и выровнять цепочку вызовов</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">Перенос и выравнивание выражения</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Свернуть и выровнять длинную цепочку вызовов</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Свернуть цепочку вызовов</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Свернуть каждый аргумент</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Свернуть каждый параметр</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">Свернуть выражение</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Свернуть длинный список аргументов</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Свернуть длинную цепочку вызовов</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Свернуть длинный список параметров</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Перенос по словам</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Для переключения контекстов можно использовать панель навигации.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">"{0}" не может быть неопределенным или пустым.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">"{0}" не может быть пустым или содержать только пробел.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">Здесь "{0}" имеет значение, отличное от NULL.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">Здесь "{0}" может иметь значение NULL.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">10 000 000-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "fffffff" представляет семь наиболее значащих цифр дробной части секунды; то есть он представляет десятимиллионные доли секунды в значении даты и времени. Хотя десятимиллионные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">10 000 000-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "FFFFFFF" представляет семь наиболее значащих цифр дробной части секунды; то есть он представляет десятимиллионные доли секунды в значении даты и времени. При этом конечные нули или семь нулевых разрядов не отображаются. Хотя десятимиллионные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1 000 000-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "ffffff" представляет шесть наиболее значащих цифр дробной части секунды; то есть он представляет миллионные доли секунды в значении даты и времени. Хотя миллионные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1 000 000-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "FFFFFF" представляет шесть наиболее значащих цифр дробной части секунды; то есть он представляет миллионные доли секунды в значении даты и времени. При этом конечные нули или шесть нулевых разрядов не отображаются. Хотя миллионные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">100 000-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "fffff" представляет пять наиболее значащих цифр дробной части секунды; то есть он представляет стотысячные доли секунды в значении даты и времени. Хотя стотысячные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">100 000-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "FFFFF" представляет пять наиболее значащих цифр дробной части секунды; то есть он представляет стотысячные доли секунды в значении даты и времени. При этом конечные нули или пять нулевых разрядов не отображаются. Хотя стотысячные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">10 000-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "ffff" представляет четыре наиболее значащих цифры дробной части секунды; то есть он представляет десятитысячные доли секунды в значении даты и времени. Хотя десятитысячные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">10 000-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">Описатель пользовательского формата "FFFF" представляет четыре наиболее значащих цифры дробной части секунды; то есть он представляет десятитысячные доли секунды в значении даты и времени. При этом конечные нули или четыре нулевых разряда не отображаются. Хотя десятитысячные доли второго компонента значения времени можно отобразить, это значение может быть неинформативным. Точность значений даты и времени зависит от разрешения системных часов. В операционных системах Windows NT 3.5 (и более поздних версий) и Windows Vista разрешение часов составляет приблизительно 10–15 мс.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1000-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">Описатель пользовательского формата "fff" представляет три наиболее значащих цифры в дробной части секунды, то есть представляет миллисекунды в значении даты и времени.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1000-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">Описатель пользовательского формата "FFF" представляет три наиболее значащих цифры в дробной части секунды, то есть представляет миллисекунды в значении даты и времени. При этом конечные нули или три нулевых разряда не отображаются.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">100-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">Описатель пользовательского формата "ff" представляет две наиболее значащих цифры в дробной части секунды, то есть представляет сотые доли секунды в значении даты и времени.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">100-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">Описатель пользовательского формата "FF" представляет две наиболее значащих цифры в дробной части секунды, то есть представляет сотые доли секунды в значении даты и времени. При этом конечные нули или два нулевых разряда не отображаются.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">10-е доли секунды</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">10-е доли секунды (не нуль)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">Описатель пользовательского формата "F" представляет наиболее значащую цифру в дробной части секунды, то есть представляет десятые доли секунды в значении даты и времени. Если разряд равен нулю, ничего не отображается. Если описатель формата "F" используется без других описателей формата, он интерпретируется как описатель стандартного формата даты и времени "F". Число описателей формата "F", используемых с методом ParseExact, TryParseExact, ParseExact или TryParseExact, указывает максимальное количество наиболее значащих цифр в дробной части секунды, которые должны присутствовать для успешного анализа строки.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12-часовой формат времени (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Описатель пользовательского формата "h" представляет час в виде числа от 1 до 12, то есть час представлен в 12-часовом формате, который подсчитывает целые часы, начиная с полуночи или с полудня. Определенный час после полуночи невозможно отличить от такого же часа после полудня. Значение часа не округляется, а значение часа из одной цифры форматируется без начального нуля. Например, для времени 5:43 утра или вечера этот описатель пользовательского формата выводит "5". Если описатель формата "h" используется без других описателей пользовательского формата, он интерпретируется как описатель стандартного формата даты и времени и вызывает исключение FormatException.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12-часовой формат времени (2 цифры)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">Описатель пользовательского формата "hh" (плюс любое число дополнительных описателей "h") представляет час в виде числа от 01 до 12, то есть час представлен в 12-часовом формате, который подсчитывает целые часы, начиная с полуночи или с полудня. Определенный час после полуночи невозможно отличить от такого же часа после полудня. Значение часа не округляется, а значение часа из одной цифры форматируется с начальным нулем. Например, для времени 5:43 утра или вечера этот описатель формата выводит "05".</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24-часовой формат времени (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Описатель пользовательского формата "H" представляет час в виде числа от 0 до 23, то есть час представлен в начинающемся с нуля 24-часовом формате, отсчитывающем часы с полуночи. Значение часа из одной цифры форматируется без начального нуля. Если описатель формата "H" используется без других описателей пользовательского формата, он интерпретируется как описатель стандартного формата даты и времени и вызывает исключение FormatException.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24-часовой формат времени (2 цифры)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">Описатель пользовательского формата "HH" (плюс любое число дополнительных описателей "H") представляет час в виде числа от 00 до 23, то есть час представлен в начинающемся с нуля 24-часовом формате, отсчитывающем часы с полуночи. Значение часа из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">код</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">разделитель компонентов даты</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Описатель пользовательского формата "/" представляет разделитель компонентов даты, который позволяет различать годы, месяцы и дни. Соответствующий локализованный разделитель компонентов даты извлекается из свойства DateTimeFormatInfo.DateSeparator текущих или заданных языка и региональных параметров. Примечание. Чтобы изменить разделитель компонентов даты для определенной строки даты и времени, укажите знак разделения в разделителе литеральной строки. Например, строка пользовательского формата mm'/'dd'/'yyyy дает результирующую строку, в которой "/" всегда используется в качестве разделителя компонентов даты. Чтобы изменить разделитель компонентов даты для всех дат для языка и региональных параметров, измените значение свойства DateTimeFormatInfo.DateSeparator текущих языка и региональных параметров или создайте экземпляр объекта DateTimeFormatInfo, присвойте этот знак его свойству DateSeparator и вызовите перегрузку метода форматирования, включающую параметр IFormatProvider. Если описатель формата "/" используется без других описателей пользовательского формата, он интерпретируется как описатель стандартного формата даты и времени и вызывает исключение FormatException.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">день месяца (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">Описатель пользовательского формата "d" представляет день месяца в виде числа от 1 до 31. Значение дня из одной цифры форматируется без начального нуля. Если описатель формата "d" используется без других описателей пользовательского формата, он интерпретируется как описатель "d" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">день месяца (2 цифры)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">Описатель пользовательского формата "dd" представляет день месяца в виде числа от 01 до 31. Значение дня из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">День недели (сокращенно)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">Описатель пользовательского формата "ddd" представляет сокращенное название дня недели. Локализованное сокращенное название дня недели извлекается из свойства DateTimeFormatInfo.AbbreviatedDayNames текущих или заданных языка и региональных параметров.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">День недели (полностью)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">Описатель пользовательского формата "dddd" (плюс любое число дополнительных описателей "d") представляет полное название дня недели. Локализованное название дня недели извлекается из свойства DateTimeFormatInfo.DayNames текущих или заданных языка и региональных параметров.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">отменить</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">из метаданных</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">полный длинный формат даты и времени</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">Описатель стандартного формата "F" представляет строку пользовательского формата даты и времени, определяемую текущим свойством DateTimeFormatInfo.FullDateTimePattern. Например, строка пользовательского формата для инвариантных языка и региональных параметров имеет вид "dddd, dd MMMM yyyy HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">полный краткий формат даты и времени</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Описатель формата полной даты и краткого времени ("f") Описатель стандартного формата "f" представляет сочетание шаблонов длинной даты ("D") и краткого времени ("t"), разделенных пробелом.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">общий длинный формат даты и времени</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">Описатель стандартного формата "G" представляет сочетание шаблонов краткой даты ("d") и полного времени ("T"), разделенных пробелом.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">общий краткий формат даты и времени</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">Описатель стандартного формата "g" представляет сочетание шаблонов краткой даты ("d") и краткого времени ("t"), разделенных пробелом.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">универсальная перегрузка</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">универсальные перегрузки</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">в {0} ({1} — {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">в источнике (атрибут)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">Длинный формат даты</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">Описатель стандартного формата "D" представляет строку пользовательского формата даты и времени, определяемую текущим свойством DateTimeFormatInfo.LongDatePattern. Например, строка пользовательского формата для инвариантных языка и региональных параметров имеет вид "dddd, dd MMMM yyyy".</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">Длинный формат времени</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">Описатель стандартного формата "T" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.LongTimePattern конкретных языка и региональных параметров. Например, строка пользовательского формата для инвариантных языка и региональных параметров имеет вид "HH:mm:ss".</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} "{1}"</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">минута (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">Описатель пользовательского формата "m" представляет минуту в виде числа от 0 до 59. Это число представляет собой целые минуты, истекшие с момента наступления последнего часа. Значение минуты из одной цифры форматируется без начального нуля. Если описатель формата "m" используется без других описателей пользовательского формата, он интерпретируется как описатель "m" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">минута (2 цифры)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">Описатель пользовательского формата "mm" (плюс любое число дополнительных описателей "m") представляет минуту в виде числа от 00 до 59. Это число представляет собой целые минуты, истекшие с момента наступления последнего часа. Значение минуты из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">месяц (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">Описатель пользовательского формата "M" представляет месяц в виде числа от 1 до 12 (или от 1 до 13 для календарей, состоящих из 13 месяцев). Значение месяца из одной цифры форматируется без начального нуля. Если описатель формата "M" используется без других описателей пользовательского формата, он интерпретируется как описатель "M" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">месяц (2 цифры)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">Описатель пользовательского формата "MM" представляет месяц в виде числа от 1 до 12 (или от 1 до 13 для календарей, состоящих из 13 месяцев). Значение месяца из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">месяц (сокращенно)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">Описатель пользовательского формата "MMM" представляет сокращенное название месяца. Локализованное сокращенное название месяца извлекается из свойства DateTimeFormatInfo.AbbreviatedMonthNames текущих или заданных языка и региональных параметров.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">День месяца</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">Описатель стандартного формата "M" или "m" представляет строку пользовательского формата даты и времени, определяемую текущим свойством DateTimeFormatInfo.MonthDayPattern. Например, строка пользовательского формата для инвариантных языка и региональных параметров имеет вид "MMMM dd".</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">месяц (полностью)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">Описатель пользовательского формата "MMMM" представляет полное название месяца. Локализованное название месяца извлекается из свойства DateTimeFormatInfo.MonthNames текущих или заданных языка и региональных параметров.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">перегрузка</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">перегрузки</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">Ключевое слово: {0}</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Инкапсулировать поле: "{0}" (и использовать свойство)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Инкапсулировать поле: "{0}" (но продолжать использовать поле)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Инкапсулировать поля (и использовать свойство)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Инкапсулировать поля (но продолжать использовать поле)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Не удалось извлечь интерфейс: выбранный элемент не находится внутри класса, интерфейса или структуры.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Не удалось извлечь интерфейс: тип не содержит никаких членов, которые можно извлечь в интерфейс.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">не удается создать итоговое дерево</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Тип параметров или возвращаемых данных не может иметь анонимный тип: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">Выбранный элемент не содержит активный оператор.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">Выбранный элемент содержит ошибку или неизвестный тип.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Параметр типа "{0}" скрыт другим параметром типа "{1}".</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">Этот адрес переменной используется внутри выбранного кода.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">Назначение значения полям, доступным только для чтения, следует выполнять в конструкторе: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">созданный код накладывается на скрытую часть кода</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">Добавить дополнительные параметры в "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">Добавить параметры в "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">Создать делегирующий конструктор "{0}({1})"</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">Создать конструктор "{0}({1})"</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">Создать назначающий поля конструктор "{0}({1})"</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Создать Equals и GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Создать "Equals(object)"</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">Создать "GetHashCode()"</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">Создайте конструктор в "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Создать все</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">Создать член перечисления "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">Создать константу "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">Создайте свойство только для чтения "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">Создайте свойство "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">Создайте поле только для чтения "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">Создать поле "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Создайте локальную переменную "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Создать {0} "{1}" в новом файле</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">Создать вложенный {0} "{1}"</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Глобальное пространство имен</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Реализовать интерфейс абстрактно</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Реализовать интерфейс через "{0}"</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Реализовать интерфейс</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">Введите поле для "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">Введите локальное значение для "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">Введите константу для "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">Введите локальную константу для "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Введите поле для всех вхождений "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Введите локальное значение для всех вхождений "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Введите константу для всех вхождений "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Введите локальную константу для всех вхождений "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Введите переменную запроса для всех вхождений "{0}"</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">Введите переменную запроса для "{0}"</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Анонимные типы:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">является</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">Представляет объект, операции которого будут разрешаться во время выполнения.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">константа</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">Поле</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">локальная константа</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">локальная переменная</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">Этикетка</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">период/эра</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">Описатели пользовательского формата "g" или "gg" (плюс любое число дополнительных описателей "g") представляют период или эру, например "время нашей эры". Операция форматирования игнорирует этот описатель, если форматируемая дата не имеет соответствующей строки периода или эры. Если описатель формата "g" используется без других описателей пользовательского формата, он интерпретируется как описатель "g" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">переменная диапазона</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">параметр</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">Входной</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Сводка:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Локальные переменные и параметры</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Параметры типа:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Возврат:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Исключения:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Примечания:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">создание источника для символов такого типа не поддерживается</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">сборка</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">расположение неизвестно</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Непредвиденный тип члена интерфейса: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Неизвестный тип символа</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Создать абстрактное свойство "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Создать абстрактный метод "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">Создайте метод "{1}.{0}"</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">Запрошенная сборка уже загружена из "{0}".</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Символ не имеет значка.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Асинхронный метод не может иметь параметры ref/out: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Член определен в метаданных.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Вы можете изменить только подпись конструктора, индексатора, метода или делегата.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Этот символ имеет связанные с ним определения или ссылки в метаданных. Изменение его подписи может привести к ошибкам сборки. Продолжить?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">Изменить подпись...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Создать новый тип...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Сбой диагностического анализатора пользователей.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">Анализатор "{0}" создал исключение типа "{1}" с сообщением "{2}".</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">Анализатор "{0}" создал следующее исключение: "{1}".</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Упрощение имен</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Упрощение доступа для членов</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Удалить квалификацию</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Возникла неизвестная ошибка</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Доступные</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Недоступно ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">в исходном</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">в файле подавляемых предупреждений</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">Удалить подавление {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Удалить подавление</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;Ожидание&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Примечание. Два раза нажмите клавишу TAB, чтобы вставить фрагмент кода "{0}".</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Явно внедрите интерфейс с шаблоном освобождения</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Внедрите интерфейс с шаблоном освобождения</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">Повторное рассмотрение {0} (в настоящее время "{1}")</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">Аргумент не может содержать элемент NULL.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">Аргумент не может быть пустым.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">Зарегистрированное диагностическое событие с идентификатором "{0}" не поддерживается в анализаторе.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Вычисление изменения кода для исправления всех вхождений...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Исправить все случаи</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Документ</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">Проект</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Решение</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: освободить управляемое состояние (управляемые объекты)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: установить значение NULL для больших полей</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Компилятор</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">В реальном времени</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">значение enum</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">поле const</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">метод</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">Оператор</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">конструктор</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">автосвойство</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">Свойство</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">метод доступа к событию</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">дата и время в формате RFC1123</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Описатель стандартного формата "R" или "r" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.RFC1123Pattern. Шаблон отражает определенный стандарт, а само свойство доступно только для чтения. Таким образом, данное значение всегда одинаково, независимо от используемых языка и региональных параметров или от указанного поставщика формата. Строка пользовательского формата имеет вид "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". Когда используется этот описатель стандартного формата, операция форматирования или анализа всегда использует инвариантные язык и региональные параметры.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">дата и время для кругового пути</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">Описатель стандартного формата "O" или "o" представляет строку пользовательского формата даты и времени с использованием шаблона, который сохраняет сведения о часовом поясе и дает результирующую строку, соответствующую стандарту ISO 8601. Для значений DateTime этот описатель формата предназначен для сохранения значений даты и времени вместе со свойством DateTime.Kind в тексте. Отформатированную строку можно проанализировать в обратном направлении с помощью метода DateTime.Parse(String, IFormatProvider, DateTimeStyles) или DateTime.ParseExact, если параметр styles имеет значение DateTimeStyles.RoundtripKind. Описатель стандартного формата "O" или "o" соответствует строке пользовательского формата "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" для значений DateTime и строке пользовательского формата "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" для значений DateTimeOffset. В этой строке пары одинарных кавычек, разделяющие отдельные символы, такие как дефисы, двоеточия и буква "T", указывают, что этот отдельный знак является литералом, который не может быть изменен. Апострофы не отображаются в выходной строке. Описатель стандартного формата "O" или "o" (и строка пользовательского формата "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK") использует преимущества трех описанных в ISO 8601 способов представления сведений о часовом поясе, для сохранения свойства Kind значений DateTime: Компонент часового пояса в значениях даты и времени DateTimeKind.Local является смещением от UTC (например, +01:00, -07:00). Все значения DateTimeOffset также представлены в этом формате. Компонент часового пояса для значений даты и времени DateTimeKind.Utc использует "Z" (что означает нулевое смещение) для представления времени в формате UTC. Значения даты и времени DateTimeKind.Unspecified не содержат сведения о часовом поясе. Так как описатель стандартного формата "O" или "o" соответствует международным стандарту, операция форматирования или анализа, использующая этот описатель, всегда использует инвариантные язык и региональные параметры, а также григорианский календарь. Строки, передаваемые в методы Parse, TryParse, ParseExact и TryParseExact для значений DateTime и DateTimeOffset, можно проанализировать с помощью описателя формата "O" или "o", если они имеют один из этих форматов. В случае объектов DateTime вызываемая перегрузка анализа должна также включать параметр styles со значением DateTimeStyles.RoundtripKind. Обратите внимание, что при вызове метода анализа со строкой пользовательского формата, соответствующей описателю формата "O" или "o", результаты будут не такими, как для "O" или "o". Это вызвано тем, что методы анализа, использующие строку пользовательского формата, не могут анализировать строковое представление значений даты и времени, в которых отсутствует компонент часового пояса или используется "Z" для обозначения времени в формате UTC.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">секунда (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">Описатель пользовательского формата "s" представляет секунды в виде числа от 0 до 59. Это число представляет собой целые секунды, истекшие с момента наступления последней минуты. Значение секунд из одной цифры форматируется без начального нуля. Если описатель формата "s" используется без других описателей пользовательского формата, он интерпретируется как описатель "s" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">секунда (2 цифры)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">Описатель пользовательского формата "ss" (плюс любое число дополнительных описателей "s") представляет секунды в виде числа от 00 до 59. Это число представляет собой целые секунды, истекшие с момента наступления последней минуты. Значение секунд из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">Краткий формат даты</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">Описатель стандартного формата "d" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.ShortDatePattern конкретных языка и региональных параметров. Например, строка пользовательского формата, возвращаемая свойством ShortDatePattern для инвариантных языка и региональных параметров, имеет вид "MM/dd/yyyy".</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">Краткий формат времени</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">Описатель стандартного формата "t" представляет строку пользовательского формата даты и времени, определяемую текущим свойством DateTimeFormatInfo.ShortTimePattern. Например, строка пользовательского формата для инвариантных языка и региональных параметров имеет вид "HH:mm".</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">Формат даты-времени для сортировки</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">Описатель стандартного формата "s" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.SortableDateTimePattern. Шаблон отражает определенный стандарт (ISO 8601), а само свойство доступно только для чтения. Таким образом, данное значение всегда одинаково, независимо от используемых языка и региональных параметров или от указанного поставщика формата. Строка пользовательского формата имеет вид "yyyy'-'MM'-'dd'T'HH':'mm':'ss". Описатель формата "s" предназначен для получения результирующих строк, которые согласованным образом сортируются по возрастанию или убыванию на основе значений даты и времени. В результате, хотя описатель стандартного формата "s" представляет значение даты и времени в согласованном формате, операция форматирования не изменяет значение объекта даты и времени, которое форматируется, чтобы отразить его свойство DateTime.Kind или его значение DateTimeOffset.Offset. Например, результирующие строки, полученные при форматировании значений даты и времени 2014-11-15T18:32:17+00:00 и 2014-11-15T18:32:17+08:00, идентичны. Когда используется этот описатель стандартного формата, операция форматирования или анализа всегда использует инвариантные язык и региональные параметры.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">статический конструктор</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'"символ" не может быть пространством имен.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">разделитель компонентов времени</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Описатель пользовательского формата ":" представляет разделитель компонентов времени, который позволяет различать часы, минуты и секунды. Соответствующий локализованный разделитель компонентов времени извлекается из свойства DateTimeFormatInfo.TimeSeparator текущих или заданных языка и региональных параметров. Примечание. Чтобы изменить разделитель компонентов времени для определенной строки даты и времени, укажите знак разделения в разделителе литеральной строки. Например, строка пользовательского формата hh'_'dd'_'ss дает результирующую строку, в которой "_" (символ подчеркивания) всегда используется в качестве разделителя компонентов времени. Чтобы изменить разделитель компонентов времени для всех дат для языка и региональных параметров, измените значение свойства DateTimeFormatInfo.TimeSeparator текущих языка и региональных параметров или создайте экземпляр объекта DateTimeFormatInfo, присвойте этот знак его свойству TimeSeparator и вызовите перегрузку метода форматирования, включающую параметр IFormatProvider. Если описатель формата ":" используется без других описателей пользовательского формата, он интерпретируется как описатель стандартного формата даты и времени и вызывает исключение FormatException.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">Часовой пояс</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">Описатель пользовательского формата "K" представляет сведения о часовом поясе для значения даты и времени. Если этот описатель формата используется со значениями DateTime, результирующая строка определяется значением свойства DateTime.Kind: Для локального часового пояса (значение DateTimeKind.Local свойства DateTime.Kind) этот описатель равнозначен описателю "zzz" и дает результирующую строку, содержащую локальное смещение от UTC, например, "-07:00". Для времени в формате UTC (значение DateTimeKind.Utc свойства DateTime.Kind) результирующая строка включает символ "Z" для обозначения даты в формате UTC. Для времени из неуказанного часового пояса (значение DateTimeKind.Unspecified свойства DateTime.Kind) результат эквивалентен String.Empty. Для значений DateTimeOffset описатель формата "K" равнозначен описателю формата "zzz" и дает результирующую строку, содержащую смещение значения DateTimeOffset от UTC. Если описатель формата "K" используется без других описателей пользовательского формата, он интерпретируется как описатель стандартного формата даты и времени и вызывает исключение FormatException.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">ограничение типа</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">параметр типа</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">атрибут</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">Заменить "{0}" и "{1}" свойством</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">Заменить "{0}" свойством</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Неявная ссылка на метод</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">Создать тип "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">Создать {0} "{1}"</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">Измените "{0}" на "{1}".</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Невызванный метод нельзя заменить свойством.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Заменить на свойство можно только методы с одним аргументом, который не является объявлением внешней переменной.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">Экземпляр анализатора {0} невозможно создать из {1}: {2}.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">Сборка {0} не содержит анализаторов.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Не удалось загрузить сборку анализатора {0}: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Преобразовать метод в синхронный</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">из {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Найти и установить последнюю версию</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Использовать локальную версию "{0}"</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">Использовать локально установленное ПО "{0}" версии "{1}" Эта версия используется в: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Найти и установить последнюю версию "{0}"</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Установить с помощью диспетчера пакетов...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Установить "{0} {1}"</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">Установить версию "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">Создать переменную "{0}"</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Классы</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Константы</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Делегаты</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Перечисления</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">События</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Методы расширения</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Поля</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Интерфейсы</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Локальные переменные</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Методы</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Модули</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Пространства имен</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Свойства</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Структуры</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Параметры:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Variadic SignatureHelpItem должен иметь хотя бы один параметр.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">Заменить "{0}" методом</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">Заменить "{0}" методами</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">На свойство имеется неявная ссылка</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Свойство нельзя безопасно заменить на вызов метода</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Преобразовать в интерполированную строку</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Переместить тип в {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Переименовать файл в {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Переименовать тип в {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Удалить тег</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Добавить отсутствующие узлы параметров</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">Преобразовать содержащую область в асинхронную</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">Преобразовать содержащую область в асинхронную (задача возврата)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Неизвестно)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Использовать тип платформы</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">Установить пакет "{0}"</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">проект: {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">Определить полностью "{0}"</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">Удалить ссылку на "{0}".</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Ключевые слова</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Фрагменты кода</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Все строчные</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Все прописные</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">Первое слово с прописной буквы</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">ВсеЧастиСПрописнойБуквы</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">Удалить документ "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">Добавить документ "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">Добавить имя аргумента "{0}"</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">Принимать "{0}"</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Принимать оба</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Принимать нижнее</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Принимать верхнее</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Удалить неиспользуемые переменные</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">Преобразовать в двоичное</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Преобразовать в десятичное</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Преобразовать в шестнадцатеричное</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Разделять тысячи</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Разделять слова</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Разделять полубайты</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Удалить разделители</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">Добавить параметр в "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Создать конструктор...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Выберите члены, которые будут использоваться как параметры конструктора</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Выберите члены, которые будут использоваться в Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Создать переопределения...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Выберите члены для переопределения</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Добавить проверку значений NULL</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">Добавить проверку string.IsNullOrEmpty</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">Добавить проверку string.IsNullOrWhiteSpace</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">Инициализировать поле "{0}"</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">Инициализировать свойство "{0}"</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Добавить проверки значений NULL</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">Создать операторы</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">Реализация {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">В отчете о диагностике "{0}" используется исходное расположение "{1}", которое не входит в анализируемую компиляцию.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">В отчете о диагностике "{0}" используется исходное расположение "{1}" в файле "{2}". Это расположение находится за пределами указанного файла.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">в {0} (проект {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Добавьте модификаторы доступности</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Переместить объявление рядом со ссылкой</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Преобразовать в полное свойство</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Предупреждение. Метод переопределяет символ из метаданных.</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">Использовать {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">Добавьте имя аргумента "{0}" (включая конечные аргументы)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">локальная функция</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">индексатор</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Неоднозначный тип псевдонима "{0}"</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Внимание! Коллекция изменена во время итерации.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Внимание! Переменная итерации вышла за границу функции.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Внимание! Коллекция может быть изменена во время итерации.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">Универсальный полный формат даты-времени</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">Описатель стандартного формата "U" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.FullDateTimePattern заданных языка и региональных параметров. Этот шаблон совпадает с шаблоном "F". Однако перед форматированием значение DateTime автоматически преобразуется в формат UTC.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">Универсальный формат даты-времени для сортировки</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">Описатель стандартного формата "u" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.UniversalSortableDateTimePattern. Шаблон отражает определенный стандарт, а само свойство доступно только для чтения. Таким образом, данное значение всегда одинаково, независимо от используемых языка и региональных параметров или указанного поставщика формата. Строка пользовательского формата имеет вид "yyyy'-'MM'-'dd HH':'mm':'ss'Z". Когда применяется этот описатель стандартного формата, операция форматирования или анализа всегда использует инвариантные язык и региональные параметры. Хотя результирующая строка должна выражать время в формате UTC, во время операции форматирования преобразование исходного значения DateTime не выполняется. Поэтому перед форматированием необходимо преобразовать значение DateTime в формат UTC, вызвав метод DateTime.ToUniversalTime.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">обновление директив usage во вложенном элементе</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">обновление директив usage во вложенном проекте</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">обновление директив usage во вложенном типе</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">обновление директив usage в зависимых проектах</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">смещение от UTC в часах и минутах</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">При использовании значений типа DateTime описатель пользовательского формата "zzz" представляет значение смещения локального часового пояса операционной системы от UTC, имеющее знак и измеряемое в часах и минутах. Оно не отражает значение свойства DateTime.Kind экземпляра. Поэтому описатель формата "zzz" не рекомендуется использовать со значениями DateTime. При использовании значений DateTimeOffset этот описатель формата представляет смещение значения DateTimeOffset от UTC в часах и минутах. Смещение всегда отображается с предшествующим знаком. Знак "плюс" (+) обозначает часы опережения UTC, а знак "минус" (-) — часы отставания от UTC. Смещение из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">смещение от UTC в часах (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">При использовании значений типа DateTime описатель пользовательского формата "z" представляет значение смещения локального часового пояса операционной системы от UTC, имеющее знак и измеряемое в часах. Оно не отражает значение свойства DateTime.Kind экземпляра. Поэтому описатель формата "z" не рекомендуется использовать со значениями DateTime. При использовании значений DateTimeOffset этот описатель формата представляет смещение значения DateTimeOffset от UTC в часах. Смещение всегда отображается с предшествующим знаком. Знак "плюс" (+) обозначает часы опережения UTC, а знак "минус" (-) — часы отставания от UTC. Смещение из одной цифры форматируется без начального нуля. Если описатель формата "z" используется без других описателей пользовательского формата, он интерпретируется как описатель стандартного формата даты и времени и вызывает исключение FormatException.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">смещение от UTC в часах (2 цифры)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">При использовании значений типа DateTime описатель пользовательского формата "zz" представляет значение смещения локального часового пояса операционной системы от UTC, имеющее знак и измеряемое в часах. Оно не отражает значение свойства DateTime.Kind экземпляра. Поэтому описатель формата "zz" не рекомендуется использовать со значениями DateTime. При использовании значений DateTimeOffset этот описатель формата представляет смещение значения DateTimeOffset от UTC в часах. Смещение всегда отображается с предшествующим знаком. Знак "плюс" (+) обозначает часы опережения UTC, а знак "минус" (-) — часы отставания от UTC. Смещение из одной цифры форматируется с начальным нулем.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">Диапазон [x-y] в обратном порядке</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">год (1–2 цифры)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">Описатель пользовательского формата "y" представляет год как число из одной или двух цифр. Если в значении года больше двух цифр, в результате появятся только два младших разряда. Если первый разряд такого двузначного года является нулевым (например, 2008), число форматируется без начального нуля. Если описатель формата "y" используется без других описателей пользовательского формата, он интерпретируется как описатель "y" стандартного формата даты и времени.</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">год (2 цифры)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">Описатель пользовательского формата "yy" представляет год как число из двух цифр. Если в значении года больше двух значащих цифр, в результате появятся только два младших разряда. Если двузначное значение года содержит меньше двух значащих цифр, число дополняется начальными нулями, чтобы получить два разряда. В операции анализа двузначное значение года, проанализированное с использованием описателя пользовательского формата "yy", интерпретируется на основе Calendar.TwoDigitYearMax текущего календаря поставщика формата. В следующем примере строковое представление даты с двузначным годом анализируется с использованием григорианского календаря для языка и региональных параметров en-US, которые в данном случае являются текущими. Затем объект CultureInfo текущих языка и региональных параметров изменяется для использования объекта GregorianCalendar, свойство TwoDigitYearMax которого было изменено.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">год (3–4 цифры)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">Описатель пользовательского формата "yyy" представляет год как число из по меньшей мере трех цифр. Если в значении года больше трех значащих цифр, они включаются в результирующую строку. Если значение года содержит меньше трех цифр, число дополняется начальными нулями, чтобы получить три разряда.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">год (4 цифры)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">Описатель пользовательского формата "yyyy" представляет год как число из по меньшей мере четырех цифр. Если в значении года больше четырех значащих цифр, они включаются в результирующую строку. Если значение года содержит меньше четырех цифр, число дополняется начальными нулями, чтобы получить четыре разряда.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">год (5 цифр)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">Описатель пользовательского формата "yyyyy" (плюс любое число дополнительных описателей "y") представляет год как число из по меньшей мере пяти цифр. Если в значении года больше пяти значащих цифр, они включаются в результирующую строку. Если значение года содержит меньше пяти цифр, число дополняется начальными нулями, чтобы получить пять разрядов. При наличии дополнительных описателей "y" число дополняется таким количеством начальных нулей, которое позволяет получить нужное число описателей "y".</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">Месяц года</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">Описатель стандартного формата "Y" или "y" представляет строку пользовательского формата даты и времени, определяемую свойством DateTimeFormatInfo.YearMonthPattern заданных языка и региональных параметров. Например, строка пользовательского формата для инвариантных языка и региональных параметров имеет вид "yyyy MMMM".</target> <note /> </trans-unit> </body> </file> </xliff>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/xlf/FeaturesResources.tr.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="tr" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (kısa)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">"t" özel biçim belirticisi, AM/PM belirleyicisinin ilk karakterini temsil eder. Uygun yerelleştirilmiş belirleyici, geçerli veya belirli bir kültürün DateTimeFormatInfo.AMDesignator ya da DateTimeFormatInfo.PMDesignator özelliğinden alınır. AM belirleyicisi, 0:00:00 (gece yarısı) ile 11:59:59.999 arasındaki tüm saatler için kullanılır. PM göstergesi, 12:00:00 (öğlen) ile 23:59:59.999 arasındaki tüm saatler için kullanılır. "t" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart tarih ve saat biçimi belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (tam)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">"tt" özel biçim belirticisi (ve herhangi bir sayıda ek "t" belirticisi), AM/PM belirleyicisini tümüyle temsil eder. Uygun yerelleştirilmiş belirleyici, geçerli veya belirli bir kültürün DateTimeFormatInfo.AMDesignator ya da DateTimeFormatInfo.PMDesignator özelliğinden alınır. AM göstergesi, 0:00:00 (gece yarısı) ile 11:59:59.999 arasındaki tüm saatler için kullanılır. PM göstergesi, 12:00:00 (öğlen) ile 23:59:59.999 arasındaki tüm saatler için kullanılır. AM ve PM arasındaki farkın korunmasının gerekli olduğu diller için "tt" belirticisini kullandığınızdan emin olun. Buna bir örnek, AM ve PM belirleyicilerinin ilk karakter yerine ikinci karakterde farklı olduğu Japoncadır.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Bir çıkarma bir karakter sınıfı içinde son öğe olması gerekir</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">'DebuggerDisplay' özniteliği ekle</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Açık tür dönüştürme ekle</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Üye adı Ekle</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Tüm parametreler için null denetimi ekle</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Oluşturucuya isteğe bağlı parametre ekle</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">'{0}' öğesine (ve geçersiz kılmalara/uygulamalara) parametre ekle</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Oluşturucuya parametre ekle</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">'{0}' üzerine proje başvurusu ekleyin.</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">'{0}' üzerine başvuru ekleyin.</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Eylemler boş olamaz.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">'{0}' demet öğesi adını ekle</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Sarmalanan bağımsız değişkenleri hizala</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Sarmalanan parametreleri hizala</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Değişim koşulları yorum olamaz</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Değişim koşulları yakalamak değil ve adlandırılamaz</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Dosya üst bilgisi tercihlerini uygula</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Nesne/koleksiyon başlatma tercihlerini uygula</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">Beklenen görev '{0}' döndürüyor</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">Beklenen görev değer döndürmüyor</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Temel sınıflarda erişilemeyen, uygulanmamış üyeler var</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Değişiklikler uygulanamıyor - beklenmeyen hata: '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Sınıf \{0} içeremez karakter aralığı</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Yakalama grup numaraları Int32.MaxValue eşit veya daha az olmalıdır</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Yakalama numarası sıfır olamaz</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;çıkarsa&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;atla&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Genel ad alanı olarak değiştir</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Özel durum sırasında durdurulduğunda değişikliklere izin verilmez</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">'{0}' projesinde yapılan değişiklikler, uygulama çalışırken uygulanmayacak</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">{0} kod stilini yapılandır</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">{0} önem derecesini yapılandır</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Tüm '{0}' çözümleyicileri için önem derecesini yapılandır</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Tüm çözümleyiciler için önem derecesini yapılandır</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">LINQ to dönüştürme</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">'{0}' öğesine ekle</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Sınıfa dönüştür</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">LINQ (görüşmesi formu) dönüştürmek</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Kayda dönüştür</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Kayıt yapısına dönüştür</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Yapıya dönüştür</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Türü '{0}' olarak dönüştür</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">'{0}' alanını oluştur ve ata</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">'{0}' özelliğini oluştur ve ata</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Kalanları alan olarak oluştur ve ata</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Kalanları özellik olarak oluştur ve ata</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Bu kodu değiştirmeyin. Temizleme kodunu '{0}' metodunun içine yerleştirin.</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">'{0}' kaynak dosyasının geçerli içeriği, derlenen kaynakla eşleşmiyor. Hata ayıklama işlemi sırasında bu dosyada yapılan değişiklikler, dosyanın içeriği derlenen kaynakla eşleşene kadar uygulanmaz.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Belge, bu hizmeti oluşturan çalışma alanında yer almalıdır</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Düzenle ve Devam Et</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Düzenle ve Devam Et'e modül tarafından izin verilmiyor</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">'{0}' projesinde yapılan değişiklikler hata ayıklama oturumunun devam etmesini engelleyecek: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">Düzenleme ve devam etme işlemleri çalışma zamanı tarafından desteklenmiyor.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">'{0}' dosyası okunurken hata: {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">CodeFixProvider örneği oluşturulurken hata oluştu</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">'{0}' CodeFixProvider örneği oluşturulurken hata oluştu</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Örnek:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Örnekler:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Açık olarak uygulanan kayıt yöntemlerinin derleyici tarafından oluşturulan '{0}' eşdeğeri ile eşleşen parametre adlarına sahip olması gerekir</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Temel sınıfı ayıkla...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Arabirimi ayıkla...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Yerel işlevi ayıkla</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Yöntemi ayıkla</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">{0} için veri akışı analiz edilemedi</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Biçimlendirme Düzeltme</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">'{0}' yazım hatasını düzeltin</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Belgeyi biçimlendir</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Belge biçimlendiriliyor</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Karşılaştırma işleçlerini oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">'{0}' içinde oluşturucu üret (alanlarla birlikte)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">'{0}' içinde oluşturucu üret (özelliklerle birlikte)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">'{0}' için oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">'{0}' parametresini üret</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">'{0}' parametresini (ve geçersiz kılmaları/uygulamaları) üret</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Yasadışı \ model sonunda</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">Yasadışı {x, y} x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">'{0}' öğesini açıkça uygula</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">'{0}' öğesini örtük olarak uygula</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Soyut sınıfı uygula</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Tüm arabirimleri açıkça uygula</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Tüm arabirimleri örtük olarak uygula</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Tüm üyeleri açıkça uygula</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Açıkça uygula</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Örtük olarak uygula</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Kalan üyeleri açıkça uygula</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">'{0}' aracılığıyla uygula</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Tamamlanmamış \p{X} karakter kaçış</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Tüm bağımsız değişkenleri girintile</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Tüm parametreleri girintile</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Sarmalanan bağımsız değişkenleri girintile</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Sarmalanan parametreleri girintile</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">'{0}' öğesini satır içine al</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">'{0}' öğesini satır içine al ve koru</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Yetersiz onaltılık basamak</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Sabit ekle</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Alan ekle</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Yerel ekle</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Sorgu değişkeni ekle</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Geçersiz grup adı: grup adları bir sözcük karakteri ile başlamalıdır</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Sınıfı 'abstract' yap</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Statik yap</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Koşullu öğeyi ters çevir</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">Hatalı biçimlendirilmiş</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Hatalı biçimlendirilmiş \p{X} karakter kaçış</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Hatalı biçimlendirilmiş \k &lt;&gt;... arka başvuru adı</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">İç içe '{0}' deyimiyle birleştir</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Sonraki '{0}' deyimiyle birleştir</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Dıştaki '{0}' deyimiyle birleştir</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Önceki '{0}' deyimiyle birleştir</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} okuma ve arama işlemlerini destekleyen bir akış döndürmelidir.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Eksik denetim karakteri</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">İçerikleri ad alanına taşı...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Dosyayı '{0}' konumuna taşı</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Dosyayı proje kök klasörüne taşı</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Ad alanına taşı...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">İç içe geçmiş niceleyici {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Metot çağrısının ekleneceği geçerli konum yok.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Değil yeterli)'ın</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operatörler</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">Özellik başvurusu güncelleştirilemiyor</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">'{0}' öğesini yukarı çek</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">'{0}' öğesini '{1}' hedefine çek</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Üyeleri temel türe çek...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Üyeleri yeni temel sınıfa çek...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Niceleyici {x, y} hiçbir şeyi takip etmiyor</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">tanımsız grubuna başvuru</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">{0} tanımsız grup adı referansı</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Tanımlanmamış grup numarası {0} referansı</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Tüm denetim karakterleri. Buna Cc, Cf, Cs, Co ve Cn kategorileri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">tüm denetim karakterleri</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Tüm aksan işaretleri. Buna Mn, Mc ve Me kategorileri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">tüm aksan işaretleri</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Tüm harf karakterleri. Buna Lu, Ll, Lt, Lm ve Lo karakterleri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">tüm harf karakterleri</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Tüm sayılar. Bunlara Nd, Nl ve No kategorileri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">tüm sayılar</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Tüm noktalama karakterleri. Buna Pc, Pd, Ps, Pe, Pi, Pf ve Po kategorileri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">tüm noktalama karakterleri</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Tüm ayıraç karakterleri. Buna Zs, Zl ve Zp kategorileri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">tüm ayıraç karakterleri</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Tüm semboller. Buna Sm, Sc, Sk ve So kategorileri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">tüm semboller</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Dikey çubuk (|) karakterini, | karakterinin her deseni ayırdığı bir dizi desenin herhangi biriyle eşleştirmek için kullanabilirsiniz.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">değişim</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Nokta karakteri (.) \n (yeni satır karakteri, \u000A) dışında herhangi bir karakterle eşleşir. Normal ifade deseni RegexOptions.Singleline seçeneği tarafından değiştirilirse veya desenin . karakteri sınıfını içeren kısmı 's' seçeneği tarafından değiştirilirse, . herhangi bir karakterle eşleşir.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">herhangi bir karakter</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Atomik gruplar (diğer bazı normal ifade altyapılarında geri izlemesiz alt ifade, atomik alt ifade veya tek seferlik alt ifade olarak da bilinir) geri izlemeyi devre dışı bırakır. Normal ifade altyapısı, giriş dizesindeki mümkün olduğunca çok sayıda karakterle eşleşir. Başka bir eşleşme mümkün olmadığında, diğer desen eşleşmelerini denemek için geri izleme işlemi yapmaz. (Yani alt ifade yalnızca alt ifade tarafından eşleşen dizelerle eşleşir; alt ifadeyi ve kendisini izleyen alt ifadeleri temel alan bir dizeyle eşleştirmeyi denemez.) Bu seçenek, geri izlemenin başarısız olacağını biliyorsanız önerilir. Normal ifade altyapısının gereksiz arama gerçekleştirmesini önlemek performansı artırır.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">atomik grup</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Bir geri al karakteriyle (\u0008) eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">geri al karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Bir dengeleme grubu tanımı, geçerli grupta, önceden tanımlanmış grup ile geçerli grup arasındaki aralıkta, önceden tanımlanmış bir grubun ve depoların tanımını siler. 'name1' geçerli grup (isteğe bağlı), 'name2' önceden tanımlanmış bir grup ve 'subexpression' ise herhangi bir geçerli normal ifade desenidir. Dengeleme grubu tanımı name2'nin tanımını siler ve name2 ile name1 arasındaki aralığı name1'e depolar. Bir name2 grubu tanımlanmamışsa, eşleşme geri iz sürer. name2'nin son tanımını silmek, name2'nin önceki tanımını ortaya çıkardığından, bu yapı name2 grubu için yakalama yığınını, parantez veya açma ve kapama ayracı gibi iç içe yapıları izlemek için bir sayaç olarak kullanmanıza olanak sağlar. Dengeleme grubu tanımı 'name2' öğesini bir yığın olarak kullanır. Her iç içe yapının başlangıç karakteri, gruba ve grubun Group.Captures koleksiyonuna yerleştirilir. Kapanış karakteri eşleştiğinde, karşılık gelen açma karakteri gruptan kaldırılır ve Captures koleksiyonunda bir öğe azalır. İç içe tüm yapıların açılış ve kapanış karakterleri eşleştirildikten sonra, 'name1' boş olur.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">dengeleme grubu</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">temel grup</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Bir zil (alarm) karakteriyle (\u0007) eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">zil karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Bir satır başı karakteriyle (\u000D) eşleşir. \r karakterinin yeni satır karakteriyle (\n) eşdeğer olmadığını unutmayın.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">satır başı karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">Karakter sınıfı çıkarma işlemi, bir karakter sınıfındaki karakterlerin başka bir karakter sınıfından dışlanması sonucu oluşan bir karakter kümesi oluşturur. 'base_group' pozitif veya negatif bir karakter grubu veya aralığıdır. 'excluded_group' bileşeni başka bir pozitif veya negatif karakter grubu veya başka bir karakter sınıfı çıkarma ifadesidir (başka bir deyişle karakter sınıfı çıkarma ifadelerini iç içe yerleştirebilirsiniz).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">karakter sınıfı çıkarma</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">karakter grubu</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">açıklama</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Bu dil öğesi, başlangıç deseniyle eşleşip eşleşemediğine bağlı olarak iki desenden biriyle eşleşmeye çalışır. 'expression': eşleşecek ilk desen, 'yes': ifade eşleştiğinde eşleşecek olan desen ve 'no': ifade eşleşmediğinde eşleşecek olan isteğe bağlı desendir.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">koşullu ifade eşleşmesi</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Bu dil öğesi, belirtilen bir yakalama grubuyla eşleşip eşleşmediğine bağlı olarak iki desenden biriyle eşleşmeye çalışır. 'name': bir yakalama grubunun adı (veya sayısı), 'yes': 'name' (veya 'number') bir eşleşme içeriyorsa eşleşecek olan ifade ve 'no': 'name' bir eşleşme içermiyorsa eşleşecek olan isteğe bağlı ifadedir.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">koşullu grup eşleşmesi</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">\G yer işareti, bir eşleşmenin önceki eşleşmenin sona erdiği noktada oluşması gerektiğini belirtir. Bu yer işaretini Regex.Matches veya Match.NextMatch yöntemiyle kullandığınızda, tüm eşleşmelerin bitişik olması sağlanır.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">bitişik eşleşmeler</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">ASCII denetim karakteriyle eşleşir (burada X, denetim karakterinin harfidir). Örneğin, \cC: CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">denetim karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d herhangi bir ondalık sayıyla eşleşir. Bu karakter, diğer birkaç karakter kümesinin ondalık sayılarının yanı sıra standart 0-9 ondalık sayılarının dahil olduğu \p{Nd} normal ifade deseniyle eşdeğerdir. ECMAScript uyumlu davranış belirtilmişse, \d [0-9] ile eşdeğerdir</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">ondalık sayı karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Bir sayı işareti (#) normal ifade deseninin sonunda kaçışsız # karakterden başlayan ve satırın sonuna kadar devam eden x-mode açıklamasını işaretler. Bu yapıyı kullanmak için, Regex nesnesinin örneği oluşturulurken ya da statik bir Regex yöntemi çağrılırken (satır içi seçenekler aracılığıyla) x seçeneğini etkinleştirmeniz veya seçenek parametresine RegexOptions.IgnorePatternWhitespace değerini sağlamanız gerekir.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">satır sonu açıklaması</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">\z yer işareti, giriş dizesinin sonunda bir eşleşmenin oluşması gerektiğini belirtir. $ dil öğesi gibi \z, RegexOptions.Multiline seçeneğini yoksayar. \Z dil öğesinin aksine \z, dizenin sonundaki bir \n karakteriyle eşleşmez. Bu nedenle, yalnızca giriş dizesinin son satırıyla eşleşebilir.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">yalnızca dize sonu</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">\Z yer işareti, giriş dizesinin sonunda veya giriş dizesinin sonundaki \n karakterinden önce bir eşleşmenin oluşması gerektiğini belirtir. Bu karakter $ yer işareti ile aynıdır, ancak \Z, RegexOptions.Multiline seçeneğini yoksayar. Bu nedenle çok satırlı bir dizede yalnızca son satırın sonu veya \n karakterinden önceki son satır ile eşleşir. \Z yer işareti \n ile eşleşir, ancak \r\n (CR/LF karakter bileşimi) ile eşleşmez. CR/LF ile eşleştirmek Için, normal ifade desenine \r?\Z karakterini ekleyin.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">dize sonu veya yeni satırı sonlandırmadan önce</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">$ yer işareti, önceki desenin giriş dizesinin sonunda veya giriş dizesinin sonundaki \n karakterinden önce gerçekleşmesi gerektiğini belirtir. $ yer işaretini RegexOptions.Multiline seçeneğiyle birlikte kullanırsanız, eşleşme bir satırın sonunda da olabilir. $ yer işareti \n ile eşleşir, ancak \r\n (satır başı ve yeni satır karakterlerinin bileşimi veya CR/LF) ile eşleşmez. CR/LF karakter bileşimiyle eşleştirmek Için, normal ifade desenine \r?$ ekleyin.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">dize veya satır sonu</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Bir kaçış karakteriyle (\u001B) eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">kaçış karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">hariç tutulan grup</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">ifade</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Bir sonraki sayfaya geçme karakteriyle (\u000C) eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">sonraki sayfaya geçme karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Bu gruplandırma yapısı, bir alt ifade içinde belirtilen seçenekleri uygular veya devre dışı bırakır. Etkinleştirilecek seçenekler soru işaretinden sonra ve devre dışı bırakılacak seçenekler eksi işaretinden sonra belirtilir. İzin verilen seçenekler şunlardır: i Büyük/küçük harfe duyarsız eşleşme kullan. m ^ ve $ işaretlerinin her satırın başı ve sonuyla eşleştiği çok satırlı modu kullan (giriş dizesinin başı ve sonu yerine). s Noktanın (.) her karakter ile eşleştiği tek satırlı modu kullan (\n dışında her karakter yerine). n Adsız grupları yakalama. Yalnızca şu yakalamalar geçerlidir: formun açıkça adlandırılmış veya numaralandırılmış grupları (?&lt;ad&gt; alt ifadesi). x Kaçışsız boşluğu desenden çıkar ve bir sayı işaretinden (#) sonra açıklamaları etkinleştir.</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">grup seçenekleri</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">## karakterinin iki basamaklı onaltılık karakter kodu olduğu bir ASCII karakteriyle eşleşir.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">onaltılık kaçış</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">(?# comment) yapısı, bir normal ifadeye satır içi açıklama eklemenizi sağlar. Açıklama Regex.ToString yöntemi tarafından döndürülen dizeye dahil edilmiş olsa da, normal ifade altyapısı açıklamanın herhangi bir bölümünü desen eşleşmesinde kullanmaz. Açıklama ilk kapatma parantezinde sonlanır.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">satır içi açıklama</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Normal bir ifadenin kalanı için belirli desen eşleştirme seçeneklerini etkinleştirir veya devre dışı bırakır. Etkinleştirilecek seçenekler soru işaretinden sonra ve devre dışı bırakılacak seçenekler eksi işaretinden sonra belirtilir. İzin verilen seçenekler şunlardır: i Büyük/küçük harfe duyarsız eşleşme kullan. m ^ ve $ karakterlerinin her satırın başı ve sonuyla eşleştiği çok satırlı modu kullan (giriş dizesinin başı ve sonu yerine). s Noktanın (.) her karakter ile eşleştiği tek satırlı modu kullan (\n dışında her karakter yerine). n Adsız grupları yakalama. Yalnızca şu yakalamalar geçerlidir: formun açıkça adlandırılmış veya numaralandırılmış grupları (?&lt;name&gt; alt ifadesi). x Kaçışsız boşluğu desenden çıkar ve sayı işaretinden (#) sonra açıklamaları etkinleştir.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">satır içi seçenekler</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Regex sorunu: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">harf, küçük harf</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">harf, değiştirici</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">harf, diğer</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">harf, ilk harfler büyük</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">harf, büyük harf</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">işaret, kapsayan</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">işaret, aralıksız</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">işaretler, aralık birleştirme</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">{n,}? niceleyicisi önceki öğeyle en az n kez eşleşir (burada n herhangi bir tamsayıdır), ancak bunu mümkün olduğunca az sayıda yapar. Bu, hızlı niceleyicinin gecikmeli karşılığıdır {n,}</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">en az 'n' kez eşle (gecikmeli)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">{n,} niceleyicisi önceki öğeyle en az n kez eşleşir (burada n herhangi bir tamsayıdır). {n,}, gecikmeli karşılığı {n,}? olan hızlı bir niceleyicidir</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">en az 'n' kez eşleş</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">{n,m}? niceleyicisi, bir önceki öğeyle en az n ve en çok m kez eşleşir (burada n ve m tamsayıdır), ancak bunu olabildiğince az sayıda yapar. Bu, {n,m} hızlı niceleyicisinin gecikmeli karşılığıdır</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">en az 'n' kez eşle (gecikmeli)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">{n,m} niceleyicisi, bir önceki öğeyle en az n ve en çok m kez eşleşir (burada n ve m tamsayıdır). {n,m}, gecikmeli karşılığı {n,m}? olan bir hızlı niceleyicidir</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">en az 'n' ve en çok 'm' kez eşleş</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">{n}? niceleyicisi, önceki öğe ile tam olarak n kez eşleşir (burada n herhangi bir tamsayıdır). Bu, {n}+ hızlı niceleyicisinin gecikmeli karşılığıdır</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">tam olarak 'n' kez eşleş (gecikmeli)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">{n} niceleyicisi, önceki öğe ile tam olarak n kez eşleşir (burada n herhangi bir tamsayıdır). {n}, gecikmeli karşılığı {n}? olan bir hızlı niceleyicidir</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">tam olarak 'n' kez eşleş</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">+? niceleyicisi bir önceki öğeyle en az bir kez eşleşir, ancak bunu mümkün olduğunca az sayıda yapar. Bu, + hızlı niceleyicisinin gecikmeli karşılığıdır</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">bir veya daha çok kez eşleş (en düşük kapsamlı)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">+ niceleyicisi bir önceki öğeyle en az bir kez eşleşir. {1,} niceleyicisi ile eşdeğerdir. +, gecikmeli karşılığı +? olan bir hızlı niceleyicidir.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">en az bir kez eşleş</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">*? niceleyicisi bir önceki öğeyle sıfır veya daha çok kez eşleşir, ancak bunu mümkün olduğunca az sayıda yapar. Bu, * en yüksek kapsamlı niceleyicisinin en düşük kapsamlı karşılığıdır</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">en az sıfır kez eşleş (gecikmeli)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">* niceleyicisi bir önceki öğeyle en az sıfır kez eşleşir. {0,} niceleyicisi ile eşdeğerdir. *, gecikmeli karşılığı *? olan bir hızlı niceleyicidir.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">en az sıfır kez eşleş</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">?? niceleyicisi bir önceki öğeyle sıfır veya bir kez eşleşir, ancak bunu mümkün olduğunca az sayıda yapar. Bu, ? hızlı niceleyicisinin gecikmeli karşılığıdır</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">sıfır veya bir kez eşleş (gecikmeli)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">? niceleyicisi bir önceki öğeyle sıfır veya bir kez eşleşir. {0,1} niceleyicisi ile eşdeğerdir. ?, gecikmeli karşılığı ?? olan bir hızlı niceleyicidir.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">sıfır veya bir kez eşleş</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Bu gruplandırma yapısı, 'subexpression' öğesinin herhangi bir geçerli normal ifade deseni olduğu eşleşen bir 'subexpression' yakalar. Parantez kullanan yakalamalar, normal ifadedeki açma parantezlerinin sırasına göre soldan sağa birden başlayarak otomatik numaralandırılır. Sıfır olarak numaralandırılan yakalama, normal ifade deseninin tamamı tarafından eşleşen metindir.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">eşleşen alt ifade</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">ad</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">ad veya sayı</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Adlandırılmış veya numaralandırılmış bir geri başvuru. 'name', normal ifade deseninde tanımlanan yakalama grubunun adıdır.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">adlandırılmış geri başvuru</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Eşleşen bir alt ifadeyi yakalar ve bu alt ifadeye ada veya numaraya göre erişmenizi sağlar. 'name' geçerli bir grup adı ve 'subexpression' herhangi bir geçerli normal ifade desenidir. 'name', hiçbir noktalama karakteri içermemelidir ve bir sayı ile başlayamaz. Normal ifade deseni eşleştirme yönteminin RegexOptions parametresi RegexOptions.ExplicitCapture bayrağını içeriyorsa veya n seçeneği bu alt ifadeye uygulanıyorsa, bir alt ifadeyi yakalamanın tek yolu yakalama gruplarını açıkça adlandırmaktır.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">adlandırılmış eşleşen alt ifade</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Negatif bir karakter grubu, bir eşleştirme oluşması için giriş dizesinde görünmemesi gereken bir karakter listesi belirtir. Karakter listesi tek tek belirtilir. İki veya daha fazla karakter aralığı art arda eklenebilir. Örneğin, "0" ile "9" arasındaki ondalık basamakların aralığını, "a" ile "f" arasında küçük harflerin aralığını ve "A" ile "F" arasında büyük harflerin aralığını belirtmek için [0-9a-fA-F] kullanın.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">negatif karakter grubu</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Negatif bir karakter aralığı, bir eşleştirme oluşması için giriş dizesinde görünmemesi gereken bir karakter listesi belirtir. 'firstCharacter' aralığı başlatan karakter ve 'lastCharacter' ise aralığı sonlandıran karakterdir. İki veya daha fazla karakter aralığı art arda eklenebilir. Örneğin, "0" ile "9" arasındaki ondalık sayıların aralığını, "a" ile "f" arasında küçük harflerin aralığını ve "A" ile "F" arasındaki büyük harflerin aralığını belirtmek için [0-9a-fA-F] kullanın.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">negatif karakter aralığı</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">\P{ name } normal ifade yapısı, Unicode genel kategorisine veya adın kategori kısaltması ya da adlandırılmış blok adı olduğu adlandırılmış bloğa ait olmayan herhangi bir karakterle eşleşir.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">negatif Unicode kategorisi</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Yeni satır karakteriyle \u000A eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">yeni satır karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">hayır</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D rakam olmayan herhangi bir karakter ile eşleşir. \P{Nd} normal ifade deseniyle eşdeğerdir. ECMAScript uyumlu davranış belirtilmişse \D, [^0-9] ile eşdeğerdir</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">rakam olmayan karakter</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S boşluk olmayan herhangi bir karakter ile eşleşir. [^\f\n\r\t\v\x85\p{Z}] normal ifade deseniyle eşdeğerdir veya boşluk karakterleriyle eşleşen \s ile eşdeğer olan normal ifade deseninin tersidir. ECMAScript uyumlu davranış belirtilmişse \S, [^ \f\n\r\t\v] ile eşdeğerdir</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">boşluk olmayan karakter</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">\B yer işareti, eşleşmenin bir sözcük sınırında oluşmaması gerektiğini belirtir. Bu işaret, \b yer işaretinin tersidir.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">sözcük olmayan sınır</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W sözcük olmayan herhangi bir karakterle eşleşir. Aşağıdaki Unicode kategorilerinde bulunanlar dışındaki herhangi bir karakterle eşleşir: Ll Harf, Küçük Harf Lu Harf, Büyük Harf Lt Harf, İlk Harfler Büyük Lo Harf, Diğer Lm Harf, Değiştirici Mn İşaret, Aralıksız Nd Numara, Ondalık Sayı Pc Noktalama, Bağlayıcı ECMAScript uyumlu davranış belirtilmişse \W, [^a-zA-Z_0-9] ile eşdeğerdir</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">sözcük olmayan karakter</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Bu yapı bir alt ifade tarafından eşleştirilen alt dizeyi yakalamaz: Yakalama yapmayan grup yapısı genellikle bir gruba niceleyici uygulandığında kullanılır, ancak grup tarafından yakalanan alt dizelerle ilgilenilmez. Bir normal ifade iç içe gruplama yapıları içeriyorsa, dıştaki yakalama yapmayan grup yapısı içteki iç içe geçmiş grup yapılarına uygulanmaz.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">yakalama yapmayan grup</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">sayı, ondalık sayı</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">sayı, harf</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">sayı, diğer</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">'number' öğesinin normal ifadede yakalama grubunun sıralı konumu olduğu numaralandırılmış bir geri başvuru. Örneğin, \4 dördüncü yakalama grubunun içerikleriyle eşleşir. Sekizlik kaçış kodları (\16 gibi) ile aynı gösterimi kullanan \number geri başvuruları arasında bir belirsizlik vardır. Belirsizlik bir sorun oluşturuyorsa, belirsiz olmayan ve sekizlik karakter kodlarıyla karıştırılamayacak olan \k&lt;name&gt; gösterimini kullanabilirsiniz. Benzer şekilde, \xdd gibi onaltılık kodlar da belirsiz değildir ve geri başvurularla karıştırılamaz.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">numaralandırılmış geri başvuru</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">diğer, denetim</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">diğer, biçim</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">diğer, atanmamış</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">diğer, özel kullanım</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">diğer, vekil</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Pozitif bir karakter grubu, herhangi biri bir eşleşme olması için giriş dizesinde görünebilir bir karakter listesini belirtir.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">pozitif karakter grubu</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Pozitif bir karakter aralığı, herhangi bir eşleşme olması için giriş dizesinde görünebilir bir karakter aralığı belirtir. 'firstCharacter', aralığı başlatan karakter ve 'lastCharacter', aralığı sonlandıran karakterdir. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">pozitif karakter aralığı</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">noktalama, kapat</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">noktalama, bağlayıcı</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">noktalama, tire</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">noktalama, son alıntı</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">noktalama, ilk alıntı</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">noktalama, açık</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">noktalama, diğer</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">ayıraç, satır</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">ayıraç, paragraf</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">ayıraç, boşluk</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">\A yer işareti, giriş dizesinin başlangıcında bir eşleşmenin oluşması gerektiğini belirtir. ^ yer işaretiyle aynıdır, ancak \A RegexOptions.Multiline seçeneğini yoksayar. Bu nedenle, çok satırlı bir giriş dizesinde yalnızca ilk satırın başlangıcı ile eşleşebilir.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">yalnızca dize başlangıcı</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">^ yer işareti, aşağıdaki desenin dizenin ilk karakter konumunda başlaması gerektiğini belirtir. ^ işaretini RegexOptions.Multiline seçeneğiyle kullanırsanız, eşleşme her satırın başlangıcında oluşmalıdır.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">dize veya satır başlangıcı</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">alt ifade</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">sembol, para birimi</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">sembol, matematik</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">sembol, değiştirici</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">sembol, diğer</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Bir sekme karakteriyle (\u0009) eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">sekme karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">\p{ name } normal ifade yapısı, bir Unicode genel kategorisine veya adın kategori kısaltması veya adlandırılmış blok adı olduğu adlandırılmış bloğa ait olan herhangi bir karakterle eşleşir.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">Unicode kategorisi</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">#### onaltılık değeri olan bir UTF-16 kod birimiyle eşleşir.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">Unicode kaçışı</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Unicode Genel Kategorisi: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Dikey sekme karakteriyle (\u000B) eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">dikey sekme karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s herhangi bir boşluk karakteriyle eşleşir. Aşağıdaki kaçış dizileri ve Unicode kategorileriyle eşdeğerdir: \f Sonraki sayfaya geçme karakteri: \u000C \n Yeni satır karakteri: \u000A \r Satır başı karakteri: \u000D \t Sekme karakteri: \u0009 \v Dikey sekme karakteri: \u000B \x85 Üç nokta veya SONRAKİ SATIR (NEL) karakteri (...): \u0085 \p{Z} Herhangi bir ayıraç karakteriyle eşleşir ECMAScript uyumlu davranış belirtilmişse, \s değeri [ \f\n\r\t\v] ile eşdeğerdir</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">boşluk karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">\b yer işareti, eşleşmenin bir sözcük karakteri (\w dil öğesi) ile sözcük olmayan bir karakter (\W dil öğesi) arasındaki bir sınırda oluşması gerektiğini belirtir. Sözcük karakterleri, alfasayısal karakterlerden ve alt çizgilerden oluşur; sözcük olmayan karakter, alfasayısal veya alt çizgi olmayan herhangi bir karakterdir. Ayrıca dizenin başlangıcında veya sonunda bulunan bir sözcük sınırında da eşleşme gerçekleşebilir. \b yer işareti, sıklıkla bir alt ifadenin yalnızca sözcüğün başı veya sonu yerine tüm sözcükle eşleştiğinden emin olmak için kullanılır.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">sözcük sınırı</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w herhangi bir sözcük karakteriyle eşleşir. Bir sözcük karakteri şu Unicode kategorilerden herhangi birinin üyesidir: Ll Harf, Küçük Harf Lu Harf, Büyük Harf Lt Harf, İlk Harfler Büyük Lo Harf, Diğer Lm Harf, Değiştirici Mn İşaret, Aralıksız Nd Numara, Ondalık Sayı Pc Noktalama, Bağlayıcı ECMAScript uyumlu davranış belirtilmişse, \w [a-zA-Z_0-9] ile eşdeğerdir</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">sözcük karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">evet</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Eşleşmenin başarılı olması için giriş dizesinin alt ifadedeki normal ifade deseniyle eşleşmemesi gerektiği sıfır genişlikli bir negatif ileri yönlü onaylama. Eşleşen dize, eşleşme sonucuna dahil değildir. Sıfır genişlikli bir negatif ileri yönlü onaylama genellikle normal ifadenin başında veya sonunda kullanılır. Normal bir ifadenin başında olduğunda, normal ifadenin başının eşleştirilecek benzer ancak daha genel bir desen tanımlaması durumunda, eşleştirilmemesi gereken belirli bir desen tanımlayabilir. Bu durumda, genellikle geri izlemeyi sınırlandırmak için kullanılır. Normal bir ifadenin sonunda olduğunda, bir eşleşmenin sonunda oluşamayacak bir alt ifade tanımlayabilir.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">sıfır genişlikli negatif ileri yönlü onaylama</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Bir eşleşmenin başarılı olması için geçerli konumun solundaki giriş dizesinde 'subexpression' gerçekleşmemesi gereken sıfır genişlikli bir negatif geri yönlü onaylama. 'subexpression' ile eşleşmeyen herhangi bir alt dize, eşleşme sonucuna dahil değildir. Sıfır genişlikli negatif geri yönlü onaylamalar genellikle normal ifadelerin başlangıcında kullanılır. Tanımladıkları desen, kendisini izleyen dizede bir eşleşmenin önüne geçer. Ayrıca, yakalanan bir gruptaki son karakter veya karakterler, grubun normal ifade deseniyle eşleşen karakterlerden biri veya daha fazlası olmaması gerektiğinde, geri izlemeyi sınırlandırmak için de kullanılır.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">sıfır genişlikli negatif geri yönlü onaylama</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Bir eşleşmenin başarılı olması için giriş dizesinin 'subexpression' içindeki normal ifade deseniyle eşleşmesi gerektiği sıfır genişlikli bir pozitif ileri yönlü onaylama. Eşleşen alt dize, eşleşme sonucuna dahil değildir. Sıfır genişlikli bir pozitif ileri yönlü onaylama geri izleme yapmaz. Sıfır genişlikli bir pozitif ileri yönlü onaylama genellikle normal ifade deseninin sonunda bulunur. Bir eşleşmenin gerçekleşmesi için bir dizenin sonunda bulunması, ancak eşleştirmeye dahil edilmemesi gereken bir alt dizeyi tanımlar. Aşırı geri izleme yapılmasını önlemek için de yararlıdır. Yakalanan belirli bir grubun, bu yakalanmış grup için tanımlanan desenin bir alt kümesiyle eşleşen metinle başladığından emin olmak için sıfır genişlikli bir pozitif ileri yönlü onaylama işlemi kullanabilirsiniz.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">sıfır genişlikli pozitif ileri yönlü onaylama</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Bir eşleşmenin başarılı olması için geçerli konumun solundaki giriş dizesinde 'subexpression' oluşması gereken sıfır genişlikli bir pozitif geri yönlü onaylama işlemi. 'subexpression' eşleşme sonucuna dahil değildir. Sıfır genişlikli bir pozitif geri yönlü onaylama işlemi geri izleme yapmaz. Sıfır genişlikli pozitif geri yönlü onaylamalar genellikle normal ifadelerin başında kullanılır. Tanımladıkları desen eşleşme sonucunun bir parçası olmasa da, bir eşleşme ön koşuludur.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">sıfır genişlikli pozitif geri yönlü onaylama</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Meta verilerde bulunan ilgili metot imzaları güncelleştirilmez.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Belgenin kaldırılması desteklenmiyor</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">'async' değiştiricisini kaldırın</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Gereksiz atamaları kaldır</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Kullanılmayan değişkenleri kaldır</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">'{0}' öğesini '{1}' ile değiştir</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Çakışma işaretçilerini çözümle</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">İşlenmemiş düzenleme</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Erişilebilirlik değiştiricilerini sırala</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Ardışık '{0}' deyimlerine ayır</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">İç içe '{0}' deyimlerine ayır</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Akış okuma ve arama işlemlerini desteklemelidir.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">{0} eylemini bastır</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: yönetilmeyen kaynakları (yönetilmeyen nesneleri) serbest bırakın ve sonlandırıcıyı geçersiz kılın</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: sonlandırıcıyı yalnızca '{0}' içinde yönetilmeyen kaynakları serbest bırakacak kod varsa geçersiz kılın</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Hedef tür eşleşmeleri</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">'{1}' türünü içeren '{0}' bütünleştirilmiş kodu, desteklenmeyen .NET Framework'e başvuruyor.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">Seçim, bildirimi olmadan bir yerel işlev çağrısı içeriyor.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Çok fazla | içinde (?) (|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Çok fazla)'s</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">'{0}' kaynak dosyası veya içeren proje için oluşturulan PDB okunamıyor. Hata ayıklama sırasında bu dosyada yapılan değişiklikler, dosyanın içeriği oluşturulan kaynakla eşleşene kadar uygulanmaz.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Bilinmeyen Özellik</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">'Bilinmeyen {0}' özelliği</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Tanınmayan denetim karakteri</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Tanınmayan çıkış sırası \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Tanınmayan gruplama yapısı</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Sonlandırılmamış [] kümesi</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Sonlandırılmamış (?... #) yorum</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</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> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Tüm parametrelerin sarmalamasını kaldır</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Sarmalamayı kaldır ve tüm bağımsız değişkenleri girintile</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Sarmalamayı kaldır ve tüm parametreleri girintile</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Bağımsız değişken listesinin sarmalamasını kaldır</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Çağrı zincirinin sarmalamasını kaldır</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">İfadenin sarmalamasını kaldır</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Parametre listesinin sarmalamasını kaldır</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Lambda ifadeleri için blok vücut kullanımı</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Lambda ifadeleri için ifade vücut kullanımı</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Enterpolasyonlu kelimesi kelimesine dizeyi kullanın</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Değer:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Uyarı: İfade dönüştürülürken semantikleri değişebilir.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Çağrı zincirini sarmala ve hizala</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">İfadeyi kaydır ve hizala</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Uzun çağrı zincirini sarmala ve hizala</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Çağrı zincirini sarmala</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Her bağımsız değişkeni sarmala</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Her parametreyi sarmala</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">İfadeyi sarmala</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Uzun bağımsız değişken listesini sarmala</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Uzun çağrı zincirini sarmala</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Uzun parametre listesini sarmala</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Kaydırma</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Bağlamlarda geçiş yapmak için gezinti çubuğunu kullanabilirsiniz.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}' null veya boş olamaz.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}' null veya boşluk olamaz.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">'{0}' burada null değil.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">'{0}' burada null olabilir.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">Saniyenin 10.000.000'da biri</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffffff" özel biçim belirticisi, saniye kesirinin en anlamlı yedi basamağını; yani bir tarih ve saat değerinde saniyenin on milyonda birini temsil eder. Bir saat değerinin saniyenin on milyonda birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">Saniyenin 10.000.000'da biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFFF" özel biçim belirticisi, saniye kesirinin en anlamlı yedi basamağını; yani bir tarih ve saat değerinde saniyenin on milyonda birini temsil eder. Ancak, sondaki sıfırlar veya yedi sıfır rakamı görüntülenmez. Bir saat değerinin saniyenin on milyonda birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">Saniyenin 1.000.000'da biri</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffffff" özel biçim belirticisi, saniye kesirinin en anlamlı altı basamağını; yani bir tarih ve saat değerinde saniyenin milyonda birini temsil eder. Bir saat değerinin saniyenin milyonda birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">Saniyenin 1.000.000'da biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFF" özel biçim belirticisi, saniye kesirinin en anlamlı altı basamağını; yani bir tarih ve saat değerinde saniyenin milyonda birini temsil eder. Ancak, sondaki sıfırlar veya altı sıfır rakamı görüntülenmez. Bir saat değerinin saniyenin milyonda birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">Saniyenin 100.000'de biri</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffff" özel biçim belirticisi, saniye kesirinin en anlamlı beş basamağını; yani bir tarih ve saat değerinde saniyenin yüz binde birini temsil eder. Bir saat değerinin saniyenin yüz binde birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">Saniyenin 100.000'de biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFF" özel biçim belirticisi, saniye kesirinin en anlamlı beş basamağını; yani bir tarih ve saat değerinde saniyenin yüz binde birini temsil eder. Ancak, sondaki sıfırlar veya beş sıfır rakamı görüntülenmez. Bir saat değerinin saniyenin yüz binde birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">Saniyenin 10.000'de biri</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffff" özel biçim belirticisi, saniye kesirinin en anlamlı dört basamağını; yani bir tarih ve saat değerinde saniyenin on binde birini temsil eder. Bir saat değerinin saniyenin on binde birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin ölçebildiği en düşük zaman aralığına bağlıdır. Windows NT sürüm 3.5 (ve üstü) ile Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">Saniyenin 10.000'de biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFF" özel biçim belirticisi, saniye kesirinin en anlamlı dört basamağını; yani bir tarih ve saat değerinde saniyenin on binde birini temsil eder. Ancak, sondaki sıfırlar veya dört sıfır rakamı görüntülenmez. Bir saat değerinin saniyenin on binde birlik bileşenini görüntülemek mümkün olmakla birlikte, bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">Saniyenin 1.000'de biri</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">"fff" özel biçim belirticisi, saniye kesirinin en anlamlı üç basamağını; yani bir tarih ve saat değerinde milisaniyeyi temsil eder.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">Saniyenin 1.000'de biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">"FFF" özel biçim belirticisi, saniye kesirinin en anlamlı üç basamağını; yani bir tarih ve saat değerinde milisaniyeyi temsil eder. Ancak, sondaki sıfırlar veya üç sıfır rakamı görüntülenmez.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">Saniyenin 100'de biri</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">"ff" özel biçim belirticisi, saniye kesirin en anlamlı iki basamağını; yani bir tarih ve saat değerinde saniyenin yüzde birini temsil eder.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">Saniyenin 100'de biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">"FF" özel biçim belirticisi, saniye kesirinin en anlamlı iki basamağını; yani bir tarih ve saat değerinde saniyenin yüzde birini temsil eder. Ancak sondaki sıfırlar veya iki sıfır rakamı görüntülenmez.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">Saniyenin 10'da biri</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">Saniyenin 10'da biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">"F" özel biçim belirticisi, saniye kesirinin en anlamlı basamağını; yani bir tarih ve saat değerinde saniyenin onda birini temsil eder. Rakam sıfırsa hiçbir şey görüntülenmez. "F" biçim belirticisi başka biçim belirticileri olmadan kullanılırsa, standart tarih ve saat biçim belirticisi "F" olarak yorumlanır. Parse, TryParse, ParseExact veya TryParseExact yöntemi ile kullanılan "F" biçim belirticilerinin sayısı, dizenin başarıyla ayrıştırılması için saniye kesirinde bulunabilecek maksimum anlamlı rakam sayısını gösterir.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12 saatlik düzen (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"h" özel biçim belirticisi saati 1 ile 12 arasında bir sayı ile temsil eder; yani saat, gece yarısı veya öğleden beri geçen saat sayısını belirten 12 saatlik bir düzen ile temsil edilir. Gece yarısından sonraki belirli bir saat, öğleden sonraki aynı saatten ayırt edilemez. Saat yuvarlanmaz ve tek haneli bir saat, önüne sıfır konmadan biçimlendirilir. Örneğin, sabah veya öğleden sonra saat 5:43 için bu özel biçim belirticisi "5" görüntüler. "h" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart bir tarih ve saat biçimi belirticisi olarak yorumlanır ve bir FormatException oluşturur.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12 saatlik düzen (2 rakam)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">"hh" özel biçim belirticisi (ve herhangi bir sayıda ek "h" belirticisi) saati 01 ile 12 arasında bir sayı ile temsil eder; yani saat, gece yarısı veya öğleden bu yana geçen saat sayısını belirten 12 saatlik bir düzen ile gösterilir. Gece yarısından sonraki belirli bir saat, öğleden sonraki aynı saatten ayırt edilemez. Saat yuvarlanmaz ve tek haneli bir saat başına sıfır eklenerek biçimlendirilir. Örneğin, sabah veya öğleden sonra saat 5:43 için bu biçim belirticisi "05" görüntüler.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24 saatlik düzen (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"H" özel biçim belirticisi saati 0 ile 23 arasında bir sayı ile temsil eder; yani saat, gece yarısından beri geçen saat sayısını belirten sıfır tabanlı 24 saatlik bir düzen ile temsil edilir. Tek haneli bir saat, başına sıfır eklenmeden biçimlendirilir. "H" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart bir tarih ve saat biçimi belirticisi olarak yorumlanır ve bir FormatException oluşturur.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24 saatlik düzen (2 rakam)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">"HH" özel biçim belirticisi (ve herhangi bir sayıda ek "H" belirticisi) saati 00 ile 23 arasında bir sayı ile temsil eder; yani saat, gece yarısından bu yana geçen saat sayısını belirten sıfır tabanlı 24 saatlik bir düzen ile temsil edilir. Tek haneli bir saat, başına sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">kod</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">tarih ayırıcısı</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"/" özel biçim belirticisi yılları, ayları ve günleri ayırt etmek için kullanılan tarih ayırıcısını temsil eder. Uygun yerelleştirilmiş tarih ayırıcısı, geçerli veya belirtilen kültürün DateTimeFormatInfo.DateSeparator özelliğinden alınır. Not: Belirli bir tarih ve saat dizesinin tarih ayırıcısını değiştirmek için ayırıcı karakteri bir sabit dize sınırlayıcısı içinde belirtin. Örneğin, özel biçim dizesi gg'/'aa'/'yyyy, tarih ayırıcısı olarak her zaman "/" kullanılan bir sonuç dizesi oluşturur. Bir kültürde tüm tarihlerin tarih ayırıcısını değiştirmek için geçerli kültürün DateTimeFormatInfo.DateSeparator özelliğinin değerini değiştirin ya da DateTimeFormatInfo nesnesinin bir örneğini oluşturun, karakteri DateSeparator özelliğine atayın ve bir IFormatProvider parametresi içeren biçimlendirme yönteminin bir aşırı yüklemesini çağırın. "/" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart bir tarih ve saat biçimi belirticisi olarak yorumlanır ve bir FormatException oluşturur.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">ayın günü (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">"d" özel biçim belirticisi, ayın gününü 1 ile 31 arasındaki bir sayı ile temsil eder. Tek haneli bir gün, başına sıfır konmadan biçimlendirilir. "d" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, "d" standart tarih ve saat biçimi belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">ayın günü (2 rakam)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">"dd" özel biçim dizesi, ayın gününü 01 ile 31 arasında bir sayı ile temsil eder. Tek haneli bir gün, başına sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">haftanın günü (kısa)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">"ddd" özel biçim belirticisi, haftanın gününün kısaltılmış adını temsil eder. Haftanın gününün yerelleştirilmiş kısaltılmış adı, geçerli veya belirtilen kültürün DateTimeFormatInfo.AbbreviatedDayNames özelliğinden alınır.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">haftanın günü (tam)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">"dddd" özel biçim belirticisi (ve herhangi bir sayıda "d" belirticisi) haftanın gününün tam adını temsil eder. Haftanın gününün yerelleştirilmiş adı, geçerli veya belirtilen kültürün DateTimeFormatInfo.DayNames özelliğinden alınır.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">at</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">meta verilerden</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">tam uzun tarih/saat</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">"F" standart biçim belirticisi, geçerli DateTimeFormatInfo.FullDateTimePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültür için özel biçim dizesi "dddd, dd MMMM yyyy HH:mm:ss" şeklindedir.</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">tam kısa tarih/saat</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Tam Tarih Kısa Saat ("f") Biçim Belirticisi "F" standart biçim belirticisi, bir boşlukla ayrılmış olarak uzun tarih ("D") ve kısa saat ("t") desenlerinin bir birleşimini temsil eder.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">genel uzun tarih/saat</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">"G" standart biçim belirticisi, boşlukla ayrılmış olarak kısa tarih ("d") ve uzun saat ("T") desenlerinin bir bileşimini temsil eder.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">genel kısa tarih/saat</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">"g" standart biçim belirticisi, boşlukla ayrılmış olarak kısa tarih ("d") ve kısa saat ("t") desenlerinin bir bileşimini temsil eder.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">genel aşırı yükleme</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">genel aşırı yüklemeler</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">{0} ({1}-{2}) içinde</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">Kaynakta (öznitelik)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">uzun tarih</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">"D" standart biçim belirticisi, geçerli DateTimeFormatInfo.LongDatePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültür için özel biçim dizesi "dddd, dd MMMM yyyy"dir.</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">uzun saat</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">"T" standart biçim belirticisi, belirli bir kültürün DateTimeFormatInfo.LongTimePattern özelliği tarafından tanımlanan bir özel tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültür için özel biçim dizesi "HH:mm:ss" şeklindedir.</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">dakika (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">"m" özel biçim belirticisi dakikayı 0 ile 59 arasında bir sayı ile temsil eder. Dakika, son saatten bu yana geçen tam dakikaları temsil eder. Tek haneli bir dakika, başına sıfır eklenmeden biçimlendirilir. "m" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart tarih ve saat biçim belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">dakika (2 rakam)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">"mm" özel biçim belirticisi (ve herhangi bir sayıda ek "m" belirticisi) dakikayı 00 ile 59 arasında bir sayı ile temsil eder. Dakika, son saatten bu yana geçen tam dakikaları temsil eder. Tek haneli bir dakika, başına sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">ay (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">"M" özel biçim belirticisi ayı 1 ile 12 (veya 13 ayı olan takvimler için 1 ile 13) arasında bir sayı ile temsil eder. Tek haneli bir ay, başına sıfır eklenmeden biçimlendirilir. "A" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart tarih ve saat biçimi belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">ay (2 rakam)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">"MM" özel biçim belirticisi, ayı 01 ile 12 (veya 13 ayı olan takvimler için 1 ile 13) arasında bir sayı olarak temsil eder. Tek haneli bir ay, başına sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">ay (kısa)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">"MMM" özel biçim belirticisi, ayın kısaltılmış adını temsil eder. Ayın yerelleştirilmiş kısaltılmış adı, geçerli veya belirtilen kültürün DateTimeFormatInfo.AbbreviatedMonthNames özelliğinden alınır.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">ayın günü</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">"M" veya "m" standart biçim belirticisi, geçerli DateTimeFormatInfo.MonthDayPattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültür için özel biçim dizesi "MMMM dd"dir.</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">ay (tam)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">"MMMM" özel biçim belirticisi, ayın tam adını temsil eder. Ayın yerelleştirilmiş adı, geçerli veya belirtilen kültürün DateTimeFormatInfo.MonthNames özelliğinden alınır.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">aşırı yükleme</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">aşırı yüklemeler</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} Anahtar Sözcüğü</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Alanı kapsülle: '{0}' (ve özelliği kullan)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Alanı kapsülle: '{0}' (ancak alanı kullanmaya devam et)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Alanları kapsülle (ve özelliği kullanın)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Alanları kapsülle (ancak alanı kullanmaya devam et)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Arabirim ayıklanamadı: Seçim bir sınıf/arabirim/yapı birimi içinde değil.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Arabirim ayıklanamadı: Tür, arabirime çıkarılabilecek bir üye içermiyor.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">Son ağaç oluşturulamıyor</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Parametrelerin türü veya dönüş türü anonim tür olamaz: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">Seçim etkin deyim içermiyor.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">Seçim bir hata veya bilinmeyen tür içeriyor.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Tür parametresi '{0}' farklı bir tür parametresi olan '{1}' tarafından gizlendi.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">Değişkenin adresi seçilen kod içinde kullanılıyor.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">Salt okunur alanlara atama bir oluşturucuda yapılmalıdır: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">Üretilen kod kodun gizli bölümüyle çakışıyor</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">'{0}' öğesine isteğe bağlı parametreler ekle</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">'{0}' öğesine parametre ekle</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">{0}({1})' temsilci oluşturucusunu üret</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">{0}({1})' oluşturucusunu üret</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">{0}({1})' alan atama oluşturucusunu üret</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Equals ve GetHashCode oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Equals(object) oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">GetHashCode() oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">'{0}' içinde oluşturucu üretin</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Tümünü üret</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">{1}.{0}' sabit listesi üyesini oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">{1}.{0}' sabitini oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">{1}.{0}' salt okunur özelliğini üretin</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">{1}.{0}' özelliğini üretin</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">{1}.{0}' salt okunur alanını üretin</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">{1}.{0}' alanını oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Yerel '{0}' üretin</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Yeni dosyada {0} '{1}' oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">İç içe {0} '{1}' oluştur</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Genel Ad Uzayı</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Arabirimi soyut olarak uygula</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Arabirimi '{0}' aracılığıyla uygula</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Arabirimi uygula</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">'{0}' için alanı ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">'{0}' için yereli ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">'{0}' için sabiti ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">'{0}' için yerel sabiti ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Tüm '{0}' oluşumları için alanı ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Tüm '{0}' oluşumları için yereli ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Tüm '{0}' oluşumları için sabiti ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Tüm '{0}' oluşumları için yerel sabiti ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Tüm '{0}' oluşumları için sorgu değişkenini ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">'{0}' için sorgu değişkenini ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Anonim Türler:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">olan</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">İşlemleri çalışma zamanında çözümlenecek bir nesneyi temsil ediyor.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">sabit</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">alan</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">yerel sabit</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">yerel değişken</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">etiket</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">dönem/devir</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">"g" veya "gg" özel biçim belirticileri (ve herhangi bir sayıda ek "g" belirticisi), A.D. gibi bir dönemi veya devri temsil eder. Biçimlendirilecek tarihin ilişkili bir dönem veya devir dizesi yoksa, biçimlendirme işlemi bu belirticiyi yoksayar. "g" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, "g" standart tarih ve saat biçimi belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">aralık değişkeni</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">parametre</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">in</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Özet:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Yerel öğeler ve parametreler</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Tür parametreleri:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Döndürülenler:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Özel Durumlar:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Açıklamalar:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">Bu türdeki semboller için kaynak üretme desteklenmiyor</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">derleme</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">Konum bilinmiyor</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Beklenmeyen arabirim üyesi türü: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Bilinmeyen sembol türü</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Soyut '{1}.{0}' özelliğini oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Soyut '{1}.{0}' metodunu oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">{1}.{0}' yöntemini üretin</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">'{0}' kaynağından zaten yüklenmiş olan derleme istendi.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Sembolde simge bulunmuyor.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Zaman uyumsuz yöntem ref/out parametrelerine sahip olamaz: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Meta veriler içinde tanımlı üye.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Yalnızca bir oluşturucunun, dizin oluşturucusunun, yöntemin veya temsilcinin imzasını değiştirebilirsiniz.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Bu sembol meta verilerde ilgili tanımlara veya başvurulara sahiptir. İmzasını değiştirmek yapı hatalarına neden olabilir. Devam etmek istiyor musunuz?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">İmzayı değiştir...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Yeni tür üret...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Kullanıcı Tanılama Çözümleyicisi Hatası.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">'{0}' çözümleyicisi '{2}' iletisiyle '{1}' türünde bir özel durum oluşturdu.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">'{0}' çözümleyicisi şu özel durumu oluşturdu: '{1}'.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Adları Basitleştir</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Üye Erişimini Basitleştir</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Nitelemeyi kaldır</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Bilinmeyen hata oluştu</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Kullanılabilir</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Kullanılabilir Değil ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">Kaynakta</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">Gizleme Dosyasında</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">{0} Gizlemesini Kaldır</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Gizlemeyi Kaldır</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt; bekleyen &gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Not: '{0}' kod parçacığını eklemek için iki kez sekme yapın.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Ara birimi açık olarak Dispose düzeniyle uygula</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Ara birimi Dispose düzeniyle uygula</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">{0} öğesini yeniden değerlendir (şu an '{1}')</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">Bağımsız değişken null öğe içeremez.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">Bağımsız değişken boş olamaz.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">'{0}' kimliği ile bildirilen tanılama, çözümleyici tarafından desteklenmiyor.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Geçtiği her yerde düzeltme kod düzeltmesi hesaplanıyor...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Tüm oluşumları düzelt</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Belge</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">PROJE</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Çözüm</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: yönetilen durumu (yönetilen nesneleri) atın</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: büyük alanları null olarak ayarlayın</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Derleyici</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">Canlı</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">enum değeri</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">const alanı</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">yöntem</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">işleç</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">oluşturucu</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">otomatik özellik</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">özellik</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">olay erişeni</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">rfc1123 tarih/saat</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"R" veya "r" standart biçim belirticisi, DateTimeFormatInfo.RFC1123Pattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Desen, tanımlanmış bir standardı yansıtır ve özellik salt okunurdur. Bu nedenle, kullanılan kültür veya girilen biçim sağlayıcısı ne olursa olsun her zaman aynıdır. Özel biçim dizesi "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'" şeklindedir. Bu standart biçim belirticisi kullanıldığında, biçimlendirme veya ayrıştırma işlemi her zaman sabit kültürü kullanır.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">gidiş dönüş tarihi/saati</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">"O" veya "o" standart biçim belirticisi, saat dilimi bilgilerini koruyan ve ISO 8601 ile uyumlu bir sonuç dizesi üreten bir desen kullanan özel bir tarih ve saat biçimi dizesini temsil eder. DateTime değerleri için bu biçim belirticisi metinde DateTime.Kind özelliği ile birlikte tarih ve saat değerlerini korumak için tasarlanmıştır. Biçimlendirilmiş dize, stiller parametresi DateTimeStyles.RoundtripKind olarak ayarlandıysa DateTime.Parse(String, IFormatProvider, DateTimeStyles) veya DateTime.ParseExact yöntemi kullanılarak geri ayrıştırılabilir. "O" veya "o" standart biçim belirticisi, DateTime değerleri için "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" özel biçim dizesine, DateTimeOffset değerleri içinse "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" özel biçim dizesine karşılık gelir. Bu dizede tire, iki nokta üst üste ve "T" harfi gibi tek karakterleri sınırlandıran tek tırnak işareti çiftleri bu tek karakterin değiştirilemeyen bir sabit değer olduğunu gösterir. Çıktı dizesinde tırnak işaretleri görünmez. "O" veya "o" standart biçim belirticisi (ve "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" özel biçim dizesi), DateTime değerlerinin Kind özelliğini korumak için ISO 8601'in saat dilimi bilgilerini temsil ettiği üç yoldan yararlanır: DateTimeKind.Local tarih ve saat değerlerinin saat dilimi bileşeni UTC'den uzaklıktır (örneğin, +01:00, -07:00). Tüm DateTimeOffset değerleri de bu biçimde gösterilir. DateTimeKind.UTC Tarih ve saat değerlerinin saat dilimi bileşeni UTC'yi temsil etmek için (sıfır uzaklık anlamına gelen) "Z" harfini kullanır. DateTimeKind.Unspecified tarih ve saat değerlerinde saat dilimi bilgileri yoktur. "O" veya "o" standart biçim belirticisi uluslararası bir standarda uyduğundan, belirtici kullanan biçimlendirme veya ayrıştırma işlemi her zaman sabit kültürü ve Gregoryen takvimi kullanır. DateTime ve DateTimeOffset için Parse, TryParse, ParseExact ve TryParseExact yöntemlerine geçilen dizeler, bu biçimlerden birindeyse "O" veya "o" biçim belirticisi kullanılarak ayrıştırılabilir. DateTime nesnelerinde, çağırdığınız ayrıştırma aşırı yüklemesi, değeri DateTimeStyles.RoundtripKind olan bir stiller parametresi içermelidir. "O" veya "o" biçim belirticisine karşılık gelen özel biçim dizesiyle bir ayrıştırma yöntemi çağırırsanız, "O" veya "o" ile aynı sonuçları elde edemeyeceğinizi akılda tutun. Bunun nedeni, özel biçim dizesi kullanan ayrıştırma yöntemlerinin bir saat dilimi bileşeni olmayan veya UTC'yi belirtmek için "Z" kullanan tarih ve saat değerlerinin dize gösterimini ayrıştıramamasıdır.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">saniye (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">"s" özel biçim belirticisi saniyeyi 0 ile 59 arasında bir sayı ile temsil eder. Sonuç, son dakikadan bu yana geçen tam saniyeleri gösterir. Tek haneli bir saniye, önüne sıfır konmadan biçimlendirilir. "s" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart tarih ve saat biçim belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">saniye (2 rakam)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">"ss" özel biçim belirticisi (ve herhangi bir sayıda ek "s" belirticisi) saniyeyi 00 ile 59 arasında bir sayı ile temsil eder. Sonuç, son dakikadan bu yana geçen tam saniyeleri gösterir. Tek haneli bir saniye, başına sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">kısa tarih</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">"d" standart biçim belirticisi, belirli bir kültürün DateTimeFormatInfo.ShortDatePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültürün ShortDatePattern özelliği tarafından döndürülen özel biçim dizesi "MM/dd/yyyy"dir.</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">kısa saat</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">"T" standart biçim belirticisi, geçerli DateTimeFormatInfo. ShortTimePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültür için özel biçim dizesi "HH:mm" şeklindedir.</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">sıralanabilir tarih/saat</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"s" standart biçim belirticisi, DateTimeFormatInfo.SortableDateTimePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Desen, tanımlı bir standardı (ISO 8601) yansıtır ve özellik salt okunurdur. Bu nedenle, kullanılan kültür veya girilen biçim sağlayıcısı ne olursa olsun her zaman aynıdır. Özel biçim dizesi "yyyy'-'MM'-'dd'T'HH':'mm':'ss" şeklindedir. "s" biçim belirticisinin amacı, tarih ve saat değerlerine göre tutarlı olarak artan veya azalan düzende sıralanan sonuç dizeleri üretmelidir. Bu nedenle "s" standart biçim belirticisi bir tarih ve saat değerini tutarlı bir biçimde temsil etse de biçimlendirme işlemi biçimlendirilmekte olan tarih ve saat nesnesinin değerini nesnenin DateTime.Kind özelliğini veya DateTimeOffset.Offset değerini yansıtacak şekilde değiştirmez. Örneğin, 2014-11-15T18:32:17+00:00 ve 2014-11-15T18:32:17+08:00 tarih ve saat değerleri biçimlendirilerek oluşturulan sonuç dizeleri aynıdır. Bu standart biçim belirticisi kullanıldığında, biçimlendirme veya ayrıştırma işlemi her zaman sabit kültürü kullanır.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">statik oluşturucu</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'symbol' bir ad alanı olamaz.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">zaman ayırıcısı</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">":" özel biçim belirticisi saatleri, dakikaları ve saniyeleri ayırt etmek için kullanılan saat ayırıcısını temsil eder. Uygun yerelleştirilmiş saat ayırıcısı, geçerli veya belirtilen kültürün DateTimeFormatInfo.TimeSeparator özelliğinden alınır. Not: Belirli bir tarih ve saat dizesinin saat ayırıcısını değiştirmek için ayırıcı karakteri bir sabit dize sınırlayıcısı içinde belirtin. Örneğin, özel biçim dizesi ss'_'dd'_'nn, saat ayırıcısı olarak her zaman "_" (alt çizgi) kullanılan bir sonuç dizesi oluşturur. Bir kültürde tüm tarihlerin saat ayırıcısını değiştirmek için geçerli kültürün DateTimeFormatInfo.TimeSeparator özelliğinin değerini değiştirin ya da DateTimeFormatInfo nesnesinin bir örneğini oluşturun, karakteri TimeSeparator özelliğine atayın ve bir IFormatProvider parametresi içeren biçimlendirme yönteminin bir aşırı yüklemesini çağırın. ":" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart bir tarih ve saat biçimi belirticisi olarak yorumlanır ve bir FormatException oluşturur.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">saat dilimi</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"K" özel biçim belirticisi tarih ve saat değerinin saat dilimi bilgisini temsil eder. Bu biçim belirticisi DateTime değerleriyle kullanıldığında, sonuç dizesi DateTime.Kind özelliğinin değeriyle tanımlanır: Yerel saat dilimi (DateTimeKind.Local olan bir DateTime.Kind özellik değeri) için bu belirtici "zzz" belirticisi ile eşdeğerdir ve Eşgüdümlü Evrensel Saat'e (UTC) göre yerel uzaklığı içeren bir sonuç dizesi üretir; örneğin, "-07:00". Bir UTC saati (DateTimeKind.Utc'nin DateTime.Kind özellik değeri) için sonuç dizesi, UTC tarihinin temsil edilebilmesi için bir "Z" karakteri içerir. Belirtilmemiş bir saat diliminden (DateTime.Kind özelliği DateTimeKind.Unspecified değerine eşit olan) bir saat için sonuç String.Empty ile eşdeğerdir. DateTimeOffset değerleri için "K" biçim belirticisi "zzz" biçim belirticisine eşdeğerdir ve DateTimeOffset değerinin UTC'den uzaklığını içeren bir sonuç dizesi üretir. "K" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart bir tarih ve saat biçimi belirticisi olarak yorumlanır ve bir FormatException oluşturur.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">tür kısıtlaması</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">tür parametresi</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">öznitelik</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">'{0}' ve '{1}' öğesini özellikle değiştir</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">'{0}' öğesini özellikle değiştir</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Örtülü olarak başvurulan metot</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">'{0}' türünü oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">{0} '{1}' oluştur</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">'{0}' öğesini '{1}' olarak değiştirin.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Çağrılmayan metodun yerine özellik konulamaz.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Yalnızca, out değişkeni bildirimi olmayan tek bağımsız değişkenli metotlar bir özellikle değiştirilebilir.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">{0} çözümleyicisinin bir örneği {1}: {2} öğesinden oluşturulamaz.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">{0} derlemesi hiçbir çözümleyici içermiyor.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Çözümleyici derlemesi {0}: {1} yüklenemiyor</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Metodu zaman uyumlu hale getir</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">Şuradan: {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Son sürümü bul ve yükle</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Yerel sürüm olan '{0}' sürümünü kullan</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">'{0}' uygulamasının yerel olarak yüklü '{1}' sürümünü kullanın Bu sürüm şurada kullanılır: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Son '{0}' sürümünü bul ve yükle</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Paket yöneticisi ile yükle...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Şunu yükle: '{0} {1}'</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">'{0}' sürümünü yükle</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">'{0}' değişkenini oluştur</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Sınıflar</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Sabitler</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Temsilciler</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Sabit Listeleri</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Olaylar</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Genişletme metotları</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Alanlar</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Arabirimler</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Yerel Öğeler</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Metotlar</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Modüller</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Ad Uzayları</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Özellikler</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Yapılar</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parametreler:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Bağımsız değişken içeren SignatureHelpItem en az bir parametreye sahip olmalıdır.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">'{0}' yerine metot kullan</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">'{0}' yerine metotlar kullan</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Özelliğe örtülü olarak başvurdu</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Özellik, bir metot çağrısı ile güvenli şekilde değiştirilemiyor</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Araya alınmış dizeye dönüştür</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Türü {0} ile değiştir</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Dosyayı {0} olarak yeniden adlandır</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Tür {0} olarak yeniden adlandır</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Etiketi Kaldır</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Eksik parametre düğümlerini ekle</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">İçeren kapsamı asenkron yap</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">İçeren kapsamı asenkron yap (Görevi döndür)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Bilinmiyor)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Çerçeve türü kullan</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">'{0}' paketini yükle</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">proje {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">'{0}' adını tam olarak belirtin</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">'{0}' başvurusunu kaldırın.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Anahtar Sözcükler</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Kod Parçacıkları</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Tümü küçük harf</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Tümü büyük harf</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">İlk sözcüğün baş harfi büyük</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Baş Harfleri Büyük Olmak Üzere Bitişik</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">'{0}' belgesini kaldır</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">'{0}' belgesini ekle</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">'{0}' bağımsız değişken adını ekle</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">'{0}' al</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Her ikisini de al</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Alttakini al</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Üsttekini al</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Kullanılmayan değişkeni kaldır</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">İkiliye dönüştür</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Ondalığa dönüştür</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Onaltılığa dönüştür</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Binleri ayır</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Sözcükleri ayır</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Dörtlüleri ayır</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Ayırıcıları kaldır</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">'{0}' öğesine parametre ekle</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Oluşturucuyu oluştur...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Oluşturucu parametresi olarak kullanılacak üyeleri seçin</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Equals/GetHashCode içinde kullanılacak üyeleri seçin</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Geçersiz kılmaları oluştur...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Geçersiz kılınacak üyeleri seçin</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Null denetimi ekle</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">'string.IsNullOrEmpty' denetimi ekle</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">'string.IsNullOrWhiteSpace' denetimi ekle</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">'{0}' alanını başlat</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">'{0}' özelliğini başlat</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Null denetimleri ekle</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">İşleçleri oluştur</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">{0} uygula</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">Raporlanan '{0}' tanılamasının kaynak konumu, çözümlenen derlemenin bir parçası olmayan '{1}' dosyası içinde.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">Bildirilen tanılamanın ('{0}') kaynak konumu olan '{1}', '{2}' dosyasında ve bu konum, belirtilen dosyanın dışında.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">{0} içinde (proje {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Erişilebilirlik değiştiricileri Ekle</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Bildirimi başvurunun yanına taşı</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Tam özelliğe dönüştür</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Uyarı: Metot, meta verideki sembolü geçersiz kılıyor</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">{0} kullan</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">'{0}' bağımsız değişken adını ekle (sondaki bağımsız değişkenler dahil)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">yerel işlev</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">dizin oluşturucu</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Diğer ad belirsiz '{0}' türünde</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Uyarı: Yineleme sırasında koleksiyon değiştirildi.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Uyarı: Yineleme değişkeni, işlev sınırını geçti.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Uyarı: Yineleme sırasında koleksiyon değiştirilebilir.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">evrensel tam tarih/saat</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">"U" standart biçim belirticisi, belirtilen bir kültürün DateTimeFormatInfo.FullDateTimePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Desen, "F" deseniyle aynıdır. Ancak DateTime değeri biçimlendirilmeden önce otomatik olarak UTC'ye dönüştürülür.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">evrensel sıralanabilir tarih/saat</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">"U" standart biçim belirticisi, DateTimeFormatInfo.UniversalSortableDateTimePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Desen, tanımlanmış bir standardı yansıtır ve özellik salt okunurdur. Bu nedenle, kullanılan kültür veya girilen biçim sağlayıcı ne olursa olsun her zaman aynıdır. Özel biçim dizesi "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". Bu standart biçim belirticisi kullanıldığında, biçimlendirme veya ayrıştırma işlemi her zaman sabit kültürü kullanır. Sonuç dizesi Eşgüdümlü Evrensel Saat (UTC) olarak bir saati ifade etmeliyse de biçimlendirme işlemi sırasında asıl DateTime değerinde dönüştürme işlemi yapılmaz. Bu nedenle bir DateTime değerini biçimlendirmeden önce DateTime.ToUniversalTime yöntemini çağırarak UTC'ye dönüştürmelisiniz.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">üye içeren içinde güncelleştirme kullanımları</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">projeyi içeren kullanımlar güncelleştiriliyor</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">türünü içeren içinde güncelleştirme kullanımları</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">bağımlı projelerdeki kullanımlar güncelleştiriliyor</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">UTC saat ve dakika uzaklığı</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">DateTime değerlerinde, "zzz" özel biçim belirticisi, yerel işletim sisteminin saat diliminin saat ve dakika cinsinden UTC'den işaretli uzaklığını temsil eder. Bir örneğin DateTime.Kind özelliğinin değerini yansıtmaz. Bu nedenle, "zzz" biçim belirticisinin DateTime değerleriyle kullanılması önerilmez. DateTimeOffset değerlerinde, bu biçim belirticisi, DateTimeOffset değerinin saat ve dakika cinsinden UTC'den uzaklığını temsil eder. Uzaklık her zaman başında bir işaretle görüntülenir. Artı işareti (+) UTC'den ilerideki, eksi işareti (-) ise UTC'den gerideki saatleri gösterir. Tek haneli bir uzaklık, başına bir sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">UTC saat uzaklığı (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">DateTime değerlerinde, "z" özel biçim belirticisi, yerel işletim sisteminin saat diliminin Eşgüdümlü Evrensel Saat'ten (UTC) saat cinsinden ölçülen işaretli uzaklığını temsil eder. Herhangi bir örneğin DateTime.Kind özelliğinin değerini yansıtmaz. Bu nedenle "z" biçim belirticisinin DateTime değerleriyle kullanılması önerilmez. DateTimeOffset değerlerinde, bu biçim belirticisi, DateTimeOffset değerinin saat cinsinden UTC'den uzaklığını temsil eder. Uzaklık her zaman başında bir işaretle görüntülenir. Artı işareti (+) UTC'den önceki, eksi işareti (-) ise UTC'den sonraki saatleri gösterir. Tek haneli bir uzaklık, başına sıfır eklenmeden biçimlendirilir. "z" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart bir tarih ve saat biçimi belirticisi olarak yorumlanır ve bir FormatException oluşturur.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">UTC saat uzaklığı (2 rakam)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">DateTime değerlerinde, "zz" özel biçim belirticisi, yerel işletim sisteminin saat diliminin UTC'den (saat cinsinden) işaretli uzaklığını gösterir. Bir örneğin DateTime.Kind özelliğinin değerini yansıtmaz. Bu nedenle, "zz" biçim belirticisinin DateTime değerleriyle kullanılması önerilmez. DateTimeOffset değerlerinde, bu biçim belirticisi, DateTimeOffset değerinin saat cinsinden UTC'den uzaklığını temsil eder. Uzaklık her zaman başında bir işaretle görüntülenir. Artı işareti (+) UTC'den önceki, eksi işareti (-) ise UTC'den sonraki saatleri gösterir. Tek haneli bir uzaklık, başına bir sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">[x-y] aralığı ters sırada</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">yıl (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">"y" özel biçim belirticisi yılı bir rakamlı veya iki rakamlı bir sayı ile temsil eder. Yılda ikiden fazla rakam varsa, sonuçta yalnızca iki düşük değerli rakam görüntülenir. İki rakamlı bir yılın ilk rakamı sıfırsa (örneğin 2008), sayı başına sıfır eklenmeden biçimlendirilir. "y" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart tarih ve saat biçimi belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">yıl (2 rakam)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">"yy" özel biçim belirticisi yılı iki rakamlı bir sayı olarak temsil eder. Yılda iki rakamdan fazlası varsa, sonuçta yalnızca iki düşük değerli rakam görüntülenir. İki rakamlı yılda ikiden daha az anlamlı basamak varsa, iki rakam üretmek için sayının önüne sıfırlar eklenir. Bir ayrıştırma işleminde, "yy" özel biçim belirticisi kullanılarak ayrıştırılan iki rakamlı bir yıl, biçim sağlayıcının geçerli takvimindeki Calendar.TwoDigitYearMax özelliği temel alınarak yorumlanır. Aşağıdaki örnekte, iki rakamlı bir yılı olan bir tarihin dize gösterimi, geçerli kültür olan en-US kültürünün varsayılan Gregoryen takvimi kullanılarak ayrıştırılmaktadır. Daha sonra, geçerli kültürün CultureInfo nesnesi, TwoDigitYearMax özelliği değiştirilmiş bir GregorianCalendar nesnesini kullanacak şekilde değiştirilmektedir.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">yıl (3-4 rakam)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">"yyy" özel biçim belirticisi yılı minimum üç rakamla temsil eder. Yılda üçten fazla anlamlı basamak varsa, bunlar sonuç dizesine eklenir. Yılda üçten az rakam varsa, üç rakam üretmek için sayının başına sıfırlar eklenir.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">yıl (4 rakam)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">"yyyy" özel biçim belirticisi yılı minimum dört rakamla temsil eder. Yılda dörtten fazla anlamlı basamak varsa, bunlar sonuç dizesine eklenir. Yılda dörtten az rakam varsa, dört rakam üretmek için sayının başına sıfırlar eklenir.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">yıl (5 rakam)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">"yyyyy" özel biçim belirticisi (ve herhangi bir sayıda ek "y" belirticisi) yılı minimum beş rakamla temsil eder. Yılda beşten fazla anlamlı basamak varsa, bunlar sonuç dizesine eklenir. Yılda beşten az rakam varsa, beş rakam üretmek için sayının başına sıfırlar eklenir. Ek "y" belirticileri varsa, sayının önüne "y" belirticilerinin sayısını üretmek için gerektiği kadar sıfır eklenir.</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">yıl ay</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">"Y" veya "y" standart biçim belirticisi belirtilen bir kültürün DateTimeFormatInfo.YearMonthPattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültür için özel biçim dizesi "yyyy MMMM"dir.</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="tr" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (kısa)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">"t" özel biçim belirticisi, AM/PM belirleyicisinin ilk karakterini temsil eder. Uygun yerelleştirilmiş belirleyici, geçerli veya belirli bir kültürün DateTimeFormatInfo.AMDesignator ya da DateTimeFormatInfo.PMDesignator özelliğinden alınır. AM belirleyicisi, 0:00:00 (gece yarısı) ile 11:59:59.999 arasındaki tüm saatler için kullanılır. PM göstergesi, 12:00:00 (öğlen) ile 23:59:59.999 arasındaki tüm saatler için kullanılır. "t" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart tarih ve saat biçimi belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (tam)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">"tt" özel biçim belirticisi (ve herhangi bir sayıda ek "t" belirticisi), AM/PM belirleyicisini tümüyle temsil eder. Uygun yerelleştirilmiş belirleyici, geçerli veya belirli bir kültürün DateTimeFormatInfo.AMDesignator ya da DateTimeFormatInfo.PMDesignator özelliğinden alınır. AM göstergesi, 0:00:00 (gece yarısı) ile 11:59:59.999 arasındaki tüm saatler için kullanılır. PM göstergesi, 12:00:00 (öğlen) ile 23:59:59.999 arasındaki tüm saatler için kullanılır. AM ve PM arasındaki farkın korunmasının gerekli olduğu diller için "tt" belirticisini kullandığınızdan emin olun. Buna bir örnek, AM ve PM belirleyicilerinin ilk karakter yerine ikinci karakterde farklı olduğu Japoncadır.</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">Bir çıkarma bir karakter sınıfı içinde son öğe olması gerekir</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">'DebuggerDisplay' özniteliği ekle</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">Açık tür dönüştürme ekle</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">Üye adı Ekle</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">Tüm parametreler için null denetimi ekle</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">Oluşturucuya isteğe bağlı parametre ekle</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">'{0}' öğesine (ve geçersiz kılmalara/uygulamalara) parametre ekle</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">Oluşturucuya parametre ekle</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">'{0}' üzerine proje başvurusu ekleyin.</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">'{0}' üzerine başvuru ekleyin.</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">Eylemler boş olamaz.</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">'{0}' demet öğesi adını ekle</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">Sarmalanan bağımsız değişkenleri hizala</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">Sarmalanan parametreleri hizala</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">Değişim koşulları yorum olamaz</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">Değişim koşulları yakalamak değil ve adlandırılamaz</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">Dosya üst bilgisi tercihlerini uygula</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">Nesne/koleksiyon başlatma tercihlerini uygula</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">Beklenen görev '{0}' döndürüyor</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">Beklenen görev değer döndürmüyor</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">Temel sınıflarda erişilemeyen, uygulanmamış üyeler var</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">Değişiklikler uygulanamıyor - beklenmeyen hata: '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">Sınıf \{0} içeremez karakter aralığı</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">Yakalama grup numaraları Int32.MaxValue eşit veya daha az olmalıdır</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">Yakalama numarası sıfır olamaz</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;çıkarsa&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;atla&gt;</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> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">Genel ad alanı olarak değiştir</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">Özel durum sırasında durdurulduğunda değişikliklere izin verilmez</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">'{0}' projesinde yapılan değişiklikler, uygulama çalışırken uygulanmayacak</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application"> <source>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</source> <target state="new">Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">{0} kod stilini yapılandır</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">{0} önem derecesini yapılandır</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">Tüm '{0}' çözümleyicileri için önem derecesini yapılandır</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">Tüm çözümleyiciler için önem derecesini yapılandır</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">LINQ to dönüştürme</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">'{0}' öğesine ekle</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">Sınıfa dönüştür</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">LINQ (görüşmesi formu) dönüştürmek</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">Kayda dönüştür</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">Kayıt yapısına dönüştür</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">Yapıya dönüştür</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">Türü '{0}' olarak dönüştür</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">'{0}' alanını oluştur ve ata</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">'{0}' özelliğini oluştur ve ata</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">Kalanları alan olarak oluştur ve ata</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">Kalanları özellik olarak oluştur ve ata</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">Bu kodu değiştirmeyin. Temizleme kodunu '{0}' metodunun içine yerleştirin.</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">'{0}' kaynak dosyasının geçerli içeriği, derlenen kaynakla eşleşmiyor. Hata ayıklama işlemi sırasında bu dosyada yapılan değişiklikler, dosyanın içeriği derlenen kaynakla eşleşene kadar uygulanmaz.</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">Belge, bu hizmeti oluşturan çalışma alanında yer almalıdır</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">Düzenle ve Devam Et</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">Düzenle ve Devam Et'e modül tarafından izin verilmiyor</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">'{0}' projesinde yapılan değişiklikler hata ayıklama oturumunun devam etmesini engelleyecek: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">Düzenleme ve devam etme işlemleri çalışma zamanı tarafından desteklenmiyor.</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">'{0}' dosyası okunurken hata: {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">CodeFixProvider örneği oluşturulurken hata oluştu</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">'{0}' CodeFixProvider örneği oluşturulurken hata oluştu</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">Örnek:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">Örnekler:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">Açık olarak uygulanan kayıt yöntemlerinin derleyici tarafından oluşturulan '{0}' eşdeğeri ile eşleşen parametre adlarına sahip olması gerekir</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">Temel sınıfı ayıkla...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">Arabirimi ayıkla...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">Yerel işlevi ayıkla</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">Yöntemi ayıkla</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">{0} için veri akışı analiz edilemedi</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">Biçimlendirme Düzeltme</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">'{0}' yazım hatasını düzeltin</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">Belgeyi biçimlendir</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">Belge biçimlendiriliyor</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">Karşılaştırma işleçlerini oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">'{0}' içinde oluşturucu üret (alanlarla birlikte)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">'{0}' içinde oluşturucu üret (özelliklerle birlikte)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">'{0}' için oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">'{0}' parametresini üret</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">'{0}' parametresini (ve geçersiz kılmaları/uygulamaları) üret</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">Yasadışı \ model sonunda</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">Yasadışı {x, y} x &gt; y</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">'{0}' öğesini açıkça uygula</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">'{0}' öğesini örtük olarak uygula</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">Soyut sınıfı uygula</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">Tüm arabirimleri açıkça uygula</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">Tüm arabirimleri örtük olarak uygula</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">Tüm üyeleri açıkça uygula</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">Açıkça uygula</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">Örtük olarak uygula</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">Kalan üyeleri açıkça uygula</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">'{0}' aracılığıyla uygula</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">Tamamlanmamış \p{X} karakter kaçış</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">Tüm bağımsız değişkenleri girintile</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">Tüm parametreleri girintile</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">Sarmalanan bağımsız değişkenleri girintile</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">Sarmalanan parametreleri girintile</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">'{0}' öğesini satır içine al</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">'{0}' öğesini satır içine al ve koru</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">Yetersiz onaltılık basamak</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">Sabit ekle</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">Alan ekle</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">Yerel ekle</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">Sorgu değişkeni ekle</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">Geçersiz grup adı: grup adları bir sözcük karakteri ile başlamalıdır</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">Sınıfı 'abstract' yap</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">Statik yap</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">Koşullu öğeyi ters çevir</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">Hatalı biçimlendirilmiş</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">Hatalı biçimlendirilmiş \p{X} karakter kaçış</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">Hatalı biçimlendirilmiş \k &lt;&gt;... arka başvuru adı</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">İç içe '{0}' deyimiyle birleştir</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">Sonraki '{0}' deyimiyle birleştir</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">Dıştaki '{0}' deyimiyle birleştir</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">Önceki '{0}' deyimiyle birleştir</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} okuma ve arama işlemlerini destekleyen bir akış döndürmelidir.</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">Eksik denetim karakteri</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">İçerikleri ad alanına taşı...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">Dosyayı '{0}' konumuna taşı</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">Dosyayı proje kök klasörüne taşı</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">Ad alanına taşı...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">İç içe geçmiş niceleyici {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">Metot çağrısının ekleneceği geçerli konum yok.</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">Değil yeterli)'ın</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">Operatörler</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">Özellik başvurusu güncelleştirilemiyor</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">'{0}' öğesini yukarı çek</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">'{0}' öğesini '{1}' hedefine çek</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">Üyeleri temel türe çek...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">Üyeleri yeni temel sınıfa çek...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">Niceleyici {x, y} hiçbir şeyi takip etmiyor</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">tanımsız grubuna başvuru</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">{0} tanımsız grup adı referansı</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">Tanımlanmamış grup numarası {0} referansı</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">Tüm denetim karakterleri. Buna Cc, Cf, Cs, Co ve Cn kategorileri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">tüm denetim karakterleri</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">Tüm aksan işaretleri. Buna Mn, Mc ve Me kategorileri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">tüm aksan işaretleri</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">Tüm harf karakterleri. Buna Lu, Ll, Lt, Lm ve Lo karakterleri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">tüm harf karakterleri</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">Tüm sayılar. Bunlara Nd, Nl ve No kategorileri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">tüm sayılar</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">Tüm noktalama karakterleri. Buna Pc, Pd, Ps, Pe, Pi, Pf ve Po kategorileri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">tüm noktalama karakterleri</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">Tüm ayıraç karakterleri. Buna Zs, Zl ve Zp kategorileri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">tüm ayıraç karakterleri</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">Tüm semboller. Buna Sm, Sc, Sk ve So kategorileri dahildir.</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">tüm semboller</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">Dikey çubuk (|) karakterini, | karakterinin her deseni ayırdığı bir dizi desenin herhangi biriyle eşleştirmek için kullanabilirsiniz.</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">değişim</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">Nokta karakteri (.) \n (yeni satır karakteri, \u000A) dışında herhangi bir karakterle eşleşir. Normal ifade deseni RegexOptions.Singleline seçeneği tarafından değiştirilirse veya desenin . karakteri sınıfını içeren kısmı 's' seçeneği tarafından değiştirilirse, . herhangi bir karakterle eşleşir.</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">herhangi bir karakter</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">Atomik gruplar (diğer bazı normal ifade altyapılarında geri izlemesiz alt ifade, atomik alt ifade veya tek seferlik alt ifade olarak da bilinir) geri izlemeyi devre dışı bırakır. Normal ifade altyapısı, giriş dizesindeki mümkün olduğunca çok sayıda karakterle eşleşir. Başka bir eşleşme mümkün olmadığında, diğer desen eşleşmelerini denemek için geri izleme işlemi yapmaz. (Yani alt ifade yalnızca alt ifade tarafından eşleşen dizelerle eşleşir; alt ifadeyi ve kendisini izleyen alt ifadeleri temel alan bir dizeyle eşleştirmeyi denemez.) Bu seçenek, geri izlemenin başarısız olacağını biliyorsanız önerilir. Normal ifade altyapısının gereksiz arama gerçekleştirmesini önlemek performansı artırır.</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">atomik grup</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">Bir geri al karakteriyle (\u0008) eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">geri al karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">Bir dengeleme grubu tanımı, geçerli grupta, önceden tanımlanmış grup ile geçerli grup arasındaki aralıkta, önceden tanımlanmış bir grubun ve depoların tanımını siler. 'name1' geçerli grup (isteğe bağlı), 'name2' önceden tanımlanmış bir grup ve 'subexpression' ise herhangi bir geçerli normal ifade desenidir. Dengeleme grubu tanımı name2'nin tanımını siler ve name2 ile name1 arasındaki aralığı name1'e depolar. Bir name2 grubu tanımlanmamışsa, eşleşme geri iz sürer. name2'nin son tanımını silmek, name2'nin önceki tanımını ortaya çıkardığından, bu yapı name2 grubu için yakalama yığınını, parantez veya açma ve kapama ayracı gibi iç içe yapıları izlemek için bir sayaç olarak kullanmanıza olanak sağlar. Dengeleme grubu tanımı 'name2' öğesini bir yığın olarak kullanır. Her iç içe yapının başlangıç karakteri, gruba ve grubun Group.Captures koleksiyonuna yerleştirilir. Kapanış karakteri eşleştiğinde, karşılık gelen açma karakteri gruptan kaldırılır ve Captures koleksiyonunda bir öğe azalır. İç içe tüm yapıların açılış ve kapanış karakterleri eşleştirildikten sonra, 'name1' boş olur.</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">dengeleme grubu</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">temel grup</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">Bir zil (alarm) karakteriyle (\u0007) eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">zil karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">Bir satır başı karakteriyle (\u000D) eşleşir. \r karakterinin yeni satır karakteriyle (\n) eşdeğer olmadığını unutmayın.</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">satır başı karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">Karakter sınıfı çıkarma işlemi, bir karakter sınıfındaki karakterlerin başka bir karakter sınıfından dışlanması sonucu oluşan bir karakter kümesi oluşturur. 'base_group' pozitif veya negatif bir karakter grubu veya aralığıdır. 'excluded_group' bileşeni başka bir pozitif veya negatif karakter grubu veya başka bir karakter sınıfı çıkarma ifadesidir (başka bir deyişle karakter sınıfı çıkarma ifadelerini iç içe yerleştirebilirsiniz).</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">karakter sınıfı çıkarma</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">karakter grubu</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">açıklama</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">Bu dil öğesi, başlangıç deseniyle eşleşip eşleşemediğine bağlı olarak iki desenden biriyle eşleşmeye çalışır. 'expression': eşleşecek ilk desen, 'yes': ifade eşleştiğinde eşleşecek olan desen ve 'no': ifade eşleşmediğinde eşleşecek olan isteğe bağlı desendir.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">koşullu ifade eşleşmesi</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">Bu dil öğesi, belirtilen bir yakalama grubuyla eşleşip eşleşmediğine bağlı olarak iki desenden biriyle eşleşmeye çalışır. 'name': bir yakalama grubunun adı (veya sayısı), 'yes': 'name' (veya 'number') bir eşleşme içeriyorsa eşleşecek olan ifade ve 'no': 'name' bir eşleşme içermiyorsa eşleşecek olan isteğe bağlı ifadedir.</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">koşullu grup eşleşmesi</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">\G yer işareti, bir eşleşmenin önceki eşleşmenin sona erdiği noktada oluşması gerektiğini belirtir. Bu yer işaretini Regex.Matches veya Match.NextMatch yöntemiyle kullandığınızda, tüm eşleşmelerin bitişik olması sağlanır.</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">bitişik eşleşmeler</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">ASCII denetim karakteriyle eşleşir (burada X, denetim karakterinin harfidir). Örneğin, \cC: CTRL-C.</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">denetim karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d herhangi bir ondalık sayıyla eşleşir. Bu karakter, diğer birkaç karakter kümesinin ondalık sayılarının yanı sıra standart 0-9 ondalık sayılarının dahil olduğu \p{Nd} normal ifade deseniyle eşdeğerdir. ECMAScript uyumlu davranış belirtilmişse, \d [0-9] ile eşdeğerdir</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">ondalık sayı karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">Bir sayı işareti (#) normal ifade deseninin sonunda kaçışsız # karakterden başlayan ve satırın sonuna kadar devam eden x-mode açıklamasını işaretler. Bu yapıyı kullanmak için, Regex nesnesinin örneği oluşturulurken ya da statik bir Regex yöntemi çağrılırken (satır içi seçenekler aracılığıyla) x seçeneğini etkinleştirmeniz veya seçenek parametresine RegexOptions.IgnorePatternWhitespace değerini sağlamanız gerekir.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">satır sonu açıklaması</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">\z yer işareti, giriş dizesinin sonunda bir eşleşmenin oluşması gerektiğini belirtir. $ dil öğesi gibi \z, RegexOptions.Multiline seçeneğini yoksayar. \Z dil öğesinin aksine \z, dizenin sonundaki bir \n karakteriyle eşleşmez. Bu nedenle, yalnızca giriş dizesinin son satırıyla eşleşebilir.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">yalnızca dize sonu</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">\Z yer işareti, giriş dizesinin sonunda veya giriş dizesinin sonundaki \n karakterinden önce bir eşleşmenin oluşması gerektiğini belirtir. Bu karakter $ yer işareti ile aynıdır, ancak \Z, RegexOptions.Multiline seçeneğini yoksayar. Bu nedenle çok satırlı bir dizede yalnızca son satırın sonu veya \n karakterinden önceki son satır ile eşleşir. \Z yer işareti \n ile eşleşir, ancak \r\n (CR/LF karakter bileşimi) ile eşleşmez. CR/LF ile eşleştirmek Için, normal ifade desenine \r?\Z karakterini ekleyin.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">dize sonu veya yeni satırı sonlandırmadan önce</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">$ yer işareti, önceki desenin giriş dizesinin sonunda veya giriş dizesinin sonundaki \n karakterinden önce gerçekleşmesi gerektiğini belirtir. $ yer işaretini RegexOptions.Multiline seçeneğiyle birlikte kullanırsanız, eşleşme bir satırın sonunda da olabilir. $ yer işareti \n ile eşleşir, ancak \r\n (satır başı ve yeni satır karakterlerinin bileşimi veya CR/LF) ile eşleşmez. CR/LF karakter bileşimiyle eşleştirmek Için, normal ifade desenine \r?$ ekleyin.</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">dize veya satır sonu</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">Bir kaçış karakteriyle (\u001B) eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">kaçış karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">hariç tutulan grup</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">ifade</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">Bir sonraki sayfaya geçme karakteriyle (\u000C) eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">sonraki sayfaya geçme karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Bu gruplandırma yapısı, bir alt ifade içinde belirtilen seçenekleri uygular veya devre dışı bırakır. Etkinleştirilecek seçenekler soru işaretinden sonra ve devre dışı bırakılacak seçenekler eksi işaretinden sonra belirtilir. İzin verilen seçenekler şunlardır: i Büyük/küçük harfe duyarsız eşleşme kullan. m ^ ve $ işaretlerinin her satırın başı ve sonuyla eşleştiği çok satırlı modu kullan (giriş dizesinin başı ve sonu yerine). s Noktanın (.) her karakter ile eşleştiği tek satırlı modu kullan (\n dışında her karakter yerine). n Adsız grupları yakalama. Yalnızca şu yakalamalar geçerlidir: formun açıkça adlandırılmış veya numaralandırılmış grupları (?&lt;ad&gt; alt ifadesi). x Kaçışsız boşluğu desenden çıkar ve bir sayı işaretinden (#) sonra açıklamaları etkinleştir.</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">grup seçenekleri</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">## karakterinin iki basamaklı onaltılık karakter kodu olduğu bir ASCII karakteriyle eşleşir.</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">onaltılık kaçış</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">(?# comment) yapısı, bir normal ifadeye satır içi açıklama eklemenizi sağlar. Açıklama Regex.ToString yöntemi tarafından döndürülen dizeye dahil edilmiş olsa da, normal ifade altyapısı açıklamanın herhangi bir bölümünü desen eşleşmesinde kullanmaz. Açıklama ilk kapatma parantezinde sonlanır.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">satır içi açıklama</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">Normal bir ifadenin kalanı için belirli desen eşleştirme seçeneklerini etkinleştirir veya devre dışı bırakır. Etkinleştirilecek seçenekler soru işaretinden sonra ve devre dışı bırakılacak seçenekler eksi işaretinden sonra belirtilir. İzin verilen seçenekler şunlardır: i Büyük/küçük harfe duyarsız eşleşme kullan. m ^ ve $ karakterlerinin her satırın başı ve sonuyla eşleştiği çok satırlı modu kullan (giriş dizesinin başı ve sonu yerine). s Noktanın (.) her karakter ile eşleştiği tek satırlı modu kullan (\n dışında her karakter yerine). n Adsız grupları yakalama. Yalnızca şu yakalamalar geçerlidir: formun açıkça adlandırılmış veya numaralandırılmış grupları (?&lt;name&gt; alt ifadesi). x Kaçışsız boşluğu desenden çıkar ve sayı işaretinden (#) sonra açıklamaları etkinleştir.</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">satır içi seçenekler</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Regex sorunu: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">harf, küçük harf</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">harf, değiştirici</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">harf, diğer</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">harf, ilk harfler büyük</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">harf, büyük harf</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">işaret, kapsayan</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">işaret, aralıksız</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">işaretler, aralık birleştirme</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">{n,}? niceleyicisi önceki öğeyle en az n kez eşleşir (burada n herhangi bir tamsayıdır), ancak bunu mümkün olduğunca az sayıda yapar. Bu, hızlı niceleyicinin gecikmeli karşılığıdır {n,}</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">en az 'n' kez eşle (gecikmeli)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">{n,} niceleyicisi önceki öğeyle en az n kez eşleşir (burada n herhangi bir tamsayıdır). {n,}, gecikmeli karşılığı {n,}? olan hızlı bir niceleyicidir</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">en az 'n' kez eşleş</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">{n,m}? niceleyicisi, bir önceki öğeyle en az n ve en çok m kez eşleşir (burada n ve m tamsayıdır), ancak bunu olabildiğince az sayıda yapar. Bu, {n,m} hızlı niceleyicisinin gecikmeli karşılığıdır</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">en az 'n' kez eşle (gecikmeli)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">{n,m} niceleyicisi, bir önceki öğeyle en az n ve en çok m kez eşleşir (burada n ve m tamsayıdır). {n,m}, gecikmeli karşılığı {n,m}? olan bir hızlı niceleyicidir</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">en az 'n' ve en çok 'm' kez eşleş</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">{n}? niceleyicisi, önceki öğe ile tam olarak n kez eşleşir (burada n herhangi bir tamsayıdır). Bu, {n}+ hızlı niceleyicisinin gecikmeli karşılığıdır</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">tam olarak 'n' kez eşleş (gecikmeli)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">{n} niceleyicisi, önceki öğe ile tam olarak n kez eşleşir (burada n herhangi bir tamsayıdır). {n}, gecikmeli karşılığı {n}? olan bir hızlı niceleyicidir</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">tam olarak 'n' kez eşleş</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">+? niceleyicisi bir önceki öğeyle en az bir kez eşleşir, ancak bunu mümkün olduğunca az sayıda yapar. Bu, + hızlı niceleyicisinin gecikmeli karşılığıdır</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">bir veya daha çok kez eşleş (en düşük kapsamlı)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">+ niceleyicisi bir önceki öğeyle en az bir kez eşleşir. {1,} niceleyicisi ile eşdeğerdir. +, gecikmeli karşılığı +? olan bir hızlı niceleyicidir.</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">en az bir kez eşleş</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">*? niceleyicisi bir önceki öğeyle sıfır veya daha çok kez eşleşir, ancak bunu mümkün olduğunca az sayıda yapar. Bu, * en yüksek kapsamlı niceleyicisinin en düşük kapsamlı karşılığıdır</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">en az sıfır kez eşleş (gecikmeli)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">* niceleyicisi bir önceki öğeyle en az sıfır kez eşleşir. {0,} niceleyicisi ile eşdeğerdir. *, gecikmeli karşılığı *? olan bir hızlı niceleyicidir.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">en az sıfır kez eşleş</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">?? niceleyicisi bir önceki öğeyle sıfır veya bir kez eşleşir, ancak bunu mümkün olduğunca az sayıda yapar. Bu, ? hızlı niceleyicisinin gecikmeli karşılığıdır</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">sıfır veya bir kez eşleş (gecikmeli)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">? niceleyicisi bir önceki öğeyle sıfır veya bir kez eşleşir. {0,1} niceleyicisi ile eşdeğerdir. ?, gecikmeli karşılığı ?? olan bir hızlı niceleyicidir.</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">sıfır veya bir kez eşleş</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">Bu gruplandırma yapısı, 'subexpression' öğesinin herhangi bir geçerli normal ifade deseni olduğu eşleşen bir 'subexpression' yakalar. Parantez kullanan yakalamalar, normal ifadedeki açma parantezlerinin sırasına göre soldan sağa birden başlayarak otomatik numaralandırılır. Sıfır olarak numaralandırılan yakalama, normal ifade deseninin tamamı tarafından eşleşen metindir.</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">eşleşen alt ifade</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">ad</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">ad veya sayı</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">Adlandırılmış veya numaralandırılmış bir geri başvuru. 'name', normal ifade deseninde tanımlanan yakalama grubunun adıdır.</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">adlandırılmış geri başvuru</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">Eşleşen bir alt ifadeyi yakalar ve bu alt ifadeye ada veya numaraya göre erişmenizi sağlar. 'name' geçerli bir grup adı ve 'subexpression' herhangi bir geçerli normal ifade desenidir. 'name', hiçbir noktalama karakteri içermemelidir ve bir sayı ile başlayamaz. Normal ifade deseni eşleştirme yönteminin RegexOptions parametresi RegexOptions.ExplicitCapture bayrağını içeriyorsa veya n seçeneği bu alt ifadeye uygulanıyorsa, bir alt ifadeyi yakalamanın tek yolu yakalama gruplarını açıkça adlandırmaktır.</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">adlandırılmış eşleşen alt ifade</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Negatif bir karakter grubu, bir eşleştirme oluşması için giriş dizesinde görünmemesi gereken bir karakter listesi belirtir. Karakter listesi tek tek belirtilir. İki veya daha fazla karakter aralığı art arda eklenebilir. Örneğin, "0" ile "9" arasındaki ondalık basamakların aralığını, "a" ile "f" arasında küçük harflerin aralığını ve "A" ile "F" arasında büyük harflerin aralığını belirtmek için [0-9a-fA-F] kullanın.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">negatif karakter grubu</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">Negatif bir karakter aralığı, bir eşleştirme oluşması için giriş dizesinde görünmemesi gereken bir karakter listesi belirtir. 'firstCharacter' aralığı başlatan karakter ve 'lastCharacter' ise aralığı sonlandıran karakterdir. İki veya daha fazla karakter aralığı art arda eklenebilir. Örneğin, "0" ile "9" arasındaki ondalık sayıların aralığını, "a" ile "f" arasında küçük harflerin aralığını ve "A" ile "F" arasındaki büyük harflerin aralığını belirtmek için [0-9a-fA-F] kullanın.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">negatif karakter aralığı</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">\P{ name } normal ifade yapısı, Unicode genel kategorisine veya adın kategori kısaltması ya da adlandırılmış blok adı olduğu adlandırılmış bloğa ait olmayan herhangi bir karakterle eşleşir.</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">negatif Unicode kategorisi</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">Yeni satır karakteriyle \u000A eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">yeni satır karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">hayır</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D rakam olmayan herhangi bir karakter ile eşleşir. \P{Nd} normal ifade deseniyle eşdeğerdir. ECMAScript uyumlu davranış belirtilmişse \D, [^0-9] ile eşdeğerdir</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">rakam olmayan karakter</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S boşluk olmayan herhangi bir karakter ile eşleşir. [^\f\n\r\t\v\x85\p{Z}] normal ifade deseniyle eşdeğerdir veya boşluk karakterleriyle eşleşen \s ile eşdeğer olan normal ifade deseninin tersidir. ECMAScript uyumlu davranış belirtilmişse \S, [^ \f\n\r\t\v] ile eşdeğerdir</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">boşluk olmayan karakter</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">\B yer işareti, eşleşmenin bir sözcük sınırında oluşmaması gerektiğini belirtir. Bu işaret, \b yer işaretinin tersidir.</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">sözcük olmayan sınır</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W sözcük olmayan herhangi bir karakterle eşleşir. Aşağıdaki Unicode kategorilerinde bulunanlar dışındaki herhangi bir karakterle eşleşir: Ll Harf, Küçük Harf Lu Harf, Büyük Harf Lt Harf, İlk Harfler Büyük Lo Harf, Diğer Lm Harf, Değiştirici Mn İşaret, Aralıksız Nd Numara, Ondalık Sayı Pc Noktalama, Bağlayıcı ECMAScript uyumlu davranış belirtilmişse \W, [^a-zA-Z_0-9] ile eşdeğerdir</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">sözcük olmayan karakter</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">Bu yapı bir alt ifade tarafından eşleştirilen alt dizeyi yakalamaz: Yakalama yapmayan grup yapısı genellikle bir gruba niceleyici uygulandığında kullanılır, ancak grup tarafından yakalanan alt dizelerle ilgilenilmez. Bir normal ifade iç içe gruplama yapıları içeriyorsa, dıştaki yakalama yapmayan grup yapısı içteki iç içe geçmiş grup yapılarına uygulanmaz.</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">yakalama yapmayan grup</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">sayı, ondalık sayı</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">sayı, harf</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">sayı, diğer</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">'number' öğesinin normal ifadede yakalama grubunun sıralı konumu olduğu numaralandırılmış bir geri başvuru. Örneğin, \4 dördüncü yakalama grubunun içerikleriyle eşleşir. Sekizlik kaçış kodları (\16 gibi) ile aynı gösterimi kullanan \number geri başvuruları arasında bir belirsizlik vardır. Belirsizlik bir sorun oluşturuyorsa, belirsiz olmayan ve sekizlik karakter kodlarıyla karıştırılamayacak olan \k&lt;name&gt; gösterimini kullanabilirsiniz. Benzer şekilde, \xdd gibi onaltılık kodlar da belirsiz değildir ve geri başvurularla karıştırılamaz.</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">numaralandırılmış geri başvuru</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">diğer, denetim</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">diğer, biçim</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">diğer, atanmamış</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">diğer, özel kullanım</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">diğer, vekil</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">Pozitif bir karakter grubu, herhangi biri bir eşleşme olması için giriş dizesinde görünebilir bir karakter listesini belirtir.</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">pozitif karakter grubu</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">Pozitif bir karakter aralığı, herhangi bir eşleşme olması için giriş dizesinde görünebilir bir karakter aralığı belirtir. 'firstCharacter', aralığı başlatan karakter ve 'lastCharacter', aralığı sonlandıran karakterdir. </target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">pozitif karakter aralığı</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">noktalama, kapat</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">noktalama, bağlayıcı</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">noktalama, tire</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">noktalama, son alıntı</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">noktalama, ilk alıntı</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">noktalama, açık</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">noktalama, diğer</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">ayıraç, satır</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">ayıraç, paragraf</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">ayıraç, boşluk</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">\A yer işareti, giriş dizesinin başlangıcında bir eşleşmenin oluşması gerektiğini belirtir. ^ yer işaretiyle aynıdır, ancak \A RegexOptions.Multiline seçeneğini yoksayar. Bu nedenle, çok satırlı bir giriş dizesinde yalnızca ilk satırın başlangıcı ile eşleşebilir.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">yalnızca dize başlangıcı</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">^ yer işareti, aşağıdaki desenin dizenin ilk karakter konumunda başlaması gerektiğini belirtir. ^ işaretini RegexOptions.Multiline seçeneğiyle kullanırsanız, eşleşme her satırın başlangıcında oluşmalıdır.</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">dize veya satır başlangıcı</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">alt ifade</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">sembol, para birimi</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">sembol, matematik</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">sembol, değiştirici</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">sembol, diğer</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">Bir sekme karakteriyle (\u0009) eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">sekme karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">\p{ name } normal ifade yapısı, bir Unicode genel kategorisine veya adın kategori kısaltması veya adlandırılmış blok adı olduğu adlandırılmış bloğa ait olan herhangi bir karakterle eşleşir.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">Unicode kategorisi</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">#### onaltılık değeri olan bir UTF-16 kod birimiyle eşleşir.</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">Unicode kaçışı</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Unicode Genel Kategorisi: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">Dikey sekme karakteriyle (\u000B) eşleşir</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">dikey sekme karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s herhangi bir boşluk karakteriyle eşleşir. Aşağıdaki kaçış dizileri ve Unicode kategorileriyle eşdeğerdir: \f Sonraki sayfaya geçme karakteri: \u000C \n Yeni satır karakteri: \u000A \r Satır başı karakteri: \u000D \t Sekme karakteri: \u0009 \v Dikey sekme karakteri: \u000B \x85 Üç nokta veya SONRAKİ SATIR (NEL) karakteri (...): \u0085 \p{Z} Herhangi bir ayıraç karakteriyle eşleşir ECMAScript uyumlu davranış belirtilmişse, \s değeri [ \f\n\r\t\v] ile eşdeğerdir</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">boşluk karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">\b yer işareti, eşleşmenin bir sözcük karakteri (\w dil öğesi) ile sözcük olmayan bir karakter (\W dil öğesi) arasındaki bir sınırda oluşması gerektiğini belirtir. Sözcük karakterleri, alfasayısal karakterlerden ve alt çizgilerden oluşur; sözcük olmayan karakter, alfasayısal veya alt çizgi olmayan herhangi bir karakterdir. Ayrıca dizenin başlangıcında veya sonunda bulunan bir sözcük sınırında da eşleşme gerçekleşebilir. \b yer işareti, sıklıkla bir alt ifadenin yalnızca sözcüğün başı veya sonu yerine tüm sözcükle eşleştiğinden emin olmak için kullanılır.</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">sözcük sınırı</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w herhangi bir sözcük karakteriyle eşleşir. Bir sözcük karakteri şu Unicode kategorilerden herhangi birinin üyesidir: Ll Harf, Küçük Harf Lu Harf, Büyük Harf Lt Harf, İlk Harfler Büyük Lo Harf, Diğer Lm Harf, Değiştirici Mn İşaret, Aralıksız Nd Numara, Ondalık Sayı Pc Noktalama, Bağlayıcı ECMAScript uyumlu davranış belirtilmişse, \w [a-zA-Z_0-9] ile eşdeğerdir</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">sözcük karakteri</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">evet</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">Eşleşmenin başarılı olması için giriş dizesinin alt ifadedeki normal ifade deseniyle eşleşmemesi gerektiği sıfır genişlikli bir negatif ileri yönlü onaylama. Eşleşen dize, eşleşme sonucuna dahil değildir. Sıfır genişlikli bir negatif ileri yönlü onaylama genellikle normal ifadenin başında veya sonunda kullanılır. Normal bir ifadenin başında olduğunda, normal ifadenin başının eşleştirilecek benzer ancak daha genel bir desen tanımlaması durumunda, eşleştirilmemesi gereken belirli bir desen tanımlayabilir. Bu durumda, genellikle geri izlemeyi sınırlandırmak için kullanılır. Normal bir ifadenin sonunda olduğunda, bir eşleşmenin sonunda oluşamayacak bir alt ifade tanımlayabilir.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">sıfır genişlikli negatif ileri yönlü onaylama</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">Bir eşleşmenin başarılı olması için geçerli konumun solundaki giriş dizesinde 'subexpression' gerçekleşmemesi gereken sıfır genişlikli bir negatif geri yönlü onaylama. 'subexpression' ile eşleşmeyen herhangi bir alt dize, eşleşme sonucuna dahil değildir. Sıfır genişlikli negatif geri yönlü onaylamalar genellikle normal ifadelerin başlangıcında kullanılır. Tanımladıkları desen, kendisini izleyen dizede bir eşleşmenin önüne geçer. Ayrıca, yakalanan bir gruptaki son karakter veya karakterler, grubun normal ifade deseniyle eşleşen karakterlerden biri veya daha fazlası olmaması gerektiğinde, geri izlemeyi sınırlandırmak için de kullanılır.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">sıfır genişlikli negatif geri yönlü onaylama</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">Bir eşleşmenin başarılı olması için giriş dizesinin 'subexpression' içindeki normal ifade deseniyle eşleşmesi gerektiği sıfır genişlikli bir pozitif ileri yönlü onaylama. Eşleşen alt dize, eşleşme sonucuna dahil değildir. Sıfır genişlikli bir pozitif ileri yönlü onaylama geri izleme yapmaz. Sıfır genişlikli bir pozitif ileri yönlü onaylama genellikle normal ifade deseninin sonunda bulunur. Bir eşleşmenin gerçekleşmesi için bir dizenin sonunda bulunması, ancak eşleştirmeye dahil edilmemesi gereken bir alt dizeyi tanımlar. Aşırı geri izleme yapılmasını önlemek için de yararlıdır. Yakalanan belirli bir grubun, bu yakalanmış grup için tanımlanan desenin bir alt kümesiyle eşleşen metinle başladığından emin olmak için sıfır genişlikli bir pozitif ileri yönlü onaylama işlemi kullanabilirsiniz.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">sıfır genişlikli pozitif ileri yönlü onaylama</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">Bir eşleşmenin başarılı olması için geçerli konumun solundaki giriş dizesinde 'subexpression' oluşması gereken sıfır genişlikli bir pozitif geri yönlü onaylama işlemi. 'subexpression' eşleşme sonucuna dahil değildir. Sıfır genişlikli bir pozitif geri yönlü onaylama işlemi geri izleme yapmaz. Sıfır genişlikli pozitif geri yönlü onaylamalar genellikle normal ifadelerin başında kullanılır. Tanımladıkları desen eşleşme sonucunun bir parçası olmasa da, bir eşleşme ön koşuludur.</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">sıfır genişlikli pozitif geri yönlü onaylama</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">Meta verilerde bulunan ilgili metot imzaları güncelleştirilmez.</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">Belgenin kaldırılması desteklenmiyor</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">'async' değiştiricisini kaldırın</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">Gereksiz atamaları kaldır</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">Kullanılmayan değişkenleri kaldır</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">'{0}' öğesini '{1}' ile değiştir</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">Çakışma işaretçilerini çözümle</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">İşlenmemiş düzenleme</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">Erişilebilirlik değiştiricilerini sırala</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">Ardışık '{0}' deyimlerine ayır</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">İç içe '{0}' deyimlerine ayır</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">Akış okuma ve arama işlemlerini desteklemelidir.</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">{0} eylemini bastır</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: yönetilmeyen kaynakları (yönetilmeyen nesneleri) serbest bırakın ve sonlandırıcıyı geçersiz kılın</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: sonlandırıcıyı yalnızca '{0}' içinde yönetilmeyen kaynakları serbest bırakacak kod varsa geçersiz kılın</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">Hedef tür eşleşmeleri</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">'{1}' türünü içeren '{0}' bütünleştirilmiş kodu, desteklenmeyen .NET Framework'e başvuruyor.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">Seçim, bildirimi olmadan bir yerel işlev çağrısı içeriyor.</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">Çok fazla | içinde (?) (|)</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">Çok fazla)'s</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">'{0}' kaynak dosyası veya içeren proje için oluşturulan PDB okunamıyor. Hata ayıklama sırasında bu dosyada yapılan değişiklikler, dosyanın içeriği oluşturulan kaynakla eşleşene kadar uygulanmaz.</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">Bilinmeyen Özellik</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">'Bilinmeyen {0}' özelliği</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">Tanınmayan denetim karakteri</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">Tanınmayan çıkış sırası \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">Tanınmayan gruplama yapısı</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">Sonlandırılmamış [] kümesi</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">Sonlandırılmamış (?... #) yorum</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</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> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">Tüm parametrelerin sarmalamasını kaldır</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">Sarmalamayı kaldır ve tüm bağımsız değişkenleri girintile</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">Sarmalamayı kaldır ve tüm parametreleri girintile</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">Bağımsız değişken listesinin sarmalamasını kaldır</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">Çağrı zincirinin sarmalamasını kaldır</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">İfadenin sarmalamasını kaldır</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">Parametre listesinin sarmalamasını kaldır</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">Lambda ifadeleri için blok vücut kullanımı</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">Lambda ifadeleri için ifade vücut kullanımı</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">Enterpolasyonlu kelimesi kelimesine dizeyi kullanın</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</source> <target state="translated">Değer:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">Uyarı: İfade dönüştürülürken semantikleri değişebilir.</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">Çağrı zincirini sarmala ve hizala</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">İfadeyi kaydır ve hizala</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">Uzun çağrı zincirini sarmala ve hizala</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">Çağrı zincirini sarmala</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">Her bağımsız değişkeni sarmala</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">Her parametreyi sarmala</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">İfadeyi sarmala</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">Uzun bağımsız değişken listesini sarmala</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">Uzun çağrı zincirini sarmala</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">Uzun parametre listesini sarmala</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">Kaydırma</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">Bağlamlarda geçiş yapmak için gezinti çubuğunu kullanabilirsiniz.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}' null veya boş olamaz.</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}' null veya boşluk olamaz.</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">'{0}' burada null değil.</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">'{0}' burada null olabilir.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">Saniyenin 10.000.000'da biri</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffffff" özel biçim belirticisi, saniye kesirinin en anlamlı yedi basamağını; yani bir tarih ve saat değerinde saniyenin on milyonda birini temsil eder. Bir saat değerinin saniyenin on milyonda birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">Saniyenin 10.000.000'da biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFFF" özel biçim belirticisi, saniye kesirinin en anlamlı yedi basamağını; yani bir tarih ve saat değerinde saniyenin on milyonda birini temsil eder. Ancak, sondaki sıfırlar veya yedi sıfır rakamı görüntülenmez. Bir saat değerinin saniyenin on milyonda birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">Saniyenin 1.000.000'da biri</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffffff" özel biçim belirticisi, saniye kesirinin en anlamlı altı basamağını; yani bir tarih ve saat değerinde saniyenin milyonda birini temsil eder. Bir saat değerinin saniyenin milyonda birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">Saniyenin 1.000.000'da biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFF" özel biçim belirticisi, saniye kesirinin en anlamlı altı basamağını; yani bir tarih ve saat değerinde saniyenin milyonda birini temsil eder. Ancak, sondaki sıfırlar veya altı sıfır rakamı görüntülenmez. Bir saat değerinin saniyenin milyonda birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">Saniyenin 100.000'de biri</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffff" özel biçim belirticisi, saniye kesirinin en anlamlı beş basamağını; yani bir tarih ve saat değerinde saniyenin yüz binde birini temsil eder. Bir saat değerinin saniyenin yüz binde birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">Saniyenin 100.000'de biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFF" özel biçim belirticisi, saniye kesirinin en anlamlı beş basamağını; yani bir tarih ve saat değerinde saniyenin yüz binde birini temsil eder. Ancak, sondaki sıfırlar veya beş sıfır rakamı görüntülenmez. Bir saat değerinin saniyenin yüz binde birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">Saniyenin 10.000'de biri</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffff" özel biçim belirticisi, saniye kesirinin en anlamlı dört basamağını; yani bir tarih ve saat değerinde saniyenin on binde birini temsil eder. Bir saat değerinin saniyenin on binde birlik bileşenini görüntülemek mümkün olmakla birlikte bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin ölçebildiği en düşük zaman aralığına bağlıdır. Windows NT sürüm 3.5 (ve üstü) ile Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">Saniyenin 10.000'de biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFF" özel biçim belirticisi, saniye kesirinin en anlamlı dört basamağını; yani bir tarih ve saat değerinde saniyenin on binde birini temsil eder. Ancak, sondaki sıfırlar veya dört sıfır rakamı görüntülenmez. Bir saat değerinin saniyenin on binde birlik bileşenini görüntülemek mümkün olmakla birlikte, bu değer anlamlı olmayabilir. Tarih ve saat değerlerinin duyarlığı sistem saatinin çözünürlüğüne bağlıdır. Windows NT 3.5 (ve üstü) ve Windows Vista işletim sistemlerinde saatin çözünürlüğü yaklaşık 10-15 milisaniyedir.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">Saniyenin 1.000'de biri</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">"fff" özel biçim belirticisi, saniye kesirinin en anlamlı üç basamağını; yani bir tarih ve saat değerinde milisaniyeyi temsil eder.</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">Saniyenin 1.000'de biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">"FFF" özel biçim belirticisi, saniye kesirinin en anlamlı üç basamağını; yani bir tarih ve saat değerinde milisaniyeyi temsil eder. Ancak, sondaki sıfırlar veya üç sıfır rakamı görüntülenmez.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">Saniyenin 100'de biri</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">"ff" özel biçim belirticisi, saniye kesirin en anlamlı iki basamağını; yani bir tarih ve saat değerinde saniyenin yüzde birini temsil eder.</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">Saniyenin 100'de biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">"FF" özel biçim belirticisi, saniye kesirinin en anlamlı iki basamağını; yani bir tarih ve saat değerinde saniyenin yüzde birini temsil eder. Ancak sondaki sıfırlar veya iki sıfır rakamı görüntülenmez.</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">Saniyenin 10'da biri</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">Saniyenin 10'da biri (sıfır olmayan)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">"F" özel biçim belirticisi, saniye kesirinin en anlamlı basamağını; yani bir tarih ve saat değerinde saniyenin onda birini temsil eder. Rakam sıfırsa hiçbir şey görüntülenmez. "F" biçim belirticisi başka biçim belirticileri olmadan kullanılırsa, standart tarih ve saat biçim belirticisi "F" olarak yorumlanır. Parse, TryParse, ParseExact veya TryParseExact yöntemi ile kullanılan "F" biçim belirticilerinin sayısı, dizenin başarıyla ayrıştırılması için saniye kesirinde bulunabilecek maksimum anlamlı rakam sayısını gösterir.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12 saatlik düzen (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"h" özel biçim belirticisi saati 1 ile 12 arasında bir sayı ile temsil eder; yani saat, gece yarısı veya öğleden beri geçen saat sayısını belirten 12 saatlik bir düzen ile temsil edilir. Gece yarısından sonraki belirli bir saat, öğleden sonraki aynı saatten ayırt edilemez. Saat yuvarlanmaz ve tek haneli bir saat, önüne sıfır konmadan biçimlendirilir. Örneğin, sabah veya öğleden sonra saat 5:43 için bu özel biçim belirticisi "5" görüntüler. "h" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart bir tarih ve saat biçimi belirticisi olarak yorumlanır ve bir FormatException oluşturur.</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12 saatlik düzen (2 rakam)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">"hh" özel biçim belirticisi (ve herhangi bir sayıda ek "h" belirticisi) saati 01 ile 12 arasında bir sayı ile temsil eder; yani saat, gece yarısı veya öğleden bu yana geçen saat sayısını belirten 12 saatlik bir düzen ile gösterilir. Gece yarısından sonraki belirli bir saat, öğleden sonraki aynı saatten ayırt edilemez. Saat yuvarlanmaz ve tek haneli bir saat başına sıfır eklenerek biçimlendirilir. Örneğin, sabah veya öğleden sonra saat 5:43 için bu biçim belirticisi "05" görüntüler.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24 saatlik düzen (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"H" özel biçim belirticisi saati 0 ile 23 arasında bir sayı ile temsil eder; yani saat, gece yarısından beri geçen saat sayısını belirten sıfır tabanlı 24 saatlik bir düzen ile temsil edilir. Tek haneli bir saat, başına sıfır eklenmeden biçimlendirilir. "H" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart bir tarih ve saat biçimi belirticisi olarak yorumlanır ve bir FormatException oluşturur.</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24 saatlik düzen (2 rakam)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">"HH" özel biçim belirticisi (ve herhangi bir sayıda ek "H" belirticisi) saati 00 ile 23 arasında bir sayı ile temsil eder; yani saat, gece yarısından bu yana geçen saat sayısını belirten sıfır tabanlı 24 saatlik bir düzen ile temsil edilir. Tek haneli bir saat, başına sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">kod</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">tarih ayırıcısı</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"/" özel biçim belirticisi yılları, ayları ve günleri ayırt etmek için kullanılan tarih ayırıcısını temsil eder. Uygun yerelleştirilmiş tarih ayırıcısı, geçerli veya belirtilen kültürün DateTimeFormatInfo.DateSeparator özelliğinden alınır. Not: Belirli bir tarih ve saat dizesinin tarih ayırıcısını değiştirmek için ayırıcı karakteri bir sabit dize sınırlayıcısı içinde belirtin. Örneğin, özel biçim dizesi gg'/'aa'/'yyyy, tarih ayırıcısı olarak her zaman "/" kullanılan bir sonuç dizesi oluşturur. Bir kültürde tüm tarihlerin tarih ayırıcısını değiştirmek için geçerli kültürün DateTimeFormatInfo.DateSeparator özelliğinin değerini değiştirin ya da DateTimeFormatInfo nesnesinin bir örneğini oluşturun, karakteri DateSeparator özelliğine atayın ve bir IFormatProvider parametresi içeren biçimlendirme yönteminin bir aşırı yüklemesini çağırın. "/" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart bir tarih ve saat biçimi belirticisi olarak yorumlanır ve bir FormatException oluşturur.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">ayın günü (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">"d" özel biçim belirticisi, ayın gününü 1 ile 31 arasındaki bir sayı ile temsil eder. Tek haneli bir gün, başına sıfır konmadan biçimlendirilir. "d" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, "d" standart tarih ve saat biçimi belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">ayın günü (2 rakam)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">"dd" özel biçim dizesi, ayın gününü 01 ile 31 arasında bir sayı ile temsil eder. Tek haneli bir gün, başına sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">haftanın günü (kısa)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">"ddd" özel biçim belirticisi, haftanın gününün kısaltılmış adını temsil eder. Haftanın gününün yerelleştirilmiş kısaltılmış adı, geçerli veya belirtilen kültürün DateTimeFormatInfo.AbbreviatedDayNames özelliğinden alınır.</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">haftanın günü (tam)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">"dddd" özel biçim belirticisi (ve herhangi bir sayıda "d" belirticisi) haftanın gününün tam adını temsil eder. Haftanın gününün yerelleştirilmiş adı, geçerli veya belirtilen kültürün DateTimeFormatInfo.DayNames özelliğinden alınır.</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">at</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">meta verilerden</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">tam uzun tarih/saat</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">"F" standart biçim belirticisi, geçerli DateTimeFormatInfo.FullDateTimePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültür için özel biçim dizesi "dddd, dd MMMM yyyy HH:mm:ss" şeklindedir.</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">tam kısa tarih/saat</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">Tam Tarih Kısa Saat ("f") Biçim Belirticisi "F" standart biçim belirticisi, bir boşlukla ayrılmış olarak uzun tarih ("D") ve kısa saat ("t") desenlerinin bir birleşimini temsil eder.</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">genel uzun tarih/saat</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">"G" standart biçim belirticisi, boşlukla ayrılmış olarak kısa tarih ("d") ve uzun saat ("T") desenlerinin bir bileşimini temsil eder.</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">genel kısa tarih/saat</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">"g" standart biçim belirticisi, boşlukla ayrılmış olarak kısa tarih ("d") ve kısa saat ("t") desenlerinin bir bileşimini temsil eder.</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">genel aşırı yükleme</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">genel aşırı yüklemeler</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">{0} ({1}-{2}) içinde</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">Kaynakta (öznitelik)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">uzun tarih</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">"D" standart biçim belirticisi, geçerli DateTimeFormatInfo.LongDatePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültür için özel biçim dizesi "dddd, dd MMMM yyyy"dir.</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">uzun saat</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">"T" standart biçim belirticisi, belirli bir kültürün DateTimeFormatInfo.LongTimePattern özelliği tarafından tanımlanan bir özel tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültür için özel biçim dizesi "HH:mm:ss" şeklindedir.</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">dakika (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">"m" özel biçim belirticisi dakikayı 0 ile 59 arasında bir sayı ile temsil eder. Dakika, son saatten bu yana geçen tam dakikaları temsil eder. Tek haneli bir dakika, başına sıfır eklenmeden biçimlendirilir. "m" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart tarih ve saat biçim belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">dakika (2 rakam)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">"mm" özel biçim belirticisi (ve herhangi bir sayıda ek "m" belirticisi) dakikayı 00 ile 59 arasında bir sayı ile temsil eder. Dakika, son saatten bu yana geçen tam dakikaları temsil eder. Tek haneli bir dakika, başına sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">ay (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">"M" özel biçim belirticisi ayı 1 ile 12 (veya 13 ayı olan takvimler için 1 ile 13) arasında bir sayı ile temsil eder. Tek haneli bir ay, başına sıfır eklenmeden biçimlendirilir. "A" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart tarih ve saat biçimi belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">ay (2 rakam)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">"MM" özel biçim belirticisi, ayı 01 ile 12 (veya 13 ayı olan takvimler için 1 ile 13) arasında bir sayı olarak temsil eder. Tek haneli bir ay, başına sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">ay (kısa)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">"MMM" özel biçim belirticisi, ayın kısaltılmış adını temsil eder. Ayın yerelleştirilmiş kısaltılmış adı, geçerli veya belirtilen kültürün DateTimeFormatInfo.AbbreviatedMonthNames özelliğinden alınır.</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">ayın günü</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">"M" veya "m" standart biçim belirticisi, geçerli DateTimeFormatInfo.MonthDayPattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültür için özel biçim dizesi "MMMM dd"dir.</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">ay (tam)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">"MMMM" özel biçim belirticisi, ayın tam adını temsil eder. Ayın yerelleştirilmiş adı, geçerli veya belirtilen kültürün DateTimeFormatInfo.MonthNames özelliğinden alınır.</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">aşırı yükleme</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">aşırı yüklemeler</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} Anahtar Sözcüğü</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">Alanı kapsülle: '{0}' (ve özelliği kullan)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">Alanı kapsülle: '{0}' (ancak alanı kullanmaya devam et)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">Alanları kapsülle (ve özelliği kullanın)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">Alanları kapsülle (ancak alanı kullanmaya devam et)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">Arabirim ayıklanamadı: Seçim bir sınıf/arabirim/yapı birimi içinde değil.</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">Arabirim ayıklanamadı: Tür, arabirime çıkarılabilecek bir üye içermiyor.</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">Son ağaç oluşturulamıyor</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">Parametrelerin türü veya dönüş türü anonim tür olamaz: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">Seçim etkin deyim içermiyor.</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">Seçim bir hata veya bilinmeyen tür içeriyor.</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">Tür parametresi '{0}' farklı bir tür parametresi olan '{1}' tarafından gizlendi.</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">Değişkenin adresi seçilen kod içinde kullanılıyor.</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">Salt okunur alanlara atama bir oluşturucuda yapılmalıdır: [{0}].</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">Üretilen kod kodun gizli bölümüyle çakışıyor</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">'{0}' öğesine isteğe bağlı parametreler ekle</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">'{0}' öğesine parametre ekle</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">{0}({1})' temsilci oluşturucusunu üret</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">{0}({1})' oluşturucusunu üret</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">{0}({1})' alan atama oluşturucusunu üret</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">Equals ve GetHashCode oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">Equals(object) oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">GetHashCode() oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">'{0}' içinde oluşturucu üretin</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">Tümünü üret</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">{1}.{0}' sabit listesi üyesini oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">{1}.{0}' sabitini oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">{1}.{0}' salt okunur özelliğini üretin</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">{1}.{0}' özelliğini üretin</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">{1}.{0}' salt okunur alanını üretin</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">{1}.{0}' alanını oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">Yerel '{0}' üretin</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">Yeni dosyada {0} '{1}' oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">İç içe {0} '{1}' oluştur</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">Genel Ad Uzayı</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">Arabirimi soyut olarak uygula</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">Arabirimi '{0}' aracılığıyla uygula</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">Arabirimi uygula</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">'{0}' için alanı ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">'{0}' için yereli ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">'{0}' için sabiti ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">'{0}' için yerel sabiti ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">Tüm '{0}' oluşumları için alanı ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">Tüm '{0}' oluşumları için yereli ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">Tüm '{0}' oluşumları için sabiti ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">Tüm '{0}' oluşumları için yerel sabiti ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">Tüm '{0}' oluşumları için sorgu değişkenini ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">'{0}' için sorgu değişkenini ortaya çıkar</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">Anonim Türler:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">olan</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">İşlemleri çalışma zamanında çözümlenecek bir nesneyi temsil ediyor.</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">sabit</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">alan</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">yerel sabit</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">yerel değişken</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">etiket</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">dönem/devir</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">"g" veya "gg" özel biçim belirticileri (ve herhangi bir sayıda ek "g" belirticisi), A.D. gibi bir dönemi veya devri temsil eder. Biçimlendirilecek tarihin ilişkili bir dönem veya devir dizesi yoksa, biçimlendirme işlemi bu belirticiyi yoksayar. "g" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, "g" standart tarih ve saat biçimi belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">aralık değişkeni</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">parametre</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">in</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">Özet:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">Yerel öğeler ve parametreler</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">Tür parametreleri:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">Döndürülenler:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">Özel Durumlar:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">Açıklamalar:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">Bu türdeki semboller için kaynak üretme desteklenmiyor</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">derleme</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">Konum bilinmiyor</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">Beklenmeyen arabirim üyesi türü: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">Bilinmeyen sembol türü</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">Soyut '{1}.{0}' özelliğini oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">Soyut '{1}.{0}' metodunu oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">{1}.{0}' yöntemini üretin</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">'{0}' kaynağından zaten yüklenmiş olan derleme istendi.</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">Sembolde simge bulunmuyor.</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">Zaman uyumsuz yöntem ref/out parametrelerine sahip olamaz: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">Meta veriler içinde tanımlı üye.</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">Yalnızca bir oluşturucunun, dizin oluşturucusunun, yöntemin veya temsilcinin imzasını değiştirebilirsiniz.</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">Bu sembol meta verilerde ilgili tanımlara veya başvurulara sahiptir. İmzasını değiştirmek yapı hatalarına neden olabilir. Devam etmek istiyor musunuz?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">İmzayı değiştir...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">Yeni tür üret...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">Kullanıcı Tanılama Çözümleyicisi Hatası.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">'{0}' çözümleyicisi '{2}' iletisiyle '{1}' türünde bir özel durum oluşturdu.</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">'{0}' çözümleyicisi şu özel durumu oluşturdu: '{1}'.</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">Adları Basitleştir</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">Üye Erişimini Basitleştir</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">Nitelemeyi kaldır</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">Bilinmeyen hata oluştu</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">Kullanılabilir</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">Kullanılabilir Değil ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">Kaynakta</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">Gizleme Dosyasında</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">{0} Gizlemesini Kaldır</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">Gizlemeyi Kaldır</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt; bekleyen &gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">Not: '{0}' kod parçacığını eklemek için iki kez sekme yapın.</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">Ara birimi açık olarak Dispose düzeniyle uygula</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">Ara birimi Dispose düzeniyle uygula</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">{0} öğesini yeniden değerlendir (şu an '{1}')</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">Bağımsız değişken null öğe içeremez.</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">Bağımsız değişken boş olamaz.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">'{0}' kimliği ile bildirilen tanılama, çözümleyici tarafından desteklenmiyor.</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">Geçtiği her yerde düzeltme kod düzeltmesi hesaplanıyor...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">Tüm oluşumları düzelt</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">Belge</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">PROJE</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">Çözüm</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: yönetilen durumu (yönetilen nesneleri) atın</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: büyük alanları null olarak ayarlayın</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">Derleyici</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">Canlı</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">enum değeri</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">const alanı</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">yöntem</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">işleç</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">oluşturucu</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">otomatik özellik</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">özellik</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">olay erişeni</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">rfc1123 tarih/saat</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"R" veya "r" standart biçim belirticisi, DateTimeFormatInfo.RFC1123Pattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Desen, tanımlanmış bir standardı yansıtır ve özellik salt okunurdur. Bu nedenle, kullanılan kültür veya girilen biçim sağlayıcısı ne olursa olsun her zaman aynıdır. Özel biçim dizesi "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'" şeklindedir. Bu standart biçim belirticisi kullanıldığında, biçimlendirme veya ayrıştırma işlemi her zaman sabit kültürü kullanır.</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">gidiş dönüş tarihi/saati</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">"O" veya "o" standart biçim belirticisi, saat dilimi bilgilerini koruyan ve ISO 8601 ile uyumlu bir sonuç dizesi üreten bir desen kullanan özel bir tarih ve saat biçimi dizesini temsil eder. DateTime değerleri için bu biçim belirticisi metinde DateTime.Kind özelliği ile birlikte tarih ve saat değerlerini korumak için tasarlanmıştır. Biçimlendirilmiş dize, stiller parametresi DateTimeStyles.RoundtripKind olarak ayarlandıysa DateTime.Parse(String, IFormatProvider, DateTimeStyles) veya DateTime.ParseExact yöntemi kullanılarak geri ayrıştırılabilir. "O" veya "o" standart biçim belirticisi, DateTime değerleri için "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" özel biçim dizesine, DateTimeOffset değerleri içinse "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" özel biçim dizesine karşılık gelir. Bu dizede tire, iki nokta üst üste ve "T" harfi gibi tek karakterleri sınırlandıran tek tırnak işareti çiftleri bu tek karakterin değiştirilemeyen bir sabit değer olduğunu gösterir. Çıktı dizesinde tırnak işaretleri görünmez. "O" veya "o" standart biçim belirticisi (ve "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" özel biçim dizesi), DateTime değerlerinin Kind özelliğini korumak için ISO 8601'in saat dilimi bilgilerini temsil ettiği üç yoldan yararlanır: DateTimeKind.Local tarih ve saat değerlerinin saat dilimi bileşeni UTC'den uzaklıktır (örneğin, +01:00, -07:00). Tüm DateTimeOffset değerleri de bu biçimde gösterilir. DateTimeKind.UTC Tarih ve saat değerlerinin saat dilimi bileşeni UTC'yi temsil etmek için (sıfır uzaklık anlamına gelen) "Z" harfini kullanır. DateTimeKind.Unspecified tarih ve saat değerlerinde saat dilimi bilgileri yoktur. "O" veya "o" standart biçim belirticisi uluslararası bir standarda uyduğundan, belirtici kullanan biçimlendirme veya ayrıştırma işlemi her zaman sabit kültürü ve Gregoryen takvimi kullanır. DateTime ve DateTimeOffset için Parse, TryParse, ParseExact ve TryParseExact yöntemlerine geçilen dizeler, bu biçimlerden birindeyse "O" veya "o" biçim belirticisi kullanılarak ayrıştırılabilir. DateTime nesnelerinde, çağırdığınız ayrıştırma aşırı yüklemesi, değeri DateTimeStyles.RoundtripKind olan bir stiller parametresi içermelidir. "O" veya "o" biçim belirticisine karşılık gelen özel biçim dizesiyle bir ayrıştırma yöntemi çağırırsanız, "O" veya "o" ile aynı sonuçları elde edemeyeceğinizi akılda tutun. Bunun nedeni, özel biçim dizesi kullanan ayrıştırma yöntemlerinin bir saat dilimi bileşeni olmayan veya UTC'yi belirtmek için "Z" kullanan tarih ve saat değerlerinin dize gösterimini ayrıştıramamasıdır.</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">saniye (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">"s" özel biçim belirticisi saniyeyi 0 ile 59 arasında bir sayı ile temsil eder. Sonuç, son dakikadan bu yana geçen tam saniyeleri gösterir. Tek haneli bir saniye, önüne sıfır konmadan biçimlendirilir. "s" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart tarih ve saat biçim belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">saniye (2 rakam)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">"ss" özel biçim belirticisi (ve herhangi bir sayıda ek "s" belirticisi) saniyeyi 00 ile 59 arasında bir sayı ile temsil eder. Sonuç, son dakikadan bu yana geçen tam saniyeleri gösterir. Tek haneli bir saniye, başına sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">kısa tarih</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">"d" standart biçim belirticisi, belirli bir kültürün DateTimeFormatInfo.ShortDatePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültürün ShortDatePattern özelliği tarafından döndürülen özel biçim dizesi "MM/dd/yyyy"dir.</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">kısa saat</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">"T" standart biçim belirticisi, geçerli DateTimeFormatInfo. ShortTimePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültür için özel biçim dizesi "HH:mm" şeklindedir.</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">sıralanabilir tarih/saat</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"s" standart biçim belirticisi, DateTimeFormatInfo.SortableDateTimePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Desen, tanımlı bir standardı (ISO 8601) yansıtır ve özellik salt okunurdur. Bu nedenle, kullanılan kültür veya girilen biçim sağlayıcısı ne olursa olsun her zaman aynıdır. Özel biçim dizesi "yyyy'-'MM'-'dd'T'HH':'mm':'ss" şeklindedir. "s" biçim belirticisinin amacı, tarih ve saat değerlerine göre tutarlı olarak artan veya azalan düzende sıralanan sonuç dizeleri üretmelidir. Bu nedenle "s" standart biçim belirticisi bir tarih ve saat değerini tutarlı bir biçimde temsil etse de biçimlendirme işlemi biçimlendirilmekte olan tarih ve saat nesnesinin değerini nesnenin DateTime.Kind özelliğini veya DateTimeOffset.Offset değerini yansıtacak şekilde değiştirmez. Örneğin, 2014-11-15T18:32:17+00:00 ve 2014-11-15T18:32:17+08:00 tarih ve saat değerleri biçimlendirilerek oluşturulan sonuç dizeleri aynıdır. Bu standart biçim belirticisi kullanıldığında, biçimlendirme veya ayrıştırma işlemi her zaman sabit kültürü kullanır.</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">statik oluşturucu</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'symbol' bir ad alanı olamaz.</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">zaman ayırıcısı</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">":" özel biçim belirticisi saatleri, dakikaları ve saniyeleri ayırt etmek için kullanılan saat ayırıcısını temsil eder. Uygun yerelleştirilmiş saat ayırıcısı, geçerli veya belirtilen kültürün DateTimeFormatInfo.TimeSeparator özelliğinden alınır. Not: Belirli bir tarih ve saat dizesinin saat ayırıcısını değiştirmek için ayırıcı karakteri bir sabit dize sınırlayıcısı içinde belirtin. Örneğin, özel biçim dizesi ss'_'dd'_'nn, saat ayırıcısı olarak her zaman "_" (alt çizgi) kullanılan bir sonuç dizesi oluşturur. Bir kültürde tüm tarihlerin saat ayırıcısını değiştirmek için geçerli kültürün DateTimeFormatInfo.TimeSeparator özelliğinin değerini değiştirin ya da DateTimeFormatInfo nesnesinin bir örneğini oluşturun, karakteri TimeSeparator özelliğine atayın ve bir IFormatProvider parametresi içeren biçimlendirme yönteminin bir aşırı yüklemesini çağırın. ":" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart bir tarih ve saat biçimi belirticisi olarak yorumlanır ve bir FormatException oluşturur.</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">saat dilimi</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"K" özel biçim belirticisi tarih ve saat değerinin saat dilimi bilgisini temsil eder. Bu biçim belirticisi DateTime değerleriyle kullanıldığında, sonuç dizesi DateTime.Kind özelliğinin değeriyle tanımlanır: Yerel saat dilimi (DateTimeKind.Local olan bir DateTime.Kind özellik değeri) için bu belirtici "zzz" belirticisi ile eşdeğerdir ve Eşgüdümlü Evrensel Saat'e (UTC) göre yerel uzaklığı içeren bir sonuç dizesi üretir; örneğin, "-07:00". Bir UTC saati (DateTimeKind.Utc'nin DateTime.Kind özellik değeri) için sonuç dizesi, UTC tarihinin temsil edilebilmesi için bir "Z" karakteri içerir. Belirtilmemiş bir saat diliminden (DateTime.Kind özelliği DateTimeKind.Unspecified değerine eşit olan) bir saat için sonuç String.Empty ile eşdeğerdir. DateTimeOffset değerleri için "K" biçim belirticisi "zzz" biçim belirticisine eşdeğerdir ve DateTimeOffset değerinin UTC'den uzaklığını içeren bir sonuç dizesi üretir. "K" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart bir tarih ve saat biçimi belirticisi olarak yorumlanır ve bir FormatException oluşturur.</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">tür kısıtlaması</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">tür parametresi</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">öznitelik</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">'{0}' ve '{1}' öğesini özellikle değiştir</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">'{0}' öğesini özellikle değiştir</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">Örtülü olarak başvurulan metot</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">'{0}' türünü oluştur</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">{0} '{1}' oluştur</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">'{0}' öğesini '{1}' olarak değiştirin.</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">Çağrılmayan metodun yerine özellik konulamaz.</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">Yalnızca, out değişkeni bildirimi olmayan tek bağımsız değişkenli metotlar bir özellikle değiştirilebilir.</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">{0} çözümleyicisinin bir örneği {1}: {2} öğesinden oluşturulamaz.</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">{0} derlemesi hiçbir çözümleyici içermiyor.</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">Çözümleyici derlemesi {0}: {1} yüklenemiyor</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">Metodu zaman uyumlu hale getir</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">Şuradan: {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">Son sürümü bul ve yükle</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">Yerel sürüm olan '{0}' sürümünü kullan</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">'{0}' uygulamasının yerel olarak yüklü '{1}' sürümünü kullanın Bu sürüm şurada kullanılır: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">Son '{0}' sürümünü bul ve yükle</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">Paket yöneticisi ile yükle...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">Şunu yükle: '{0} {1}'</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">'{0}' sürümünü yükle</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">'{0}' değişkenini oluştur</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">Sınıflar</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">Sabitler</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">Temsilciler</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">Sabit Listeleri</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">Olaylar</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">Genişletme metotları</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">Alanlar</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">Arabirimler</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">Yerel Öğeler</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">Metotlar</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">Modüller</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">Ad Uzayları</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">Özellikler</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">Yapılar</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">Parametreler:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Bağımsız değişken içeren SignatureHelpItem en az bir parametreye sahip olmalıdır.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">'{0}' yerine metot kullan</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">'{0}' yerine metotlar kullan</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">Özelliğe örtülü olarak başvurdu</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">Özellik, bir metot çağrısı ile güvenli şekilde değiştirilemiyor</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">Araya alınmış dizeye dönüştür</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">Türü {0} ile değiştir</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">Dosyayı {0} olarak yeniden adlandır</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">Tür {0} olarak yeniden adlandır</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">Etiketi Kaldır</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">Eksik parametre düğümlerini ekle</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">İçeren kapsamı asenkron yap</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">İçeren kapsamı asenkron yap (Görevi döndür)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(Bilinmiyor)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">Çerçeve türü kullan</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">'{0}' paketini yükle</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">proje {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">'{0}' adını tam olarak belirtin</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">'{0}' başvurusunu kaldırın.</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">Anahtar Sözcükler</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">Kod Parçacıkları</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">Tümü küçük harf</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">Tümü büyük harf</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">İlk sözcüğün baş harfi büyük</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Baş Harfleri Büyük Olmak Üzere Bitişik</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">'{0}' belgesini kaldır</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">'{0}' belgesini ekle</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">'{0}' bağımsız değişken adını ekle</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">'{0}' al</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">Her ikisini de al</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">Alttakini al</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">Üsttekini al</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">Kullanılmayan değişkeni kaldır</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">İkiliye dönüştür</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">Ondalığa dönüştür</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">Onaltılığa dönüştür</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">Binleri ayır</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">Sözcükleri ayır</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">Dörtlüleri ayır</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">Ayırıcıları kaldır</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">'{0}' öğesine parametre ekle</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">Oluşturucuyu oluştur...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">Oluşturucu parametresi olarak kullanılacak üyeleri seçin</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">Equals/GetHashCode içinde kullanılacak üyeleri seçin</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">Geçersiz kılmaları oluştur...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">Geçersiz kılınacak üyeleri seçin</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">Null denetimi ekle</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">'string.IsNullOrEmpty' denetimi ekle</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">'string.IsNullOrWhiteSpace' denetimi ekle</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">'{0}' alanını başlat</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">'{0}' özelliğini başlat</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">Null denetimleri ekle</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">İşleçleri oluştur</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">{0} uygula</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">Raporlanan '{0}' tanılamasının kaynak konumu, çözümlenen derlemenin bir parçası olmayan '{1}' dosyası içinde.</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">Bildirilen tanılamanın ('{0}') kaynak konumu olan '{1}', '{2}' dosyasında ve bu konum, belirtilen dosyanın dışında.</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">{0} içinde (proje {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">Erişilebilirlik değiştiricileri Ekle</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">Bildirimi başvurunun yanına taşı</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">Tam özelliğe dönüştür</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">Uyarı: Metot, meta verideki sembolü geçersiz kılıyor</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">{0} kullan</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">'{0}' bağımsız değişken adını ekle (sondaki bağımsız değişkenler dahil)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">yerel işlev</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">dizin oluşturucu</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">Diğer ad belirsiz '{0}' türünde</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">Uyarı: Yineleme sırasında koleksiyon değiştirildi.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">Uyarı: Yineleme değişkeni, işlev sınırını geçti.</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">Uyarı: Yineleme sırasında koleksiyon değiştirilebilir.</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">evrensel tam tarih/saat</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">"U" standart biçim belirticisi, belirtilen bir kültürün DateTimeFormatInfo.FullDateTimePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Desen, "F" deseniyle aynıdır. Ancak DateTime değeri biçimlendirilmeden önce otomatik olarak UTC'ye dönüştürülür.</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">evrensel sıralanabilir tarih/saat</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">"U" standart biçim belirticisi, DateTimeFormatInfo.UniversalSortableDateTimePattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Desen, tanımlanmış bir standardı yansıtır ve özellik salt okunurdur. Bu nedenle, kullanılan kültür veya girilen biçim sağlayıcı ne olursa olsun her zaman aynıdır. Özel biçim dizesi "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". Bu standart biçim belirticisi kullanıldığında, biçimlendirme veya ayrıştırma işlemi her zaman sabit kültürü kullanır. Sonuç dizesi Eşgüdümlü Evrensel Saat (UTC) olarak bir saati ifade etmeliyse de biçimlendirme işlemi sırasında asıl DateTime değerinde dönüştürme işlemi yapılmaz. Bu nedenle bir DateTime değerini biçimlendirmeden önce DateTime.ToUniversalTime yöntemini çağırarak UTC'ye dönüştürmelisiniz.</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">üye içeren içinde güncelleştirme kullanımları</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">projeyi içeren kullanımlar güncelleştiriliyor</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">türünü içeren içinde güncelleştirme kullanımları</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">bağımlı projelerdeki kullanımlar güncelleştiriliyor</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">UTC saat ve dakika uzaklığı</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">DateTime değerlerinde, "zzz" özel biçim belirticisi, yerel işletim sisteminin saat diliminin saat ve dakika cinsinden UTC'den işaretli uzaklığını temsil eder. Bir örneğin DateTime.Kind özelliğinin değerini yansıtmaz. Bu nedenle, "zzz" biçim belirticisinin DateTime değerleriyle kullanılması önerilmez. DateTimeOffset değerlerinde, bu biçim belirticisi, DateTimeOffset değerinin saat ve dakika cinsinden UTC'den uzaklığını temsil eder. Uzaklık her zaman başında bir işaretle görüntülenir. Artı işareti (+) UTC'den ilerideki, eksi işareti (-) ise UTC'den gerideki saatleri gösterir. Tek haneli bir uzaklık, başına bir sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">UTC saat uzaklığı (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">DateTime değerlerinde, "z" özel biçim belirticisi, yerel işletim sisteminin saat diliminin Eşgüdümlü Evrensel Saat'ten (UTC) saat cinsinden ölçülen işaretli uzaklığını temsil eder. Herhangi bir örneğin DateTime.Kind özelliğinin değerini yansıtmaz. Bu nedenle "z" biçim belirticisinin DateTime değerleriyle kullanılması önerilmez. DateTimeOffset değerlerinde, bu biçim belirticisi, DateTimeOffset değerinin saat cinsinden UTC'den uzaklığını temsil eder. Uzaklık her zaman başında bir işaretle görüntülenir. Artı işareti (+) UTC'den önceki, eksi işareti (-) ise UTC'den sonraki saatleri gösterir. Tek haneli bir uzaklık, başına sıfır eklenmeden biçimlendirilir. "z" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart bir tarih ve saat biçimi belirticisi olarak yorumlanır ve bir FormatException oluşturur.</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">UTC saat uzaklığı (2 rakam)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">DateTime değerlerinde, "zz" özel biçim belirticisi, yerel işletim sisteminin saat diliminin UTC'den (saat cinsinden) işaretli uzaklığını gösterir. Bir örneğin DateTime.Kind özelliğinin değerini yansıtmaz. Bu nedenle, "zz" biçim belirticisinin DateTime değerleriyle kullanılması önerilmez. DateTimeOffset değerlerinde, bu biçim belirticisi, DateTimeOffset değerinin saat cinsinden UTC'den uzaklığını temsil eder. Uzaklık her zaman başında bir işaretle görüntülenir. Artı işareti (+) UTC'den önceki, eksi işareti (-) ise UTC'den sonraki saatleri gösterir. Tek haneli bir uzaklık, başına bir sıfır eklenerek biçimlendirilir.</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">[x-y] aralığı ters sırada</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">yıl (1-2 rakam)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">"y" özel biçim belirticisi yılı bir rakamlı veya iki rakamlı bir sayı ile temsil eder. Yılda ikiden fazla rakam varsa, sonuçta yalnızca iki düşük değerli rakam görüntülenir. İki rakamlı bir yılın ilk rakamı sıfırsa (örneğin 2008), sayı başına sıfır eklenmeden biçimlendirilir. "y" biçim belirticisi başka özel biçim belirticileri olmadan kullanılırsa, standart tarih ve saat biçimi belirticisi olarak yorumlanır.</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">yıl (2 rakam)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">"yy" özel biçim belirticisi yılı iki rakamlı bir sayı olarak temsil eder. Yılda iki rakamdan fazlası varsa, sonuçta yalnızca iki düşük değerli rakam görüntülenir. İki rakamlı yılda ikiden daha az anlamlı basamak varsa, iki rakam üretmek için sayının önüne sıfırlar eklenir. Bir ayrıştırma işleminde, "yy" özel biçim belirticisi kullanılarak ayrıştırılan iki rakamlı bir yıl, biçim sağlayıcının geçerli takvimindeki Calendar.TwoDigitYearMax özelliği temel alınarak yorumlanır. Aşağıdaki örnekte, iki rakamlı bir yılı olan bir tarihin dize gösterimi, geçerli kültür olan en-US kültürünün varsayılan Gregoryen takvimi kullanılarak ayrıştırılmaktadır. Daha sonra, geçerli kültürün CultureInfo nesnesi, TwoDigitYearMax özelliği değiştirilmiş bir GregorianCalendar nesnesini kullanacak şekilde değiştirilmektedir.</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">yıl (3-4 rakam)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">"yyy" özel biçim belirticisi yılı minimum üç rakamla temsil eder. Yılda üçten fazla anlamlı basamak varsa, bunlar sonuç dizesine eklenir. Yılda üçten az rakam varsa, üç rakam üretmek için sayının başına sıfırlar eklenir.</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">yıl (4 rakam)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">"yyyy" özel biçim belirticisi yılı minimum dört rakamla temsil eder. Yılda dörtten fazla anlamlı basamak varsa, bunlar sonuç dizesine eklenir. Yılda dörtten az rakam varsa, dört rakam üretmek için sayının başına sıfırlar eklenir.</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">yıl (5 rakam)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">"yyyyy" özel biçim belirticisi (ve herhangi bir sayıda ek "y" belirticisi) yılı minimum beş rakamla temsil eder. Yılda beşten fazla anlamlı basamak varsa, bunlar sonuç dizesine eklenir. Yılda beşten az rakam varsa, beş rakam üretmek için sayının başına sıfırlar eklenir. Ek "y" belirticileri varsa, sayının önüne "y" belirticilerinin sayısını üretmek için gerektiği kadar sıfır eklenir.</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">yıl ay</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">"Y" veya "y" standart biçim belirticisi belirtilen bir kültürün DateTimeFormatInfo.YearMonthPattern özelliği tarafından tanımlanan özel bir tarih ve saat biçimi dizesini temsil eder. Örneğin, sabit kültür için özel biçim dizesi "yyyy MMMM"dir.</target> <note /> </trans-unit> </body> </file> </xliff>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/xlf/FeaturesResources.zh-Hans.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="zh-Hans" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM(缩写)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">"T" 自定义格式说明符表示 AM/PM 指示符的第一个字符。相应的本地化指示符从当前或特定区域性的 DateTimeFormatInfo.AMDesignator 或 DateTimeFormatInfo.PMDesignator 属性中进行检索。AM 指示符用于指示从 0:00:00 (午夜)到 11:59:59.999 的所有时间。PM 指示符用于指示从 12:00:00 (中午)到 23:59:59.999 的所有时间。 如果使用 "t" 格式说明符而未使用其他自定义格式说明符,则该说明符将被解释为 "t" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM(完整)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">"tt" 自定义格式说明符(另加任意数量的其他 "t" 说明符)表示整个 AM/PM 指示符。相应的本地化指示符从当前或特定区域性的 DateTimeFormatInfo.AMDesignator 或 DateTimeFormatInfo.PMDesignator 属性中进行检索。AM 指示符用于指示从 0:00:00(午夜)到 11:59:59.999 的所有时间。PM 指示符用于指示从 12:00:00 (中午)到 23:59:59.999 的所有时间。 请确保对需要维护 AM 和 PM 之间的差异的语言使用 "tt" 说明符。例如日语,其 AM 和 PM 指示符在第二个字符(而不是第一个字符)会不同。</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">负号必须是字符类中的最后一个元素</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">添加 "DebuggerDisplay" 属性</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">添加显式转换</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">添加成员名称</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">为所有参数添加 null 检查</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">将可选参数添加到构造函数</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">将参数添加到“{0}”(和重写/实现)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">将参数添加到构造函数</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">添加到“{0}”的项目引用。</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">添加到“{0}”的引用。</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">操作不能为空。</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">添加元组元素名称 "{0}"</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">对齐包装的参数</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">对齐包装参数</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">替换条件不能是注释</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">替换条件不捕获且不能命名</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">应用文件头首选项</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">应用对象/集合初始化首选项</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">等待任务返回“{0}”</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">等待任务没有返回任何值</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">基类包含无法访问的未实现成员</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">无法应用更改 - 意外错误:“{0}”</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">不能在字符范围内包含类 \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">捕获组编号必须小于等于 Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">捕获编号不能为零</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;推断&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;省略&gt;</target> <note /> </trans-unit> <trans-unit id="Change_namespace_to_0"> <source>Change namespace to '{0}'</source> <target state="translated">将命名空间更改为“{0}”</target> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">更改为全局命名空间</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">在出现异常而停止时禁止更改</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">在应用程序运行时,将不应用在项目“{0}”中所作的更改</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">配置 {0} 代码样式</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">配置 {0} 严重性</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">为所有“{0}”分析器配置严重性</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">为所有分析器配置严重性</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">转换为 LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">添加到“{0}”</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">转换为类</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">转换为 LINQ (调用形式)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">转换为记录</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">转换为记录结构</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">转换为结构</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">将类型转换为“{0}”</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">创建字段 "{0}" 并赋值</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">创建属性 "{0}" 并赋值</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">创建其余部分并赋值为字段</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">创建其余部分并赋值为属性</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">不要更改此代码。请将清理代码放入“{0}”方法中</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">源文件 "{0}" 的当前内容与生成的源不匹配。在调试期间对此文件所做的任何更改都不会应用,直到其内容与生成的源匹配为止。</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">文件必须包含在创建此服务的工作区中</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">编辑并继续</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">模块已禁用“编辑并继续”</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">在项目“{0}”中所作的更改将阻止调试会话继续: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">运行时不支持编辑并继续。</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">读取文件“{0}”时出错: {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">创建 CodeFixProvider 实例时出错</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">创建 CodeFixProvider“{0}”的实例时出错</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">示例:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">示例:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">记录的显示实施方法参数名必须匹配编辑器生成的等效“{0}”</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">提取基类...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">提取接口...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">提取本地函数</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">提取方法</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">未能分析 {0} 的数据流</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">修正格式</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">修正笔误“{0}”</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">设置文档的格式</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">设置文档格式</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">生成比较运算符</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">在“{0}”中生成构造函数(包含字段)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">在“{0}”中生成构造函数(包含属性)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">为 "{0}" 生成</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">生成参数 "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">生成参数 {0}(和重写/实现)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">模式末尾的 \ 非法</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">x &gt; y 的 {x,y} 无效</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">显式实现 "{0}"</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">隐式实现 "{0}"</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">实现抽象类</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">显式实现所有接口</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">隐式实现所有接口</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">显式实现所有成员</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">显式实现</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">隐式实现</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">显式实现剩余成员</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">通过“{0}”实现</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">\p{X} 字符转义不完整</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">缩进所有参数</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">缩进所有参数</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">缩进包装的参数</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">缩进包装参数</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">内联“{0}”</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">内联并保留“{0}”</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">无效的十六进制数字</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">引入常量</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">介绍领域</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">引入局部</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">引入查询变量</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">组名无效: 组名必须以单词字符开头</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">将类设置为 "abstract"</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">设为静态</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">反转条件</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">格式错误</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">\p{X} 字符转义格式错误</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">名为“向后引用”的 \k&lt;...&gt; 格式不正确</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">与嵌套的 "{0}" 语句合并</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">与下一个 "{0}" 语句合并</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">与外部 "{0}" 语句合并</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">与上一个 "{0}" 语句合并</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} 必须返回支持读取和查找操作的流。</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">缺少控制字符</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">将内容移动到命名空间...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">将文件移至“{0}”</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">将文件移动到项目根文件夹</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">移动到命名空间...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">嵌套限定符 {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">没有插入方法调用的有效位置。</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">")" 不足</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">运算符</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">无法更新属性引用</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">向上拉 "{0}"</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">将 "{0}" 拉到 "{1}"</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">将成员拉到基类...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">将成员拉取到新的基类...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">限定符 {x,y} 前没有任何内容</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">对未定义组的引用</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">对未定义的组名 {0} 的引用</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">对未定义的组编号 {0} 的引用</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">所有控制字符。这包括 Cc、Cf、Cs、Co 和 Cn 类别。</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">所有控制字符</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">所有音调符号标记。这包括 "Mn"、"Mc" 和 "Me" 类别。</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">所有音调符号标记</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">所有字母字符。这包括 Lu、Ll、Lt、Lm 和 Lo 字符。</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">所有字母字符</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">所有数字。这包括 Nd、Nl 和 No 类别。</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">所有数字</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">所有标点字符。这包括 Pc、Pd、Ps、Pe、Pi、Pf 和 Po 类别。</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">所有标点字符</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">所有分隔符字符。这包括 Zs、Zl 和 Zp 类别。</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">所有分隔符字符</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">所有符号。这包括 Sm、Sc、Sk 和 So 类别。</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">所有符号</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">可以使用竖线(|)字符匹配一系列模式中的任何一个,其中 | 字符分隔每个模式。</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">替换</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">句点字符(.)匹配除 \n (换行符 \u000A)以外的任何字符。如果正则表达式模式已被 RegexOptions Singleline 选项修改,或者如果包含 ". " 字符类的模式部分已被 "s" 选项修改,则 ". " 可匹配任何字符。</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">任何字符</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">原子组(在其他一些正则表达式引擎中称为非回溯子表达式、原子子表达式或一次性子表达式)禁用回溯。正则表达式引擎将匹配输入字符串中的多个字符。当无进一步的匹配时,它将不回溯以尝试匹配备用模式。(也就是说,子表达式只匹配那些将单独由子表达式匹配的字符串;它不会尝试根据子表达式和其后的任何子表达式匹配字符串。) 如果你知道回溯不会成功,建议使用此选项。防止正则表达式引擎执行不必要的搜索可提高性能。</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">原子组</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">与退格键字符(\u0008)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">退格键字符</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">均衡组定义删除以前定义的组的定义,并在当前组中存储以前定义的组和当前组之间的时间间隔。 "name1" 是当前组(可选),"name2" 是以前定义的组,而 "subexpression" 是任何有效的正则表达式模式。均衡组定义将删除 name2 的定义,并在 name1 中存储 name2 和 name1 之间的间隔。如果未定义 name2 组,则匹配回溯。由于删除 name2 的最后一个定义会发现 name2 的上一个定义,此构造使你能够使用作为计数器的组的捕获堆栈来跟踪嵌套构造(如括号)或左括号和右括号。 均衡组定义使用 "name2" 作为堆栈。每个嵌套构造的开始字符都放在该组中并位于其组中。捕获集合。匹配结束字符时,将从组中删除其相应的左符号,并减小捕获集合 1。在所有嵌套构造的开始和结束字符都匹配后,"name1" 为空。</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">均衡组</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">基本组</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">与响铃(警告)字符(\u0007)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">响铃字符</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">与回车符(\u000D)匹配。请注意,\r 与换行符(\n)不等效。</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">回车符</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">字符类减法生成一组字符,这是从另一个字符类中排除一个字符类中的字符后得到的。 "base_group" 为正或为负的字符组或范围。"excluded_group" 组件是另一个为正或为负的字符组,或其他字符类减法表达式(即,可以嵌套字符类减法表达式)。</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">字符类减法</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">字符组</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">注释</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">此语言元素尝试匹配两种模式之一,具体取决于它是否可以与初始模式匹配。 "expression" 是要匹配的初始模式,如果表达式匹配,则 "yes" 是可匹配的模式;如果表达式不匹配,则 "no" 是可匹配的可选模式。。</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">条件表达式匹配</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">此语言元素尝试匹配两种模式之一,具体取决于它是否与指定的捕获组匹配。 "name" 是捕获组的名称(或编号),"yes" 是在 "name" (或 "number") 具有匹配项的情况下匹配的表达式,"no" 是没有匹配的情况下可匹配的可选表达式。</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">条件组匹配</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">\G 定位点指定匹配必须出现在上一个匹配结束的点。在 Regex.Matches 或 Match.NextMatch 方法中使用此定位点可确保所有匹配项都是连续的。</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">连续匹配</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">与 ASCII 控制字符匹配,其中 X 是控制字符的字母。例如, \cC 是 CTRL-C。</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">控制字符</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d 匹配任何十进制数字。它等效于 \p{Nd} 正则表达式模式,该模式包括标准十进制数字 0-9 以及许多其他字符集的小数位数。 如果指定了符合 ECMAScript 的行为,则 \d 等效于 [0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">十进制数字字符</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">数字符号(#)标记 x 模式注释,该注释从正则表达式模式结尾处的非转义 # 字符开始,一直持续到行尾。若要使用此构造,必须启用 x 选项(通过内联选项),或者在实例化 regex 对象或调用静态 regex 方法时向选项参数提供 RegexOptions 值。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">行尾注释</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">\z 定位点指定匹配必须出现在输入字符串的末尾。像 $ language 元素一样,\z 忽略了 RegexOptions 选项。与 \z 语言元素不同,\z 与字符串结尾的 \n 字符不匹配。因此,它只能匹配输入字符串的最后一行。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">仅字符串末尾</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">\Z 定位点指定匹配必须出现在输入字符串的末尾或输入字符串的结尾处的 \n 之前。它与 $ 定位点相同,只不过 \Z 忽略了 RegexOptions 选项。因此,在多行字符串中,它只能匹配最后一行的结尾或 \n 前的最后一行。 \Z 定位点匹配 \n 但不匹配 \r\n (CR/LF 字符组合)。若要匹配 CR/LF,请在正则表达式模式中包含 \r?\Z。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">字符串末尾或结束换行符之前</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">$ 定位点指定前面的模式必须出现在输入字符串的末尾或输入字符串结尾的 \n 之前。如果将 $ 与 RegexOptions 选项一起使用,则匹配也可以出现在行尾。 $ 定位点匹配 \n,但不匹配 \r\n (回车符和换行符的组合,或 CR/LF)。若要匹配 CR/LF 字符组合, 请在正则表达式模式中包括 \r?$。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">字符串或行的结尾</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">与转义字符(\u001B)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">转义字符</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">排除的组</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">表达式</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">与换页符(\u000C)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">换页符</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">此分组构造应用或禁用子表达式中的指定选项。在问号后指定要启用的选项,在减号后禁用的选项。允许的选项有: i 使用不区分大小写的匹配。 m 使用多行模式,其中 ^ 和 $ 分别匹配每行的开头和结尾 (而不是输入字符串的开头和结尾)。 s 使用单行模式,其中句点(.)与每个字符 (而不是除 \n 之外的每个字符)匹配。 n 请勿捕获未命名的组。唯一有效的捕获已被显式 命名为或编码为(?&lt;name&gt; subexpression)形式的组。 x 请删除模式中的非转义空格,并 在数字符号(#)之后使用注释。</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">组选项</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">与 ASCII 字符匹配,其中 ## 是两位数的十六进制字符代码。</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">十六进制转义符</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">(?# comment)构造允许在正则表达式中包括内联注释。尽管注释包含在 Regex 方法返回的字符串中,但正则表达式引擎不使用模式匹配中注释的任何部分。注释以第一个右括号结束。</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">内联注释</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">为正则表达式的其余部分启用或禁用特定模式匹配选项。在问号后面指定要启用的选项,在减号后指定要禁用的选项。允许的选项有: i 使用不区分大小写的匹配。 m 使用多行模式,其中 ^ 和 $ 分别匹配每行的开头和结尾 (而不是输入字符串的开头和结尾)。 s 使用单行模式,其中句点(.)与每个字符 (而不是除 \n 之外的每个字符)匹配。 n 请勿捕获未命名的组。唯一有效的捕获已被显式 命名为或编码为(?&lt;name&gt; subexpression)形式的组。 x 请删除模式中的非转义空格,并 在数字符号(#)之后使用注释。</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">内联选项</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">正则表达式问题: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">字母,小写</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">字母,修饰符</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">字母,其他</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">字母,首字母大写</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">字母,大写</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">标记,封闭</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">标记,非间距</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">标记,间距组合</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">{n,}? 限定符匹配前面的元素至少 n 次,其中 n 是任何整数,但次数尽可能少。它是贪婪限定符 {n,} 的惰性副本</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">至少匹配 "n" 次(惰性)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">{n,} 限定符匹配前面的元素至少 n 次,其中 n 是任何整数。{n,} 是贪婪限定符,其惰性等效值为 {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">至少匹配 "n" 次</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">{n,m}? 限定符匹配前面的元素 n 次和 m 次,其中 n 和 m 是整数,但次数尽可能少。它是贪婪限定符 {n, m} 的惰性副本</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">至少匹配 "n" 次(惰性)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">{n, m} 限定符匹配前面的元素至少 n 次,但不超过 m 次,其中 n 和 m 是整数。{n, m} 是贪婪限定符,其惰性等效值为 {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">匹配次数介于 "m" 次和 "n" 次之间</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">{n}? 限定符恰好匹配前面的元素 n 次,其中 n 是任何整数。它是贪婪限定符 {n}+ 的惰性副本</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">刚好匹配 "n" 次(惰性)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">{n} 限定符恰好匹配前面的元素 n 次,其中 n 是任何整数。{n} 是贪婪限定符,其惰性等效值为 {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">刚好匹配 "n" 次</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">+? 限定符匹配前面的元素一次或多次,但次数尽可能少。它是贪婪限定符 + 的惰性副本</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">匹配一次或多次(惰性)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">+ 限定符匹配前面的元素一次或多次。它等效于 {1,} 数量表示符。+ 是贪婪限定符,其惰性等效项为 +?。</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">匹配一次或多次</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">*? 限定符匹配前导元素零次或多次,但次数尽可能少。它是贪婪限定符 * 的惰性副本</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">匹配零次或多次(惰性)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">* 限定符匹配前面的元素零次或多次。它等效于 {0,} 数量表示符。* 是贪婪限定符,其惰性等效项为 *?。</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">匹配零次或多次</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">?? 限定符匹配前面的元素零次或一次,但次数尽可能少。它是贪婪限定符 ? 的惰性副本</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">匹配零次或一次(惰性)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">? 限定符匹配前面的元素零次或一次。它等效于 {0,1} 限定符。? 是贪婪限定符,其惰性等效项为 ??。</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">匹配零次或一次</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">此分组构造捕获匹配的 "subexpression",其中 "subexpression" 是任何有效的正则表达式模式。使用括号的捕获将根据正则表达式中左括号的顺序从 1 开始按从左到右的顺序自动编号。被编号为零的捕获是由整个正则表达式模式匹配的文本。</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">匹配的子表达式</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">名称</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">名称或数字</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">已命名或已编号的向后引用。 "name" 是在正则表达式模式中定义的捕获组的名称。</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">已命名的向后引用</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">捕获匹配的子表达式,以便按名称或按编号进行访问。 "name" 是有效的组名,而 "subexpression" 是任何有效的正则表达式模式。"name" 不得包含任何标点符号字符且不能以数字开头。 如果正则表达式模式匹配方法的 RegexOptions 参数包括 RegexOptions ExplicitCapture 标志,或者如果将 n 选项应用于此子表达式,则捕获子表达式的唯一方法是显式命名捕获组。</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">已命名匹配的子表达式</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">负字符组指定不能出现在匹配项的输入字符串中的字符列表。字符列表是单独指定的。 可以连接两个或更多字符范围。例如,若要指定从 "0" 到 "9" 的十进制数字范围、从 "a" 到 "f" 的小写字母范围以及从 "A" 到 "F" 的大写字母范围,请使用 [0-9a-fA-F]。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">负字符组</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">负字符范围指定不能出现在输入字符串中的字符列表,以使匹配发生。"firstCharacter" 是该范围的开始字符,而 "lastCharacter" 是该范围的结束字符。 可以连接两个或更多字符范围。例如,若要指定从 "0" 到 "9" 的十进制数字范围、从 "a" 到 "f" 的小写字母范围以及从 "A" 到 "F" 的大写字母范围,请使用 [0-9a-fA-F]。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">负字符范围</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">正则表达式构造 \P{name} 匹配不属于 Unicode 通用类别或命名块的任何字符,其中 "name" 是类别缩写或命名块名称。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">负 unicode 类别</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">与换行符(\u000A)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">换行符</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">否</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D 与任何非数字字符匹配。它等效于 \P{Nd} 正则表达式模式。 如果指定了符合 ECMAScript 的行为,则 \P 等效于 [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">非数字字符</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S 与任何非空格字符匹配。它等效于 [^\f\n\r\t\v\x85\p{Z}] 正则表达式模式,或与等效于 \s 的正则表达式模式(与空格字符匹配)的相反形式。 如果指定了符合 ECMAScript 的行为,则 \s 等效于 [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">非空格字符</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">\B 定位点指定匹配不得出现在字边界上。它与 \b 定位点相反。</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">非字边界</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\w 与任何非字词字符匹配。它匹配除以下 Unicode 类别中的任何字符: Ll 字母,小写 Lu 字母,大写 Lt 字母,首字母大写 Lo 字母,其他 Lm 字母,修饰符 Mn 标记,非间距 Nd 数字,十进制数字 Pc 标点,连接符 如果指定了符合 ECMAScript 的行为,则 \W 等效于 [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">非字词字符</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">此构造不捕获由子表达式匹配的子字符串: 在将限定符应用于组时,通常使用非捕获组构造,但组捕获的子字符串不具有任何意义。 如果正则表达式包含嵌套的分组构造,则外部非捕获组构造不适用于内部嵌套的组构造。</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">非捕获组</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">数字,十进制数字</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">数字,字母</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">数字,其他</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">一个带编号的向后引用,其中 "number" 是正则表达式中捕获组的序号位置。例如,\4 与第四个捕获组的内容匹配。 八进制转义码(例如 \16) 和使用相同表示法的 \number 向后引用之间存在二义性。如果多义性是一个问题,则可以使用 \k&lt;name&gt; 表示法,该符号是明确的,不能与八进制字符代码混淆。同样,十六进制代码(如 \xdd)是明确的,不能与向后引用混淆。</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">带编号的向后引用</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">其他,控件</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">其他,格式</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">其他,未分配</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">其他,专用</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">其他,代理项</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">正字符组指定字符列表,其中的任何一个字符都可能出现在输入字符串中,以使匹配发生。</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">正字符组</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">正字符范围指定一个字符范围,其中的任何一个字符都可能出现在输入字符串中,以使匹配发生。 "firstCharacter" 是该范围的起始字符,而 "lastCharacter" 是该范围的结束字符。</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">正字符范围</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">标点,结束</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">标点,连接符</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">标点,短划线</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">标点,右引号</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">标点,左引号</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">标点,开始</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">标点,其他</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">分隔符,行</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">分隔符,段落</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">分隔符,空格</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">\A 定位点指定匹配必须出现在输入字符串的开头。它与 ^ 定位点相同,只不过 \A 忽略了 RegexOptions 选项。因此,它只能匹配多行输入字符串中第一行的开头。</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">仅字符串的开头</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">^ 定位点指定以下模式必须从字符串的第一个字符位置开始。如果使用 ^ 和 RegexOptions 选项,则匹配必须出现在每行的开头。</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">字符串或行的开头</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">子表达式</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">符号,货币</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">符号,数学</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">符号,修饰符</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">符号,其他</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">与制表符(\u0009)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">制表符</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">正则表达式构造 \p{name} 匹配属于 Unicode 通用类别或命名块的任何字符,其中 "name" 是类别缩写或命名块名称。</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">Unicode 类别</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">与值为 ####十六进制的 utf-16 代码单元匹配。</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">Unicode 转义</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Unicode 通用类别: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">与垂直制表符(\u000B)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">垂直制表符</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s 与任何空格字符匹配。它等效于以下转义序列和 Unicode 类别: \f 换页符 \u000C \n 换行符 \u000A \rr 回车符 \u000D \t 制表符 \u0009 \v 垂直制表符 \u000B \x85 省略号或下一行(NEL)字符(…) \u0085 \p{Z} 匹配任何分隔符字符 如果指定了符合 ECMAScript 的行为,则 \s 等效于 [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">空格字符</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">\b 定位点指定匹配必须出现在字词字符(\w 语言元素)和非字词字符(\w 语言元素)之间的边界上。字词字符由字母数字字符和下划线组成;非字词字符是任何不是字母数字或下划线的字符。匹配也可能出现在字符串开头或结尾的字边界上。 \b 定位点经常用于确保子表达式匹配整个字而不只是匹配字的开头或结尾。</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">字边界</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w 匹配任何字词字符。字词字符是以下任何 Unicode 类别中的成员之一: Ll 字母,小写 Lu 字母,大写 Lt 字母,首字母大写 Lo 字母,其他 Lm 字母,修饰符 Mn 标记,非间距 Nd 数字,十进制数字 Pc 标点,连接符 如果指定了符合 ECMAScript 的行为,则 \w 等效于 [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">字词字符</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">是</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">零宽负向先行断言(即要成功匹配),输入字符串不得与子表达式中的正则表达式模式匹配。匹配的字符串未包含在匹配结果中。 零宽负向先行断言通常在正则表达式的开头或结尾使用。在正则表达式的开头,它可以定义一个特定模式,当正则表达式的开头定义类似但更多个要匹配的常规模式时,不应匹配该模式。在这种情况下,它通常用于限制回溯。在正则表达式的末尾,它可以定义无法在匹配结束时出现的子表达式。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">零宽负向先行断言</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">零宽负向后行断言(即要成功匹配),不得在输入字符串的当前位置左侧出现 "subexpression"。与 "subexpression" 不匹配的任何子字符串都不包含在匹配结果中。 零宽负向后行断言通常在正则表达式开头使用。它们定义的模式在后面的字符串中排除匹配。当捕获组中的最后一个字符不能是与该组的正则表达式模式匹配的一个或多个字符时,它们也用于限制回溯。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">零宽负向后行断言</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">零宽正向先行断言(即要成功匹配),输入字符串必须与 "subexpression" 中的正则表达式模式匹配。匹配结果中不包括匹配的子字符串。零宽正向先行断言不回溯。 零宽正向先行断言通常出现在正则表达式模式的末尾。它定义一个子字符串,该字符串必须位于字符串的末尾(以便匹配发生)但不应包含在匹配中。它对于防止过度回溯也很有用。可以使用零宽正向先行断言来确保特定捕获的组以与为捕获的组定义的模式的子集匹配的文本开头。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">零宽正向先行断言</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">零宽正向后行断言(即要成功匹配),"subexpression" 必须出现在输入字符串的当前位置左侧。匹配结果中不包含 "subexpression"。零宽正向后行断言不会回溯。 零宽正向后行断言通常在正则表达式开头使用。它们定义的模式是匹配项的前提条件,尽管它不是匹配结果的一部分。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">零宽正向后行断言</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">不更新在元数据中发现的相关方法签名。</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">不支持删除文档</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">删除 "async" 修饰符</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">删除不必要的转换</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">删除未使用的变量</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">将 "{0}" 替换为 "{1}"</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">解决冲突标记</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">原始编辑</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">对可访问性修饰符排序</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">拆分为连续的 "{0}" 语句</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">拆分为嵌套的 "{0}" 语句</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">流必须支持读取和搜寻操作。</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">抑制 {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: 释放未托管的资源(未托管的对象)并重写终结器</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: 仅当“{0}”拥有用于释放未托管资源的代码时才替代终结器</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">目标类型匹配</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">包含类型“{1}”的程序集“{0}”引用了 .NET Framework,而此操作不受支持。</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">所选内容包含不带声明的本地函数调用。</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">(?()|) 中的 | 太多</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">")" 太多</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">无法读取源文件 "{0}" 或为包含项目生成的 PDB。在调试期间对此文件所做的任何更改都不会应用,直到其内容与生成的源匹配为止。</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">未知属性</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">未知属性“{0}”</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">无法识别的控制字符</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">无法识别的转义序列 \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">无法识别的分组构造</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">[] 集未关闭</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">(?#...) 注释未关闭</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">展开所有参数</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">展开打开所有参数</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">展开和缩进所有参数</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">展开和缩进所有参数</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">展开参数列表</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">展开调用链</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">展开表达式</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">展开参数列表</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">对 lambda 表达式使用块主体</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">对 lambda 表达式使用表达式正文</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">使用内插的逐字字符串</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">警告: 转换语句时,语义可能出现变化。</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">包装并对齐调用链</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">环绕和对齐表达式</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">包装并对齐长调用链</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">包装调用链</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">包装每个参数</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">包装每个参数</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">包装表达式</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">包装长参数列表</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">包装长调用链</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">包装长参数列表</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">换行</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">可使用导航栏切换上下文。</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">“{0}”不能为 null 或空。</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">“{0}”不能为 null 或空白。</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">“{0}”在此处不为 null。</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">“{0}”可能在此处为 null。</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">千万分之一秒</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffffff" 自定义格式说明符表示秒部分的七个最高有效位;即在日期和时间值中表示千万分之一秒数。 虽然时间值的秒部分可以显示到千万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">千万分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFFF" 自定义格式说明符表示秒部分的七个最高有效位;即在日期和时间值中表示千万分之一秒数。但不显示尾随零或七个零位。 虽然时间值的秒部分可以显示到千万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">百万分之一秒</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffffff" 自定义格式说明符表示秒部分的六个最高有效位;即在日期和时间值中表示百万分之一秒数。 虽然时间值的秒部分可以显示到百万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">百万分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFF" 自定义格式说明符表示秒部分的六个最高有效位;即在日期和时间值中表示百万分之一秒数。但不显示尾随零或六个零位。 虽然时间值的秒部分可以显示到百万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">十万分之一秒</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffff" 自定义格式说明符表示秒部分的五个最高有效位;即在日期和时间值中表示十万分之一秒数。 虽然时间值的秒部分可以显示到十万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">十万分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFF" 自定义格式说明符表示秒部分的五个最高有效位;即在日期和时间值中表示十万分之一秒数。但是,不显示尾随零或五个零位。 虽然时间值的秒部分可以显示到十万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">万分之一秒</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffff" 自定义格式说明符表示秒部分的四个最高有效位;即在日期和时间值中表示万分之一秒数。 虽然时间值的秒部分可以显示到万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">万分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFF" 自定义格式说明符表示秒部分的四个最高有效位;即在日期和时间值中表示万分之一秒数。但是,不显示尾随零或四个零位。 虽然时间值的秒部分可以显示到万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">千分之一秒</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">"fff" 自定义格式说明符表示秒部分的三个最高有效位;即表示日期和时间值中的毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">千分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">"FFF" 自定义格式说明符表示秒部分的三个最高有效位;即表示日期和时间值中的毫秒。但不显示尾随零或三个零位。</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">百分之一秒</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">"ff" 自定义格式说明符表示秒部分的两个最高有效位;即在日期和时间值中表示百分之一秒数。</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">百分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">"FF" 自定义格式说明符表示秒部分的两个最高有效位;即在日期和时间值中表示百分之一秒数。但不显示尾随零或两个零位。</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">十分之一秒</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">十分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">"F" 自定义格式说明符表示秒部分的最高有效位;即在日期和时间值中表示十分之一秒数。如果数字为零,则不显示任何内容。 如果使用 "F" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "F" 标准日期和时间格式说明符。 ParseExact、TryParseExact、ParseExact 或 TryParseExact 方法中的 "F" 格式说明符的数目指示能够成功分析的字符串的秒部分的最高有效位的最大数目。</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12 小时制(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"h" 自定义格式说明符将小时表示为从 1 到 12 的数字;即通过 12 小时制表示小时,自午夜或中午开始对整小时计数。因此,午夜后经过的某特定小时数与中午过后的相同小时数无法加以区分。小时数不进行舍入,一位数字的小时数设置为不带前导零的格式。例如,给定上午或下午时间为 5:43,则此自定义格式说明符显示为 "5"。 如果使用 "h" 格式说明符而没有其他自定义格式说明符,该说明符将被解释为标准日期和时间格式说明符,并引发 FormatException。</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12 小时制(2 位数)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">"hh" 自定义格式说明符(另加任意数量的其他 "h" 说明符)将小时表示为从 01 到 12 的数字;即通过 12 小时制表示小时,因此,午夜后经过的某特定小时数与中午过后的相同小时数无法加以区分。小时数不进行舍入,一位数字的小时数设置为带前导零的格式。例如,给定上午或下午时间为 5:43,则此格式说明符显示为 "05"。</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24 小时制(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"H" 自定义格式说明符将小时表示为从 0 至 23 的数字,即通过从零开始的 24 小时制表示小时,自午夜开始对小时计数。一位数字的小时数设置为不带前导零的格式。 如果使用 "H" 格式说明符而没有其他自定义格式说明符,该说明符将被解释为标准日期和时间格式说明符,并引发 FormatException。</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24 小时制(2 位数)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">"HH" 自定义格式说明符(另加任意数量的 "H" 说明符)将小时表示为从 00 至 23 的数字,即通过从零开始的 24 小时制表示小时,自午夜开始对小时计数。一位数字的小时数设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">代码</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">日期分隔符</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"/" 自定义格式说明符表示用于区分年、月和日的日期分隔符。可从当前或指定区域性的 DateTimeFormatInfo.DateSeparator 属性中检索适当的本地化日期分隔符。 注意: 若要更改特定日期和时间字符串的日期分隔符,需要在文本字符串分隔符中指定分隔符字符。例如,自定义格式字符串 mm'/'dd'/'yyyy 会生成一个结果字符串,其中 "/" 始终用作日期分隔符。若要更改某个区域性的所有日期的日期分隔符,请更改当前区域性的 DateTimeFormatInfo.DateSeparator 属性的值,或者实例化 DateTimeFormatInfo 对象,并将该字符分配给它的 DateSeparator 属性,然后调用包含 IFormatProvider 参数的格式设置方法的重载。 如果使用 "/" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为标准日期和时间格式说明符,并引发 FormatException。</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">一月中某天(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">"d" 自定义格式说明符将一月中某天表示为从 1 至 31 的数字。一位数字的日期设置为不带前导零的格式。 如果使用 "d" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "d" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">一月中某天(2 位数)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">"dd" 自定义格式字符串将将一月中某天表示为从 01 至 31 的数字。一位数字的日期设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">一周中某天(缩写)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">"ddd" 自定义格式说明符表示一周中某天的缩写名称。可从当前或指定区域性的 DateTimeFormatInfo.AbbreviatedDayNames 属性中检索一周中某天的本地化缩写名称。</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">一周中某天(完整)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">"dddd" 自定义格式说明符(另加任意数量的其他 "d" 说明符)表示一周中某天的完整名称。可从当前或指定区域性的 DateTimeFormatInfo.DayNames 属性中检索一周中某天的本地化名称。</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">放弃</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">从元数据</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">完整长日期/时间</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">"F" 标准格式说明符表示由当前 DateTimeFormatInfo FullDateTimePattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的自定义格式字符串为 "dddd, dd MMMM yyyy HH:mm:ss"。</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">完整短日期/时间</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">完整日期短时间("f")格式说明符 "f" 标准格式说明符表示长日期("D")和短时间("t")模式组合,用空格分隔。</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">常规长日期/时间</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">"G" 标准格式说明符表示短日期("d")和长时间("T")模式组合,用空格分隔。</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">常规短日期/时间</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">"g" 标准格式说明符表示短日期("d")和短时间("t")模式组合,用空格分隔。</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">泛型重载</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">多个泛型重载</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">在 {0} ({1} - {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">在源(属性)中</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">长日期</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">"D" 标准格式说明符表示由当前 DateTimeFormatInfo LongDatePattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的自定义格式字符串为 "dddd, dd MMMM yyyy"。</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">长时间</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">"T" 标准格式说明符表示由特定区域性的 DateTimeFormatInfo.LongTimePattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的自定义格式字符串为 "HH:mm:ss"。</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0}“{1}”</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">分钟(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">"m" 自定义格式说明符将分钟表示为从 0 到 59 的数字。分钟表示自前一小时后经过的整分钟数。一位数字的分钟数设置为不带前导零的格式。 如果使用 "m" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "m" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">分钟(2 位数)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">"mm" 自定义格式说明符(另加任意数量的其他 "m" 说明符)将分钟表示为从 00 至 59 的数字。分钟表示自前一小时后经过的整分钟数。一位数字的分钟数设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">月(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">"M" 自定义格式说明符将月份表示为从 1 至 12 (如果日历包含 13 个月,则为从 1 到 13)的数字。一位数字的月份设置为不带前导零的格式。 如果使用 "M" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "M" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">月(2 位数)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">"MM" 自定义格式说明符将月份表示为从 01 至 12 (如果日历包含 13 个月,则为从 1 到 13)的数字。一位数字的月份设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">月(缩写)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">"MMM" 自定义格式说明符表示月份的缩写名称。可从当前或指定区域性的 DateTimeFormatInfo.AbbreviatedMonthNames 属性中检索月份的本地化缩写名称。</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">月日</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">"M" 或 "m" 标准格式说明符表示由当前 DateTimeFormatInfo.MonthDayPattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的自定义格式字符串为 "MMMM dd"。</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">月(完整)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">"MMMM" 自定义格式说明符表示月份的完整名称。可从当前或指定区域性的 DateTimeFormatInfo.MonthNames 属性中检索月份的本地化名称。</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">重载</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">多个重载</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} 关键字</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">封装字段:“{0}”(并使用属性)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">封装字段:“{0}”(但仍使用字段)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">封装字段 (并使用属性)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">封装字段 (但仍使用字段)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">无法提取接口:所选内容不在类/接口/结构中。</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">无法提取接口:此类型不含任何可以提取到接口的成员。</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">不能构造最终树</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">参数的类型或返回类型不能为匿名类型:[{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">所选内容不含活动语句。</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">所选内容含错误或未知类型。</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">类型参数“{0}”被另一类型参数“{1}”隐藏。</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">变量的地址在选定代码内使用。</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">分配到只读字段必须在构造函数: [{0}] 中完成。</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">生成的代码与代码隐藏部分重叠</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">将可选参数添加到“{0}”</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">将参数添加到“{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">生成委托构造函数“{0}({1})”</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">生成构造函数 “{0}({1})”</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">生成字段分配构造函数“{0}({1})”</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">生成 Equals 和 GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">生成 Equals(object)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">生成 GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">在“{0}”中生成构造函数</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">生成所有</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">生成枚举成员“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">生成常数“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">生成只读属性“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">生成属性“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">生成只读字段“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">生成字段“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">生成本地“{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">在新文件中生成 {0}“{1}”</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">生成嵌套的 {0}“{1}”</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">全局命名空间</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">以抽象方式实现接口</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">通过“{0}”实现接口</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">实现接口</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">为“{0}”引入字段</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">为“{0}”引入本地</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">为“{0}”引入常量</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">为“{0}”引入局部常量</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">为出现的所有“{0}”引入字段</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">为出现的所有“{0}”引入本地</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">为出现的所有“{0}”引入常量</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">为出现的所有“{0}”引入局部常量</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">为出现的所有“{0}”引入查询变量</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">为“{0}”引入查询变量</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">匿名类型:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">是</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">表示将在运行时解析其操作的对象</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">常量</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">字段</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">局部常量</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">局部变量</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">标签</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">期间/周期</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">"g" 或 "gg" 自定义格式说明符(另加任意数量的其他 "g" 说明符)表示期间或纪元,如果要设置格式的日期不具有关联的时期或纪元字符串,则格式操作将忽略该说明符。 如果使用 "g" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "g" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">范围变量</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">参数</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">隶属</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">摘要:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">局部变量和参数</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">类型参数:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">返回结果:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">异常:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">言论:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">不支持为此类型符号生成源</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">程序集</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">未知的位置</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">意外的接口成员种类:{0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">未知符号种类</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">生成抽象属性“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">生成抽象方法“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">生成方法“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">已从“{0}”中加载请求的程序集。</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">此符号无图标。</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">异步方法不能包含 ref/out 参数:[{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">此成员是在元数据中定义的。</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">只能更改构造函数、索引器、方法或委托的签名。</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">此符号在元数据中有相关定义或引用。更它的签名可能会造成生成错误。 想要继续吗?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">更改签名...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">生成新类型...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">用户诊断分析器失败。</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">分析器“{0}”抛出类型为“{1}”的异常,并显示消息“{2}”。</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">分析器“{0}”引发了以下异常: “{1}”。</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">简化名称</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">简化成员访问</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">删除限定</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">发生未知错误</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">可用</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">不可用 ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">在源中</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">在禁止显示文件中</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">删除禁止显示 {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">删除禁止显示</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;挂起&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">注意: 两次 Tab 插入“{0}”片段。</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">通过释放模式显式实现接口</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">通过释放模式实现接口</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">对 {0}(当前为“{1}”) 进行重新分类</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">参数不能具有 null 元素。</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">参数不能为空。</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">分析器不支持 ID 为“{0}”的报告的诊断。</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">正在计算“修复所有出现的地方”代码修复...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">修复所有出现的地方</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">文档</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">项目</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">解决方案</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: 释放托管状态(托管对象)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: 将大型字段设置为 null</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">编译器</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">活动</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">enum 值</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">const 字段</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">方法</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">运算符</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">构造函数</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">自动属性</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">属性</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">事件访问器</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">rfc1123 日期/时间</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"R" 或 "r" 标准格式说明符表示由 DateTimeFormatInfo.RFC1123Pattern 属性定义的自定义日期和时间格式字符串。模式反映已定义的标准,并且属性是只读的。因此,无论使用何种区域性或提供格式提供程序,它始终是相同的。自定义格式字符串为 "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'"。使用此标准格式说明符时,格式设置或分析操作始终使用固定区域性。</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">往返日期/时间</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">"O" 或 "o" 标准格式说明符表示使用以下模式的自定义日期和时间格式字符串: 该模式保留时区信息并发出符合 ISO 8601 的结果字符串。对于 DateTime 值,此格式说明符旨在保留日期和时间值以及文本中的 DateTime.Kind 属性。如果将样式参数设置为 DateTimeStyles.RoundtripKind,则可使用 DateTime.Parse(String, IFormatProvider, DateTimeStyles)或 DateTime.ParseExact 方法对格式化字符串进行重新分析。 "O" 或 "o" 标准格式说明符对应于 DateTime 值的 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" 自定义格式字符串和 DateTimeOffset 值的 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" 自定义格式字符串。在此字符串中,分隔单个字符的单引号标记对(如连字符、冒号和字母 "T")指示单个字符是不能更改的文本。撇号不会出现在输出字符串中。 "O" 或 "o" 标准格式说明符(以及 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" 自定义格式字符串)利用 ISO 8601 表示时区信息的三种方式保留日期时间值的 Kind 属性: DateTimeKind 日期和时间值的时区部分是相对于 UTC 的偏移量(例如 +01:00, -07:00)。所有 DateTimeOffset 值也以这种格式表示。 DateTimeKind 日期和时间值的时区部分使用 "Z" (代表零偏移量)表示 UTC。 DateTimeKind.Unspecified 日期和时间值不具有时区信息。 由于 "O" 或 "o" 标准格式说明符符合国际标准,因此使用该说明符的格式设置或分析操作始终使用固定区域性和公历。 可使用 "O" 或 "o" 格式说明符分析传递给 DateTime 和 DateTimeOffset 的 Parse、TryParse、ParseExact 和 TryParseExact 方法的字符串,如果字符串采用了这些格式的其中一种格式。对于 DateTime 对象,调用的分析重载还应包含值为 DateTimeStyles RoundtripKind 的样式参数。请注意,如果使用与 "O" 或 "o" 格式说明符对应的自定义格式字符串调用分析方法,则不会获得与 "O" 或 "o" 相同的结果。这是因为使用自定义格式字符串的分析方法无法分析缺少时区部分或使用 "Z" 指示 UTC 的日期和时间值的字符串表示形式。</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">秒(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">"S" 自定义格式说明符将秒表示为从 0 到 59 的数字。结果表示自前一分钟后经过的整秒数。一位数字的秒数设置为不带前导零的格式。 如果使用 "s" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "s" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">秒(2 位数</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">"ss" 自定义格式说明符(另加任意数量的其他 "s" 说明符)将秒表示为从 00 到 59 的数字。结果表示自前一分钟后经过的整秒数。一位数字的秒数设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">短日期</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">"D" 标准格式说明符表示由特定区域性的 DateTimeFormatInfo.ShortDatePattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的 ShortDatePattern 属性返回的自定义格式字符串为 "MM/dd/yyyy"。</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">短时间</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">"t" 标准格式说明符表示由当前 DateTimeFormatInfo.ShortTimePattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的自定义格式字符串为 "HH:mm"。</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">可排序日期/时间</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"s" 标准格式说明符表示由 DateTimeFormatInfo.SortableDateTimePattern 属性定义的自定义日期和时间格式字符串。该模式反映已定义的标准(ISO 8601),并且该属性是只读的。因此,无论使用何种区域性或提供格式提供程序,它始终是相同的。自定义格式字符串为 "yyyy'-'MM'-'dd'T'HH':'mm':'ss"。 "s" 格式说明符的用途是生成结果字符串,该字符串根据日期和时间值以升序或降序顺序进行排序。因此,尽管 "s" 标准格式说明符以一致的格式表示日期和时间值,但该格式设置操作不会修改设置为反映其 DateTime.Kind 属性或其 DateTimeOffset.Offset 值的 date 和 time 对象的值。例如,通过设置日期和时间值(2014-11-15T18:32:17+00:00 和 2014-11-15T18:32:17+08:00)的格式生成的结果字符串是相同的。 使用此标准格式说明符时,格式设置或分析操作始终使用固定区域性。</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">静态构造函数</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'“symbol” 不能为命名空间。</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">时间分隔符</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">":" 自定义格式说明符表示用于区分小时、分钟和秒的时间分隔符。可从当前或指定区域性的 DateTimeFormatInfo.TimeSeparator 属性中检索适当的本地化时间分隔符。 注意: 若要更改特定日期和时间字符串的时间分隔符,请在文本字符串分隔符中指定分隔符字符。例如,自定义格式字符串 hh'_'dd'_'ss 生成一个结果字符串,其中 "_" (下划线)始终用作时间分隔符。若要更改某个区域性的所有日期的时间分隔符,请更改当前区域性的 DateTimeFormatInfo.TimeSeparator 属性的值,或者实例化 DateTimeFormatInfo 对象,并将该字符分配给它的 TimeSeparator 属性,然后调用包含 IFormatProvider 参数的格式设置方法的重载。 如果使用 ":" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为标准日期和时间格式说明符,并引发 FormatException。</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">时区</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"K" 自定义格式说明符表示日期和时间值的时区信息。将此格式说明符与 DateTime 值一起使用时,结果字符串由 DateTime.Kind 属性的值定义: 对于本地时区(DateTimeKind.Local 的 DateTime.Kind 属性值),此说明符等效于 "zzz" 说明符,并生成包含协调世界时(UTC)的本地偏移量的结果字符串;例如 "-07:00"。 对于 UTC 时间(DateTimeKind.Utc 的 DateTime.Kind 属性值),结果字符串包含表示 UTC 日期的 "Z" 字符。 对于未指定时区的时间(其 DateTime.Kind 属性等于 DateTimeKind.Unspecified 的时间),其结果等效于 String.Empty。 对于 DateTimeOffset 值,"K" 格式说明符等效于 "zzz" 格式说明符,并生成一个包含来自 UTC 的 DateTimeOffset 值偏移量的结果字符串。 如果使用 "K" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为标准日期和时间格式说明符,并引发 FormatException。</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">类型约束</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">类型形参</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">属性</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">使用属性替代“{0}”和“{1}”</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">使用属性替代“{0}”</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">隐式引用的方法</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">生成类型“{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">生成 {0}“{1}”</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">将“{0}”更改为“{1}”。</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">无法使用属性替代非被调用方法。</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">只有带一个参数,不是化出变量声明的方法可以使用属性进行替换。</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">无法从 {1}: {2} 创建分析器实例 {0}。</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">程序集 {0} 不包含任何分析器。</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">无法加载分析器程序集 {0}: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">使方法同步</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">自 {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">查找并安装最新版本</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">使用本地版本“{0}”</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">使用本地安装的“{0}”版本“{1}” 此版本用于: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">查找并安装最新版本的“{0}”</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">使用包管理器安装...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">安装“{0} {1}”</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">安装版本“{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">生成变量 {0}</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">类</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">常量</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">委托</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">枚举</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">事件</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">扩展方法</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">字段</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">接口</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">局部变量</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">方法</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">模块</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">命名空间</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">属性</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">结构</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">参数:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">可变参数 SignatureHelpItem 必须有至少一个参数。</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">将“{0}”替换为方法</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">将“{0}”替换为方法</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">隐式引用的属性</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">不能将属性安全地替换为方法调用</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">转换为插补字符串</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">将类型移动到 {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">将文件重命名为 {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">将类型重命名为 {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">删除标记</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">添加缺少的参数节点</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">将包含范围改为 Async</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">将包含范围改为 Async (返回“任务”)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(未知)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">使用框架类型</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">安装包“{0}”</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">项目 {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">完全限定“{0}”</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">删除对“{0}”的引用。</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">关键字</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">片段</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">全部小写</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">全部大写</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">第一个单词首字母大写</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">帕斯卡拼写法</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">删除文档“{0}”</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">添加文档“{0}”</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">添加参数名“{0}”</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">采用“{0}”</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">二者均采用</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">采用底值</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">采用顶值</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">删除未使用的变量</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">转换为二进制</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">转换为十进制</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">转换为十六进制</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">分隔千分位</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">分隔单词</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">分隔半字节</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">删除分隔符</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">将参数添加到“{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">生成构造函数...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">选择成员用作构造函数参数</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">选择成员用于 Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">生成重写...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">选择成员进行重写</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">添加 null 检查</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">添加 "string.IsNullOrEmpty" 检查</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">添加 "string.IsNullOrWhiteSpace" 检查</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">初始化字段“{0}”</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">初始化属性“{0}”</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">添加 null 检查</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">生成运算符</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">实现 {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">报告的诊断“{0}”的源位置位于文件“{1}”中,后者不是要分析的编译的一部分。</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">报告的诊断“{0}”的源位置“{1}”位于文件“{2}”中,后者不是给定文件。</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">在 {0} (项目 {1})中</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">添加可访问性修饰符</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">将声明移动至引用附近</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">转换为完整属性</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">警告: 方法将替代元数据中的符号</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">使用 {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">添加参数名“{0}”(包括尾随参数)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">本地函数</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">索引器</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">别名多义类型“{0}”</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">警告: 迭代期间已修改集合。</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">警告: 迭代变量跨函数边界。</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">警告: 迭代期间可能修改集合。</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">通用完整日期/时间</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">"U" 标准格式说明符表示由指定区域性的 DateTimeFormatInfo.FullDateTimePattern 属性定义的自定义日期和时间格式字符串。模式与 "F" 模式相同。但在 DateTime 值进行格式设置之前,该值将自动转换为 UTC。</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">通用可排序日期/时间</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">"U" 标准格式说明符表示由 DateTimeFormatInfo.UniversalSortableDateTimePattern 属性定义的自定义日期和时间格式字符串。模式反映已定义的标准,并且属性是只读的。因此,无论使用何种区域性或提供格式提供程序,它始终是相同的。自定义格式字符串为 "yyyy'-'MM'-'dd HH':'mm':'ss'Z'"。使用此标准格式说明符时,格式设置或分析操作始终使用固定区域性。 虽然结果字符串应将时间表示为协调世界时(UTC),但在格式设置操作期间不执行原始日期时间值的转换。因此,在设置 DateTime 格式之前,必须通过调用 DateTime.ToUniversalTime 方法将 DateTime 值转换为 UTC。</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">更新包含成员的用法</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">更新包含项目中的用法</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">更新包含类型中的用法</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">更新相关项目中的用法</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">utc 小时和分钟偏移量</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">对于 DateTime 值,"zzz" 自定义格式说明符表示本地操作系统的时区与 UTC 的有符号偏移量,以小时和分钟度量。它不反映实例的 DateTime.Kind 属性的值。因此,不建议将 "zzz" 格式说明符用于 DateTime 值。 对于 DateTimeOffset 值,此格式说明符表示 DateTimeOffset 值与 UTC 的偏移量(以小时和分钟为单位)。 偏移量始终显示为带有前导符号。加号(+)表示小时数早于 UTC,减号(-)指示小时数迟于 UTC。一位数字的偏移量设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">utc 小时偏移量(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">对于 DateTime 值,"z" 自定义格式说明符表示本地操作系统的时区与协调世界时(UTC)的有符号偏移量(以小时为单位)。它不反映实例的 DateTime.Kind 属性的值。因此,不建议将 "z" 格式说明符用于 DateTime 值。 对于 DateTimeOffset 值,此格式说明符表示 DateTimeOffset 值与 UTC 的偏移量(以小时为单位)。 偏移量始终显示为带有前导符号。加号(+)表示小时数早于 UTC,减号(-)表示小时数迟于 UTC。一位数字的偏移量设置为不带前导零的格式。 如果使用 "z" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为标准日期和时间格式说明符,并引发 FormatException。</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">utc 小时偏移量(2 位数)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">对于 DateTime 值,"zz" 自定义格式说明符表示本地操作系统的时区与 UTC 之间的有符号偏移量(以小时为单位)。它不反映实例的 DateTime.Kind 属性的值。因此,建议不要将 "zz" 格式说明符与 DateTime 值一起使用。 对于 DateTimeOffset 值,此格式说明符表示 DateTimeOffset 值与 UTC 的偏移量(以小时为单位)。 偏移量始终显示为带前导的符号。加号(+)表示小时数早于 UTC,减号(-)表示小时数迟于 UTC。一位数字的偏移量设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">按相反顺序排列的 [x-y] 范围</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">年(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">"Y" 自定义格式说明符将年份表示为一位数字或两位数的数字。如果年份具有两个以上的数字,则结果中仅显示两个低序位数字。如果两位数年份的第一个数字以零开头(例如 2008),则该数字的格式没有前导零。 如果使用 "y" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "y" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">年(2 位数)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">"yy" 自定义格式说明符将年份表示为两位数字。如果年份具有两个以上的数字,则结果中仅显示两个低序位数字。如果两位数的年份的有效数字少于两个,则用前导零填充该数字以生成两个数字。 在分析操作中,使用 "yy" 自定义格式说明符分析的两位数年份根据格式提供程序当前日历的 Calendar.TwoDigitYearMax 属性进行解释。下面的示例使用 en-US 区域性的默认公历日历(在本例中为当前区域性)分析具有两位数年份的日期的字符串表示形式。然后更改当前区域性的 CultureInfo 对象,以使用其 TwoDigitYearMax 属性已被修改的 GregorianCalendar 对象。</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">年(3-4 位数)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">"yyy" 自定义格式说明符表示最少为三位的年份。如果年份有三个以上的有效数字,则结果字符串中会显示所有数字。如果年份少于三位数,则用前导零填充该数字以生成三位数。</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">年(4 位数字)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">"yyyy" 自定义格式说明符表示最少为四位的年份。如果年份有四个以上的有效数字,则结果字符串中会显示所有数字。如果年份少于四位数,则用前导零填充该数字以生成四位数。</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">年(5 位数)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">"yyyyy" 自定义格式说明符(另加任意数量的其他 "y" 说明符)表示最少为五位年份。如果年份具有五个以上的有效数字,则结果字符串中会显示所有数字。如果年份少于五位,则用前导零填充该数字以生成五个数字。 如果有其他 "y" 说明符,则用所需数量的前导零填充该数字,以生成 "y" 说明符。</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">年月</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">"Y" 或 "y" 标准格式说明符表示由指定区域性的 DateTimeFormatInfo.YearMonthPattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的自定义格式字符串为 "yyyy MMMM"。</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="zh-Hans" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM(缩写)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">"T" 自定义格式说明符表示 AM/PM 指示符的第一个字符。相应的本地化指示符从当前或特定区域性的 DateTimeFormatInfo.AMDesignator 或 DateTimeFormatInfo.PMDesignator 属性中进行检索。AM 指示符用于指示从 0:00:00 (午夜)到 11:59:59.999 的所有时间。PM 指示符用于指示从 12:00:00 (中午)到 23:59:59.999 的所有时间。 如果使用 "t" 格式说明符而未使用其他自定义格式说明符,则该说明符将被解释为 "t" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM(完整)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">"tt" 自定义格式说明符(另加任意数量的其他 "t" 说明符)表示整个 AM/PM 指示符。相应的本地化指示符从当前或特定区域性的 DateTimeFormatInfo.AMDesignator 或 DateTimeFormatInfo.PMDesignator 属性中进行检索。AM 指示符用于指示从 0:00:00(午夜)到 11:59:59.999 的所有时间。PM 指示符用于指示从 12:00:00 (中午)到 23:59:59.999 的所有时间。 请确保对需要维护 AM 和 PM 之间的差异的语言使用 "tt" 说明符。例如日语,其 AM 和 PM 指示符在第二个字符(而不是第一个字符)会不同。</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">负号必须是字符类中的最后一个元素</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">添加 "DebuggerDisplay" 属性</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">添加显式转换</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">添加成员名称</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">为所有参数添加 null 检查</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">将可选参数添加到构造函数</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">将参数添加到“{0}”(和重写/实现)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">将参数添加到构造函数</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">添加到“{0}”的项目引用。</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">添加到“{0}”的引用。</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">操作不能为空。</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">添加元组元素名称 "{0}"</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">对齐包装的参数</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">对齐包装参数</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">替换条件不能是注释</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">替换条件不捕获且不能命名</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">应用文件头首选项</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">应用对象/集合初始化首选项</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">等待任务返回“{0}”</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">等待任务没有返回任何值</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">基类包含无法访问的未实现成员</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">无法应用更改 - 意外错误:“{0}”</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">不能在字符范围内包含类 \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">捕获组编号必须小于等于 Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">捕获编号不能为零</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;推断&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;省略&gt;</target> <note /> </trans-unit> <trans-unit id="Change_namespace_to_0"> <source>Change namespace to '{0}'</source> <target state="translated">将命名空间更改为“{0}”</target> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">更改为全局命名空间</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">在出现异常而停止时禁止更改</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">在应用程序运行时,将不应用在项目“{0}”中所作的更改</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application"> <source>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</source> <target state="new">Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">配置 {0} 代码样式</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">配置 {0} 严重性</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">为所有“{0}”分析器配置严重性</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">为所有分析器配置严重性</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">转换为 LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">添加到“{0}”</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">转换为类</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">转换为 LINQ (调用形式)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">转换为记录</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">转换为记录结构</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">转换为结构</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">将类型转换为“{0}”</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">创建字段 "{0}" 并赋值</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">创建属性 "{0}" 并赋值</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">创建其余部分并赋值为字段</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">创建其余部分并赋值为属性</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">不要更改此代码。请将清理代码放入“{0}”方法中</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">源文件 "{0}" 的当前内容与生成的源不匹配。在调试期间对此文件所做的任何更改都不会应用,直到其内容与生成的源匹配为止。</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">文件必须包含在创建此服务的工作区中</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">编辑并继续</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">模块已禁用“编辑并继续”</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">在项目“{0}”中所作的更改将阻止调试会话继续: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">运行时不支持编辑并继续。</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">读取文件“{0}”时出错: {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">创建 CodeFixProvider 实例时出错</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">创建 CodeFixProvider“{0}”的实例时出错</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">示例:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">示例:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">记录的显示实施方法参数名必须匹配编辑器生成的等效“{0}”</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">提取基类...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">提取接口...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">提取本地函数</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">提取方法</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">未能分析 {0} 的数据流</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">修正格式</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">修正笔误“{0}”</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">设置文档的格式</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">设置文档格式</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">生成比较运算符</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">在“{0}”中生成构造函数(包含字段)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">在“{0}”中生成构造函数(包含属性)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">为 "{0}" 生成</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">生成参数 "{0}"</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">生成参数 {0}(和重写/实现)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">模式末尾的 \ 非法</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">x &gt; y 的 {x,y} 无效</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">显式实现 "{0}"</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">隐式实现 "{0}"</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">实现抽象类</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">显式实现所有接口</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">隐式实现所有接口</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">显式实现所有成员</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">显式实现</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">隐式实现</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">显式实现剩余成员</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">通过“{0}”实现</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">\p{X} 字符转义不完整</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">缩进所有参数</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">缩进所有参数</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">缩进包装的参数</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">缩进包装参数</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">内联“{0}”</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">内联并保留“{0}”</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">无效的十六进制数字</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">引入常量</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">介绍领域</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">引入局部</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">引入查询变量</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">组名无效: 组名必须以单词字符开头</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">将类设置为 "abstract"</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">设为静态</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">反转条件</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">格式错误</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">\p{X} 字符转义格式错误</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">名为“向后引用”的 \k&lt;...&gt; 格式不正确</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">与嵌套的 "{0}" 语句合并</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">与下一个 "{0}" 语句合并</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">与外部 "{0}" 语句合并</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">与上一个 "{0}" 语句合并</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} 必须返回支持读取和查找操作的流。</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">缺少控制字符</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">将内容移动到命名空间...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">将文件移至“{0}”</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">将文件移动到项目根文件夹</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">移动到命名空间...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">嵌套限定符 {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">没有插入方法调用的有效位置。</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">")" 不足</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">运算符</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">无法更新属性引用</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">向上拉 "{0}"</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">将 "{0}" 拉到 "{1}"</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">将成员拉到基类...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">将成员拉取到新的基类...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">限定符 {x,y} 前没有任何内容</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">对未定义组的引用</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">对未定义的组名 {0} 的引用</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">对未定义的组编号 {0} 的引用</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">所有控制字符。这包括 Cc、Cf、Cs、Co 和 Cn 类别。</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">所有控制字符</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">所有音调符号标记。这包括 "Mn"、"Mc" 和 "Me" 类别。</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">所有音调符号标记</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">所有字母字符。这包括 Lu、Ll、Lt、Lm 和 Lo 字符。</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">所有字母字符</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">所有数字。这包括 Nd、Nl 和 No 类别。</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">所有数字</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">所有标点字符。这包括 Pc、Pd、Ps、Pe、Pi、Pf 和 Po 类别。</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">所有标点字符</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">所有分隔符字符。这包括 Zs、Zl 和 Zp 类别。</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">所有分隔符字符</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">所有符号。这包括 Sm、Sc、Sk 和 So 类别。</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">所有符号</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">可以使用竖线(|)字符匹配一系列模式中的任何一个,其中 | 字符分隔每个模式。</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">替换</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">句点字符(.)匹配除 \n (换行符 \u000A)以外的任何字符。如果正则表达式模式已被 RegexOptions Singleline 选项修改,或者如果包含 ". " 字符类的模式部分已被 "s" 选项修改,则 ". " 可匹配任何字符。</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">任何字符</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">原子组(在其他一些正则表达式引擎中称为非回溯子表达式、原子子表达式或一次性子表达式)禁用回溯。正则表达式引擎将匹配输入字符串中的多个字符。当无进一步的匹配时,它将不回溯以尝试匹配备用模式。(也就是说,子表达式只匹配那些将单独由子表达式匹配的字符串;它不会尝试根据子表达式和其后的任何子表达式匹配字符串。) 如果你知道回溯不会成功,建议使用此选项。防止正则表达式引擎执行不必要的搜索可提高性能。</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">原子组</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">与退格键字符(\u0008)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">退格键字符</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">均衡组定义删除以前定义的组的定义,并在当前组中存储以前定义的组和当前组之间的时间间隔。 "name1" 是当前组(可选),"name2" 是以前定义的组,而 "subexpression" 是任何有效的正则表达式模式。均衡组定义将删除 name2 的定义,并在 name1 中存储 name2 和 name1 之间的间隔。如果未定义 name2 组,则匹配回溯。由于删除 name2 的最后一个定义会发现 name2 的上一个定义,此构造使你能够使用作为计数器的组的捕获堆栈来跟踪嵌套构造(如括号)或左括号和右括号。 均衡组定义使用 "name2" 作为堆栈。每个嵌套构造的开始字符都放在该组中并位于其组中。捕获集合。匹配结束字符时,将从组中删除其相应的左符号,并减小捕获集合 1。在所有嵌套构造的开始和结束字符都匹配后,"name1" 为空。</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">均衡组</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">基本组</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">与响铃(警告)字符(\u0007)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">响铃字符</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">与回车符(\u000D)匹配。请注意,\r 与换行符(\n)不等效。</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">回车符</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">字符类减法生成一组字符,这是从另一个字符类中排除一个字符类中的字符后得到的。 "base_group" 为正或为负的字符组或范围。"excluded_group" 组件是另一个为正或为负的字符组,或其他字符类减法表达式(即,可以嵌套字符类减法表达式)。</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">字符类减法</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">字符组</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">注释</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">此语言元素尝试匹配两种模式之一,具体取决于它是否可以与初始模式匹配。 "expression" 是要匹配的初始模式,如果表达式匹配,则 "yes" 是可匹配的模式;如果表达式不匹配,则 "no" 是可匹配的可选模式。。</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">条件表达式匹配</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">此语言元素尝试匹配两种模式之一,具体取决于它是否与指定的捕获组匹配。 "name" 是捕获组的名称(或编号),"yes" 是在 "name" (或 "number") 具有匹配项的情况下匹配的表达式,"no" 是没有匹配的情况下可匹配的可选表达式。</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">条件组匹配</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">\G 定位点指定匹配必须出现在上一个匹配结束的点。在 Regex.Matches 或 Match.NextMatch 方法中使用此定位点可确保所有匹配项都是连续的。</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">连续匹配</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">与 ASCII 控制字符匹配,其中 X 是控制字符的字母。例如, \cC 是 CTRL-C。</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">控制字符</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d 匹配任何十进制数字。它等效于 \p{Nd} 正则表达式模式,该模式包括标准十进制数字 0-9 以及许多其他字符集的小数位数。 如果指定了符合 ECMAScript 的行为,则 \d 等效于 [0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">十进制数字字符</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">数字符号(#)标记 x 模式注释,该注释从正则表达式模式结尾处的非转义 # 字符开始,一直持续到行尾。若要使用此构造,必须启用 x 选项(通过内联选项),或者在实例化 regex 对象或调用静态 regex 方法时向选项参数提供 RegexOptions 值。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">行尾注释</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">\z 定位点指定匹配必须出现在输入字符串的末尾。像 $ language 元素一样,\z 忽略了 RegexOptions 选项。与 \z 语言元素不同,\z 与字符串结尾的 \n 字符不匹配。因此,它只能匹配输入字符串的最后一行。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">仅字符串末尾</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">\Z 定位点指定匹配必须出现在输入字符串的末尾或输入字符串的结尾处的 \n 之前。它与 $ 定位点相同,只不过 \Z 忽略了 RegexOptions 选项。因此,在多行字符串中,它只能匹配最后一行的结尾或 \n 前的最后一行。 \Z 定位点匹配 \n 但不匹配 \r\n (CR/LF 字符组合)。若要匹配 CR/LF,请在正则表达式模式中包含 \r?\Z。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">字符串末尾或结束换行符之前</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">$ 定位点指定前面的模式必须出现在输入字符串的末尾或输入字符串结尾的 \n 之前。如果将 $ 与 RegexOptions 选项一起使用,则匹配也可以出现在行尾。 $ 定位点匹配 \n,但不匹配 \r\n (回车符和换行符的组合,或 CR/LF)。若要匹配 CR/LF 字符组合, 请在正则表达式模式中包括 \r?$。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">字符串或行的结尾</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">与转义字符(\u001B)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">转义字符</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">排除的组</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">表达式</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">与换页符(\u000C)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">换页符</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">此分组构造应用或禁用子表达式中的指定选项。在问号后指定要启用的选项,在减号后禁用的选项。允许的选项有: i 使用不区分大小写的匹配。 m 使用多行模式,其中 ^ 和 $ 分别匹配每行的开头和结尾 (而不是输入字符串的开头和结尾)。 s 使用单行模式,其中句点(.)与每个字符 (而不是除 \n 之外的每个字符)匹配。 n 请勿捕获未命名的组。唯一有效的捕获已被显式 命名为或编码为(?&lt;name&gt; subexpression)形式的组。 x 请删除模式中的非转义空格,并 在数字符号(#)之后使用注释。</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">组选项</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">与 ASCII 字符匹配,其中 ## 是两位数的十六进制字符代码。</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">十六进制转义符</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">(?# comment)构造允许在正则表达式中包括内联注释。尽管注释包含在 Regex 方法返回的字符串中,但正则表达式引擎不使用模式匹配中注释的任何部分。注释以第一个右括号结束。</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">内联注释</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">为正则表达式的其余部分启用或禁用特定模式匹配选项。在问号后面指定要启用的选项,在减号后指定要禁用的选项。允许的选项有: i 使用不区分大小写的匹配。 m 使用多行模式,其中 ^ 和 $ 分别匹配每行的开头和结尾 (而不是输入字符串的开头和结尾)。 s 使用单行模式,其中句点(.)与每个字符 (而不是除 \n 之外的每个字符)匹配。 n 请勿捕获未命名的组。唯一有效的捕获已被显式 命名为或编码为(?&lt;name&gt; subexpression)形式的组。 x 请删除模式中的非转义空格,并 在数字符号(#)之后使用注释。</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">内联选项</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">正则表达式问题: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">字母,小写</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">字母,修饰符</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">字母,其他</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">字母,首字母大写</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">字母,大写</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">标记,封闭</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">标记,非间距</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">标记,间距组合</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">{n,}? 限定符匹配前面的元素至少 n 次,其中 n 是任何整数,但次数尽可能少。它是贪婪限定符 {n,} 的惰性副本</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">至少匹配 "n" 次(惰性)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">{n,} 限定符匹配前面的元素至少 n 次,其中 n 是任何整数。{n,} 是贪婪限定符,其惰性等效值为 {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">至少匹配 "n" 次</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">{n,m}? 限定符匹配前面的元素 n 次和 m 次,其中 n 和 m 是整数,但次数尽可能少。它是贪婪限定符 {n, m} 的惰性副本</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">至少匹配 "n" 次(惰性)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">{n, m} 限定符匹配前面的元素至少 n 次,但不超过 m 次,其中 n 和 m 是整数。{n, m} 是贪婪限定符,其惰性等效值为 {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">匹配次数介于 "m" 次和 "n" 次之间</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">{n}? 限定符恰好匹配前面的元素 n 次,其中 n 是任何整数。它是贪婪限定符 {n}+ 的惰性副本</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">刚好匹配 "n" 次(惰性)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">{n} 限定符恰好匹配前面的元素 n 次,其中 n 是任何整数。{n} 是贪婪限定符,其惰性等效值为 {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">刚好匹配 "n" 次</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">+? 限定符匹配前面的元素一次或多次,但次数尽可能少。它是贪婪限定符 + 的惰性副本</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">匹配一次或多次(惰性)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">+ 限定符匹配前面的元素一次或多次。它等效于 {1,} 数量表示符。+ 是贪婪限定符,其惰性等效项为 +?。</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">匹配一次或多次</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">*? 限定符匹配前导元素零次或多次,但次数尽可能少。它是贪婪限定符 * 的惰性副本</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">匹配零次或多次(惰性)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">* 限定符匹配前面的元素零次或多次。它等效于 {0,} 数量表示符。* 是贪婪限定符,其惰性等效项为 *?。</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">匹配零次或多次</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">?? 限定符匹配前面的元素零次或一次,但次数尽可能少。它是贪婪限定符 ? 的惰性副本</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">匹配零次或一次(惰性)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">? 限定符匹配前面的元素零次或一次。它等效于 {0,1} 限定符。? 是贪婪限定符,其惰性等效项为 ??。</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">匹配零次或一次</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">此分组构造捕获匹配的 "subexpression",其中 "subexpression" 是任何有效的正则表达式模式。使用括号的捕获将根据正则表达式中左括号的顺序从 1 开始按从左到右的顺序自动编号。被编号为零的捕获是由整个正则表达式模式匹配的文本。</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">匹配的子表达式</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">名称</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">name1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">name2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">名称或数字</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">已命名或已编号的向后引用。 "name" 是在正则表达式模式中定义的捕获组的名称。</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">已命名的向后引用</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">捕获匹配的子表达式,以便按名称或按编号进行访问。 "name" 是有效的组名,而 "subexpression" 是任何有效的正则表达式模式。"name" 不得包含任何标点符号字符且不能以数字开头。 如果正则表达式模式匹配方法的 RegexOptions 参数包括 RegexOptions ExplicitCapture 标志,或者如果将 n 选项应用于此子表达式,则捕获子表达式的唯一方法是显式命名捕获组。</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">已命名匹配的子表达式</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">负字符组指定不能出现在匹配项的输入字符串中的字符列表。字符列表是单独指定的。 可以连接两个或更多字符范围。例如,若要指定从 "0" 到 "9" 的十进制数字范围、从 "a" 到 "f" 的小写字母范围以及从 "A" 到 "F" 的大写字母范围,请使用 [0-9a-fA-F]。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">负字符组</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">负字符范围指定不能出现在输入字符串中的字符列表,以使匹配发生。"firstCharacter" 是该范围的开始字符,而 "lastCharacter" 是该范围的结束字符。 可以连接两个或更多字符范围。例如,若要指定从 "0" 到 "9" 的十进制数字范围、从 "a" 到 "f" 的小写字母范围以及从 "A" 到 "F" 的大写字母范围,请使用 [0-9a-fA-F]。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">负字符范围</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">正则表达式构造 \P{name} 匹配不属于 Unicode 通用类别或命名块的任何字符,其中 "name" 是类别缩写或命名块名称。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">负 unicode 类别</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">与换行符(\u000A)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">换行符</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">否</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D 与任何非数字字符匹配。它等效于 \P{Nd} 正则表达式模式。 如果指定了符合 ECMAScript 的行为,则 \P 等效于 [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">非数字字符</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S 与任何非空格字符匹配。它等效于 [^\f\n\r\t\v\x85\p{Z}] 正则表达式模式,或与等效于 \s 的正则表达式模式(与空格字符匹配)的相反形式。 如果指定了符合 ECMAScript 的行为,则 \s 等效于 [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">非空格字符</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">\B 定位点指定匹配不得出现在字边界上。它与 \b 定位点相反。</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">非字边界</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\w 与任何非字词字符匹配。它匹配除以下 Unicode 类别中的任何字符: Ll 字母,小写 Lu 字母,大写 Lt 字母,首字母大写 Lo 字母,其他 Lm 字母,修饰符 Mn 标记,非间距 Nd 数字,十进制数字 Pc 标点,连接符 如果指定了符合 ECMAScript 的行为,则 \W 等效于 [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">非字词字符</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">此构造不捕获由子表达式匹配的子字符串: 在将限定符应用于组时,通常使用非捕获组构造,但组捕获的子字符串不具有任何意义。 如果正则表达式包含嵌套的分组构造,则外部非捕获组构造不适用于内部嵌套的组构造。</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">非捕获组</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">数字,十进制数字</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">数字,字母</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">数字,其他</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">一个带编号的向后引用,其中 "number" 是正则表达式中捕获组的序号位置。例如,\4 与第四个捕获组的内容匹配。 八进制转义码(例如 \16) 和使用相同表示法的 \number 向后引用之间存在二义性。如果多义性是一个问题,则可以使用 \k&lt;name&gt; 表示法,该符号是明确的,不能与八进制字符代码混淆。同样,十六进制代码(如 \xdd)是明确的,不能与向后引用混淆。</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">带编号的向后引用</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">其他,控件</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">其他,格式</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">其他,未分配</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">其他,专用</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">其他,代理项</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">正字符组指定字符列表,其中的任何一个字符都可能出现在输入字符串中,以使匹配发生。</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">正字符组</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">正字符范围指定一个字符范围,其中的任何一个字符都可能出现在输入字符串中,以使匹配发生。 "firstCharacter" 是该范围的起始字符,而 "lastCharacter" 是该范围的结束字符。</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">正字符范围</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">标点,结束</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">标点,连接符</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">标点,短划线</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">标点,右引号</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">标点,左引号</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">标点,开始</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">标点,其他</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">分隔符,行</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">分隔符,段落</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">分隔符,空格</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">\A 定位点指定匹配必须出现在输入字符串的开头。它与 ^ 定位点相同,只不过 \A 忽略了 RegexOptions 选项。因此,它只能匹配多行输入字符串中第一行的开头。</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">仅字符串的开头</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">^ 定位点指定以下模式必须从字符串的第一个字符位置开始。如果使用 ^ 和 RegexOptions 选项,则匹配必须出现在每行的开头。</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">字符串或行的开头</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">子表达式</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">符号,货币</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">符号,数学</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">符号,修饰符</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">符号,其他</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">与制表符(\u0009)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">制表符</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">正则表达式构造 \p{name} 匹配属于 Unicode 通用类别或命名块的任何字符,其中 "name" 是类别缩写或命名块名称。</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">Unicode 类别</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">与值为 ####十六进制的 utf-16 代码单元匹配。</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">Unicode 转义</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Unicode 通用类别: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">与垂直制表符(\u000B)匹配</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">垂直制表符</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s 与任何空格字符匹配。它等效于以下转义序列和 Unicode 类别: \f 换页符 \u000C \n 换行符 \u000A \rr 回车符 \u000D \t 制表符 \u0009 \v 垂直制表符 \u000B \x85 省略号或下一行(NEL)字符(…) \u0085 \p{Z} 匹配任何分隔符字符 如果指定了符合 ECMAScript 的行为,则 \s 等效于 [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">空格字符</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">\b 定位点指定匹配必须出现在字词字符(\w 语言元素)和非字词字符(\w 语言元素)之间的边界上。字词字符由字母数字字符和下划线组成;非字词字符是任何不是字母数字或下划线的字符。匹配也可能出现在字符串开头或结尾的字边界上。 \b 定位点经常用于确保子表达式匹配整个字而不只是匹配字的开头或结尾。</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">字边界</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w 匹配任何字词字符。字词字符是以下任何 Unicode 类别中的成员之一: Ll 字母,小写 Lu 字母,大写 Lt 字母,首字母大写 Lo 字母,其他 Lm 字母,修饰符 Mn 标记,非间距 Nd 数字,十进制数字 Pc 标点,连接符 如果指定了符合 ECMAScript 的行为,则 \w 等效于 [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">字词字符</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">是</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">零宽负向先行断言(即要成功匹配),输入字符串不得与子表达式中的正则表达式模式匹配。匹配的字符串未包含在匹配结果中。 零宽负向先行断言通常在正则表达式的开头或结尾使用。在正则表达式的开头,它可以定义一个特定模式,当正则表达式的开头定义类似但更多个要匹配的常规模式时,不应匹配该模式。在这种情况下,它通常用于限制回溯。在正则表达式的末尾,它可以定义无法在匹配结束时出现的子表达式。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">零宽负向先行断言</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">零宽负向后行断言(即要成功匹配),不得在输入字符串的当前位置左侧出现 "subexpression"。与 "subexpression" 不匹配的任何子字符串都不包含在匹配结果中。 零宽负向后行断言通常在正则表达式开头使用。它们定义的模式在后面的字符串中排除匹配。当捕获组中的最后一个字符不能是与该组的正则表达式模式匹配的一个或多个字符时,它们也用于限制回溯。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">零宽负向后行断言</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">零宽正向先行断言(即要成功匹配),输入字符串必须与 "subexpression" 中的正则表达式模式匹配。匹配结果中不包括匹配的子字符串。零宽正向先行断言不回溯。 零宽正向先行断言通常出现在正则表达式模式的末尾。它定义一个子字符串,该字符串必须位于字符串的末尾(以便匹配发生)但不应包含在匹配中。它对于防止过度回溯也很有用。可以使用零宽正向先行断言来确保特定捕获的组以与为捕获的组定义的模式的子集匹配的文本开头。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">零宽正向先行断言</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">零宽正向后行断言(即要成功匹配),"subexpression" 必须出现在输入字符串的当前位置左侧。匹配结果中不包含 "subexpression"。零宽正向后行断言不会回溯。 零宽正向后行断言通常在正则表达式开头使用。它们定义的模式是匹配项的前提条件,尽管它不是匹配结果的一部分。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">零宽正向后行断言</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">不更新在元数据中发现的相关方法签名。</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">不支持删除文档</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">删除 "async" 修饰符</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">删除不必要的转换</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">删除未使用的变量</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">将 "{0}" 替换为 "{1}"</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">解决冲突标记</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">原始编辑</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">对可访问性修饰符排序</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">拆分为连续的 "{0}" 语句</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">拆分为嵌套的 "{0}" 语句</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">流必须支持读取和搜寻操作。</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">抑制 {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: 释放未托管的资源(未托管的对象)并重写终结器</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: 仅当“{0}”拥有用于释放未托管资源的代码时才替代终结器</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">目标类型匹配</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">包含类型“{1}”的程序集“{0}”引用了 .NET Framework,而此操作不受支持。</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">所选内容包含不带声明的本地函数调用。</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">(?()|) 中的 | 太多</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">")" 太多</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">无法读取源文件 "{0}" 或为包含项目生成的 PDB。在调试期间对此文件所做的任何更改都不会应用,直到其内容与生成的源匹配为止。</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">未知属性</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">未知属性“{0}”</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">无法识别的控制字符</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">无法识别的转义序列 \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">无法识别的分组构造</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">[] 集未关闭</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">(?#...) 注释未关闭</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">展开所有参数</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">展开打开所有参数</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">展开和缩进所有参数</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">展开和缩进所有参数</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">展开参数列表</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">展开调用链</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">展开表达式</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">展开参数列表</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">对 lambda 表达式使用块主体</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">对 lambda 表达式使用表达式正文</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">使用内插的逐字字符串</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">警告: 转换语句时,语义可能出现变化。</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">包装并对齐调用链</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">环绕和对齐表达式</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">包装并对齐长调用链</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">包装调用链</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">包装每个参数</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">包装每个参数</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">包装表达式</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">包装长参数列表</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">包装长调用链</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">包装长参数列表</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">换行</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">可使用导航栏切换上下文。</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">“{0}”不能为 null 或空。</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">“{0}”不能为 null 或空白。</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">“{0}”在此处不为 null。</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">“{0}”可能在此处为 null。</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">千万分之一秒</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffffff" 自定义格式说明符表示秒部分的七个最高有效位;即在日期和时间值中表示千万分之一秒数。 虽然时间值的秒部分可以显示到千万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">千万分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFFF" 自定义格式说明符表示秒部分的七个最高有效位;即在日期和时间值中表示千万分之一秒数。但不显示尾随零或七个零位。 虽然时间值的秒部分可以显示到千万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">百万分之一秒</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffffff" 自定义格式说明符表示秒部分的六个最高有效位;即在日期和时间值中表示百万分之一秒数。 虽然时间值的秒部分可以显示到百万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">百万分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFF" 自定义格式说明符表示秒部分的六个最高有效位;即在日期和时间值中表示百万分之一秒数。但不显示尾随零或六个零位。 虽然时间值的秒部分可以显示到百万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">十万分之一秒</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffff" 自定义格式说明符表示秒部分的五个最高有效位;即在日期和时间值中表示十万分之一秒数。 虽然时间值的秒部分可以显示到十万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">十万分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFF" 自定义格式说明符表示秒部分的五个最高有效位;即在日期和时间值中表示十万分之一秒数。但是,不显示尾随零或五个零位。 虽然时间值的秒部分可以显示到十万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">万分之一秒</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffff" 自定义格式说明符表示秒部分的四个最高有效位;即在日期和时间值中表示万分之一秒数。 虽然时间值的秒部分可以显示到万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">万分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFF" 自定义格式说明符表示秒部分的四个最高有效位;即在日期和时间值中表示万分之一秒数。但是,不显示尾随零或四个零位。 虽然时间值的秒部分可以显示到万分之一秒,但该值可能没有意义。日期和时间值的精度取决于系统时钟的分辨率。在 Windows NT 3.5 (及更高版本)和 Windows Vista 操作系统上,时钟的分辨率大约为 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">千分之一秒</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">"fff" 自定义格式说明符表示秒部分的三个最高有效位;即表示日期和时间值中的毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">千分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">"FFF" 自定义格式说明符表示秒部分的三个最高有效位;即表示日期和时间值中的毫秒。但不显示尾随零或三个零位。</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">百分之一秒</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">"ff" 自定义格式说明符表示秒部分的两个最高有效位;即在日期和时间值中表示百分之一秒数。</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">百分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">"FF" 自定义格式说明符表示秒部分的两个最高有效位;即在日期和时间值中表示百分之一秒数。但不显示尾随零或两个零位。</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">十分之一秒</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">十分之一秒(非零)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">"F" 自定义格式说明符表示秒部分的最高有效位;即在日期和时间值中表示十分之一秒数。如果数字为零,则不显示任何内容。 如果使用 "F" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "F" 标准日期和时间格式说明符。 ParseExact、TryParseExact、ParseExact 或 TryParseExact 方法中的 "F" 格式说明符的数目指示能够成功分析的字符串的秒部分的最高有效位的最大数目。</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12 小时制(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"h" 自定义格式说明符将小时表示为从 1 到 12 的数字;即通过 12 小时制表示小时,自午夜或中午开始对整小时计数。因此,午夜后经过的某特定小时数与中午过后的相同小时数无法加以区分。小时数不进行舍入,一位数字的小时数设置为不带前导零的格式。例如,给定上午或下午时间为 5:43,则此自定义格式说明符显示为 "5"。 如果使用 "h" 格式说明符而没有其他自定义格式说明符,该说明符将被解释为标准日期和时间格式说明符,并引发 FormatException。</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12 小时制(2 位数)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">"hh" 自定义格式说明符(另加任意数量的其他 "h" 说明符)将小时表示为从 01 到 12 的数字;即通过 12 小时制表示小时,因此,午夜后经过的某特定小时数与中午过后的相同小时数无法加以区分。小时数不进行舍入,一位数字的小时数设置为带前导零的格式。例如,给定上午或下午时间为 5:43,则此格式说明符显示为 "05"。</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24 小时制(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"H" 自定义格式说明符将小时表示为从 0 至 23 的数字,即通过从零开始的 24 小时制表示小时,自午夜开始对小时计数。一位数字的小时数设置为不带前导零的格式。 如果使用 "H" 格式说明符而没有其他自定义格式说明符,该说明符将被解释为标准日期和时间格式说明符,并引发 FormatException。</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24 小时制(2 位数)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">"HH" 自定义格式说明符(另加任意数量的 "H" 说明符)将小时表示为从 00 至 23 的数字,即通过从零开始的 24 小时制表示小时,自午夜开始对小时计数。一位数字的小时数设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">代码</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">日期分隔符</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"/" 自定义格式说明符表示用于区分年、月和日的日期分隔符。可从当前或指定区域性的 DateTimeFormatInfo.DateSeparator 属性中检索适当的本地化日期分隔符。 注意: 若要更改特定日期和时间字符串的日期分隔符,需要在文本字符串分隔符中指定分隔符字符。例如,自定义格式字符串 mm'/'dd'/'yyyy 会生成一个结果字符串,其中 "/" 始终用作日期分隔符。若要更改某个区域性的所有日期的日期分隔符,请更改当前区域性的 DateTimeFormatInfo.DateSeparator 属性的值,或者实例化 DateTimeFormatInfo 对象,并将该字符分配给它的 DateSeparator 属性,然后调用包含 IFormatProvider 参数的格式设置方法的重载。 如果使用 "/" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为标准日期和时间格式说明符,并引发 FormatException。</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">一月中某天(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">"d" 自定义格式说明符将一月中某天表示为从 1 至 31 的数字。一位数字的日期设置为不带前导零的格式。 如果使用 "d" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "d" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">一月中某天(2 位数)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">"dd" 自定义格式字符串将将一月中某天表示为从 01 至 31 的数字。一位数字的日期设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">一周中某天(缩写)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">"ddd" 自定义格式说明符表示一周中某天的缩写名称。可从当前或指定区域性的 DateTimeFormatInfo.AbbreviatedDayNames 属性中检索一周中某天的本地化缩写名称。</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">一周中某天(完整)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">"dddd" 自定义格式说明符(另加任意数量的其他 "d" 说明符)表示一周中某天的完整名称。可从当前或指定区域性的 DateTimeFormatInfo.DayNames 属性中检索一周中某天的本地化名称。</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">放弃</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">从元数据</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">完整长日期/时间</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">"F" 标准格式说明符表示由当前 DateTimeFormatInfo FullDateTimePattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的自定义格式字符串为 "dddd, dd MMMM yyyy HH:mm:ss"。</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">完整短日期/时间</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">完整日期短时间("f")格式说明符 "f" 标准格式说明符表示长日期("D")和短时间("t")模式组合,用空格分隔。</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">常规长日期/时间</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">"G" 标准格式说明符表示短日期("d")和长时间("T")模式组合,用空格分隔。</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">常规短日期/时间</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">"g" 标准格式说明符表示短日期("d")和短时间("t")模式组合,用空格分隔。</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">泛型重载</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">多个泛型重载</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">在 {0} ({1} - {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">在源(属性)中</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">长日期</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">"D" 标准格式说明符表示由当前 DateTimeFormatInfo LongDatePattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的自定义格式字符串为 "dddd, dd MMMM yyyy"。</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">长时间</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">"T" 标准格式说明符表示由特定区域性的 DateTimeFormatInfo.LongTimePattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的自定义格式字符串为 "HH:mm:ss"。</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0}“{1}”</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">分钟(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">"m" 自定义格式说明符将分钟表示为从 0 到 59 的数字。分钟表示自前一小时后经过的整分钟数。一位数字的分钟数设置为不带前导零的格式。 如果使用 "m" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "m" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">分钟(2 位数)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">"mm" 自定义格式说明符(另加任意数量的其他 "m" 说明符)将分钟表示为从 00 至 59 的数字。分钟表示自前一小时后经过的整分钟数。一位数字的分钟数设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">月(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">"M" 自定义格式说明符将月份表示为从 1 至 12 (如果日历包含 13 个月,则为从 1 到 13)的数字。一位数字的月份设置为不带前导零的格式。 如果使用 "M" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "M" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">月(2 位数)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">"MM" 自定义格式说明符将月份表示为从 01 至 12 (如果日历包含 13 个月,则为从 1 到 13)的数字。一位数字的月份设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">月(缩写)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">"MMM" 自定义格式说明符表示月份的缩写名称。可从当前或指定区域性的 DateTimeFormatInfo.AbbreviatedMonthNames 属性中检索月份的本地化缩写名称。</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">月日</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">"M" 或 "m" 标准格式说明符表示由当前 DateTimeFormatInfo.MonthDayPattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的自定义格式字符串为 "MMMM dd"。</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">月(完整)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">"MMMM" 自定义格式说明符表示月份的完整名称。可从当前或指定区域性的 DateTimeFormatInfo.MonthNames 属性中检索月份的本地化名称。</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">重载</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">多个重载</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} 关键字</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">封装字段:“{0}”(并使用属性)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">封装字段:“{0}”(但仍使用字段)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">封装字段 (并使用属性)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">封装字段 (但仍使用字段)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">无法提取接口:所选内容不在类/接口/结构中。</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">无法提取接口:此类型不含任何可以提取到接口的成员。</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">不能构造最终树</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">参数的类型或返回类型不能为匿名类型:[{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">所选内容不含活动语句。</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">所选内容含错误或未知类型。</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">类型参数“{0}”被另一类型参数“{1}”隐藏。</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">变量的地址在选定代码内使用。</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">分配到只读字段必须在构造函数: [{0}] 中完成。</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">生成的代码与代码隐藏部分重叠</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">将可选参数添加到“{0}”</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">将参数添加到“{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">生成委托构造函数“{0}({1})”</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">生成构造函数 “{0}({1})”</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">生成字段分配构造函数“{0}({1})”</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">生成 Equals 和 GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">生成 Equals(object)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">生成 GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">在“{0}”中生成构造函数</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">生成所有</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">生成枚举成员“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">生成常数“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">生成只读属性“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">生成属性“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">生成只读字段“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">生成字段“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">生成本地“{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">在新文件中生成 {0}“{1}”</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">生成嵌套的 {0}“{1}”</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">全局命名空间</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">以抽象方式实现接口</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">通过“{0}”实现接口</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">实现接口</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">为“{0}”引入字段</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">为“{0}”引入本地</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">为“{0}”引入常量</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">为“{0}”引入局部常量</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">为出现的所有“{0}”引入字段</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">为出现的所有“{0}”引入本地</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">为出现的所有“{0}”引入常量</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">为出现的所有“{0}”引入局部常量</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">为出现的所有“{0}”引入查询变量</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">为“{0}”引入查询变量</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">匿名类型:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">是</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">表示将在运行时解析其操作的对象</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">常量</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">字段</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">局部常量</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">局部变量</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">标签</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">期间/周期</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">"g" 或 "gg" 自定义格式说明符(另加任意数量的其他 "g" 说明符)表示期间或纪元,如果要设置格式的日期不具有关联的时期或纪元字符串,则格式操作将忽略该说明符。 如果使用 "g" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "g" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">范围变量</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">参数</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">隶属</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">摘要:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">局部变量和参数</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">类型参数:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">返回结果:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">异常:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">言论:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">不支持为此类型符号生成源</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">程序集</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">未知的位置</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">意外的接口成员种类:{0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">未知符号种类</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">生成抽象属性“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">生成抽象方法“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">生成方法“{1}.{0}”</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">已从“{0}”中加载请求的程序集。</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">此符号无图标。</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">异步方法不能包含 ref/out 参数:[{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">此成员是在元数据中定义的。</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">只能更改构造函数、索引器、方法或委托的签名。</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">此符号在元数据中有相关定义或引用。更它的签名可能会造成生成错误。 想要继续吗?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">更改签名...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">生成新类型...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">用户诊断分析器失败。</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">分析器“{0}”抛出类型为“{1}”的异常,并显示消息“{2}”。</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">分析器“{0}”引发了以下异常: “{1}”。</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">简化名称</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">简化成员访问</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">删除限定</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">发生未知错误</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">可用</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">不可用 ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">在源中</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">在禁止显示文件中</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">删除禁止显示 {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">删除禁止显示</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;挂起&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">注意: 两次 Tab 插入“{0}”片段。</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">通过释放模式显式实现接口</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">通过释放模式实现接口</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">对 {0}(当前为“{1}”) 进行重新分类</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">参数不能具有 null 元素。</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">参数不能为空。</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">分析器不支持 ID 为“{0}”的报告的诊断。</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">正在计算“修复所有出现的地方”代码修复...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">修复所有出现的地方</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">文档</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">项目</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">解决方案</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: 释放托管状态(托管对象)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: 将大型字段设置为 null</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">编译器</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">活动</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">enum 值</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">const 字段</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">方法</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">运算符</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">构造函数</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">自动属性</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">属性</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">事件访问器</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">rfc1123 日期/时间</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"R" 或 "r" 标准格式说明符表示由 DateTimeFormatInfo.RFC1123Pattern 属性定义的自定义日期和时间格式字符串。模式反映已定义的标准,并且属性是只读的。因此,无论使用何种区域性或提供格式提供程序,它始终是相同的。自定义格式字符串为 "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'"。使用此标准格式说明符时,格式设置或分析操作始终使用固定区域性。</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">往返日期/时间</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">"O" 或 "o" 标准格式说明符表示使用以下模式的自定义日期和时间格式字符串: 该模式保留时区信息并发出符合 ISO 8601 的结果字符串。对于 DateTime 值,此格式说明符旨在保留日期和时间值以及文本中的 DateTime.Kind 属性。如果将样式参数设置为 DateTimeStyles.RoundtripKind,则可使用 DateTime.Parse(String, IFormatProvider, DateTimeStyles)或 DateTime.ParseExact 方法对格式化字符串进行重新分析。 "O" 或 "o" 标准格式说明符对应于 DateTime 值的 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" 自定义格式字符串和 DateTimeOffset 值的 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" 自定义格式字符串。在此字符串中,分隔单个字符的单引号标记对(如连字符、冒号和字母 "T")指示单个字符是不能更改的文本。撇号不会出现在输出字符串中。 "O" 或 "o" 标准格式说明符(以及 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" 自定义格式字符串)利用 ISO 8601 表示时区信息的三种方式保留日期时间值的 Kind 属性: DateTimeKind 日期和时间值的时区部分是相对于 UTC 的偏移量(例如 +01:00, -07:00)。所有 DateTimeOffset 值也以这种格式表示。 DateTimeKind 日期和时间值的时区部分使用 "Z" (代表零偏移量)表示 UTC。 DateTimeKind.Unspecified 日期和时间值不具有时区信息。 由于 "O" 或 "o" 标准格式说明符符合国际标准,因此使用该说明符的格式设置或分析操作始终使用固定区域性和公历。 可使用 "O" 或 "o" 格式说明符分析传递给 DateTime 和 DateTimeOffset 的 Parse、TryParse、ParseExact 和 TryParseExact 方法的字符串,如果字符串采用了这些格式的其中一种格式。对于 DateTime 对象,调用的分析重载还应包含值为 DateTimeStyles RoundtripKind 的样式参数。请注意,如果使用与 "O" 或 "o" 格式说明符对应的自定义格式字符串调用分析方法,则不会获得与 "O" 或 "o" 相同的结果。这是因为使用自定义格式字符串的分析方法无法分析缺少时区部分或使用 "Z" 指示 UTC 的日期和时间值的字符串表示形式。</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">秒(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">"S" 自定义格式说明符将秒表示为从 0 到 59 的数字。结果表示自前一分钟后经过的整秒数。一位数字的秒数设置为不带前导零的格式。 如果使用 "s" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "s" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">秒(2 位数</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">"ss" 自定义格式说明符(另加任意数量的其他 "s" 说明符)将秒表示为从 00 到 59 的数字。结果表示自前一分钟后经过的整秒数。一位数字的秒数设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">短日期</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">"D" 标准格式说明符表示由特定区域性的 DateTimeFormatInfo.ShortDatePattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的 ShortDatePattern 属性返回的自定义格式字符串为 "MM/dd/yyyy"。</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">短时间</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">"t" 标准格式说明符表示由当前 DateTimeFormatInfo.ShortTimePattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的自定义格式字符串为 "HH:mm"。</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">可排序日期/时间</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"s" 标准格式说明符表示由 DateTimeFormatInfo.SortableDateTimePattern 属性定义的自定义日期和时间格式字符串。该模式反映已定义的标准(ISO 8601),并且该属性是只读的。因此,无论使用何种区域性或提供格式提供程序,它始终是相同的。自定义格式字符串为 "yyyy'-'MM'-'dd'T'HH':'mm':'ss"。 "s" 格式说明符的用途是生成结果字符串,该字符串根据日期和时间值以升序或降序顺序进行排序。因此,尽管 "s" 标准格式说明符以一致的格式表示日期和时间值,但该格式设置操作不会修改设置为反映其 DateTime.Kind 属性或其 DateTimeOffset.Offset 值的 date 和 time 对象的值。例如,通过设置日期和时间值(2014-11-15T18:32:17+00:00 和 2014-11-15T18:32:17+08:00)的格式生成的结果字符串是相同的。 使用此标准格式说明符时,格式设置或分析操作始终使用固定区域性。</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">静态构造函数</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'“symbol” 不能为命名空间。</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">时间分隔符</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">":" 自定义格式说明符表示用于区分小时、分钟和秒的时间分隔符。可从当前或指定区域性的 DateTimeFormatInfo.TimeSeparator 属性中检索适当的本地化时间分隔符。 注意: 若要更改特定日期和时间字符串的时间分隔符,请在文本字符串分隔符中指定分隔符字符。例如,自定义格式字符串 hh'_'dd'_'ss 生成一个结果字符串,其中 "_" (下划线)始终用作时间分隔符。若要更改某个区域性的所有日期的时间分隔符,请更改当前区域性的 DateTimeFormatInfo.TimeSeparator 属性的值,或者实例化 DateTimeFormatInfo 对象,并将该字符分配给它的 TimeSeparator 属性,然后调用包含 IFormatProvider 参数的格式设置方法的重载。 如果使用 ":" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为标准日期和时间格式说明符,并引发 FormatException。</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">时区</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"K" 自定义格式说明符表示日期和时间值的时区信息。将此格式说明符与 DateTime 值一起使用时,结果字符串由 DateTime.Kind 属性的值定义: 对于本地时区(DateTimeKind.Local 的 DateTime.Kind 属性值),此说明符等效于 "zzz" 说明符,并生成包含协调世界时(UTC)的本地偏移量的结果字符串;例如 "-07:00"。 对于 UTC 时间(DateTimeKind.Utc 的 DateTime.Kind 属性值),结果字符串包含表示 UTC 日期的 "Z" 字符。 对于未指定时区的时间(其 DateTime.Kind 属性等于 DateTimeKind.Unspecified 的时间),其结果等效于 String.Empty。 对于 DateTimeOffset 值,"K" 格式说明符等效于 "zzz" 格式说明符,并生成一个包含来自 UTC 的 DateTimeOffset 值偏移量的结果字符串。 如果使用 "K" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为标准日期和时间格式说明符,并引发 FormatException。</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">类型约束</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">类型形参</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">属性</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">使用属性替代“{0}”和“{1}”</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">使用属性替代“{0}”</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">隐式引用的方法</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">生成类型“{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">生成 {0}“{1}”</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">将“{0}”更改为“{1}”。</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">无法使用属性替代非被调用方法。</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">只有带一个参数,不是化出变量声明的方法可以使用属性进行替换。</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">无法从 {1}: {2} 创建分析器实例 {0}。</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">程序集 {0} 不包含任何分析器。</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">无法加载分析器程序集 {0}: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">使方法同步</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">自 {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">查找并安装最新版本</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">使用本地版本“{0}”</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">使用本地安装的“{0}”版本“{1}” 此版本用于: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">查找并安装最新版本的“{0}”</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">使用包管理器安装...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">安装“{0} {1}”</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">安装版本“{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">生成变量 {0}</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">类</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">常量</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">委托</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">枚举</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">事件</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">扩展方法</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">字段</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">接口</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">局部变量</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">方法</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">模块</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">命名空间</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">属性</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">结构</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">参数:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">可变参数 SignatureHelpItem 必须有至少一个参数。</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">将“{0}”替换为方法</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">将“{0}”替换为方法</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">隐式引用的属性</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">不能将属性安全地替换为方法调用</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">转换为插补字符串</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">将类型移动到 {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">将文件重命名为 {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">将类型重命名为 {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">删除标记</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">添加缺少的参数节点</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">将包含范围改为 Async</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">将包含范围改为 Async (返回“任务”)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(未知)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">使用框架类型</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">安装包“{0}”</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">项目 {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">完全限定“{0}”</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">删除对“{0}”的引用。</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">关键字</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">片段</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">全部小写</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">全部大写</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">第一个单词首字母大写</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">帕斯卡拼写法</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">删除文档“{0}”</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">添加文档“{0}”</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">添加参数名“{0}”</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">采用“{0}”</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">二者均采用</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">采用底值</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">采用顶值</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">删除未使用的变量</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">转换为二进制</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">转换为十进制</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">转换为十六进制</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">分隔千分位</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">分隔单词</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">分隔半字节</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">删除分隔符</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">将参数添加到“{0}”</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">生成构造函数...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">选择成员用作构造函数参数</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">选择成员用于 Equals/GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">生成重写...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">选择成员进行重写</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">添加 null 检查</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">添加 "string.IsNullOrEmpty" 检查</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">添加 "string.IsNullOrWhiteSpace" 检查</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">初始化字段“{0}”</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">初始化属性“{0}”</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">添加 null 检查</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">生成运算符</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">实现 {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">报告的诊断“{0}”的源位置位于文件“{1}”中,后者不是要分析的编译的一部分。</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">报告的诊断“{0}”的源位置“{1}”位于文件“{2}”中,后者不是给定文件。</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">在 {0} (项目 {1})中</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">添加可访问性修饰符</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">将声明移动至引用附近</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">转换为完整属性</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">警告: 方法将替代元数据中的符号</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">使用 {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">添加参数名“{0}”(包括尾随参数)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">本地函数</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">索引器</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">别名多义类型“{0}”</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">警告: 迭代期间已修改集合。</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">警告: 迭代变量跨函数边界。</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">警告: 迭代期间可能修改集合。</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">通用完整日期/时间</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">"U" 标准格式说明符表示由指定区域性的 DateTimeFormatInfo.FullDateTimePattern 属性定义的自定义日期和时间格式字符串。模式与 "F" 模式相同。但在 DateTime 值进行格式设置之前,该值将自动转换为 UTC。</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">通用可排序日期/时间</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">"U" 标准格式说明符表示由 DateTimeFormatInfo.UniversalSortableDateTimePattern 属性定义的自定义日期和时间格式字符串。模式反映已定义的标准,并且属性是只读的。因此,无论使用何种区域性或提供格式提供程序,它始终是相同的。自定义格式字符串为 "yyyy'-'MM'-'dd HH':'mm':'ss'Z'"。使用此标准格式说明符时,格式设置或分析操作始终使用固定区域性。 虽然结果字符串应将时间表示为协调世界时(UTC),但在格式设置操作期间不执行原始日期时间值的转换。因此,在设置 DateTime 格式之前,必须通过调用 DateTime.ToUniversalTime 方法将 DateTime 值转换为 UTC。</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">更新包含成员的用法</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">更新包含项目中的用法</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">更新包含类型中的用法</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">更新相关项目中的用法</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">utc 小时和分钟偏移量</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">对于 DateTime 值,"zzz" 自定义格式说明符表示本地操作系统的时区与 UTC 的有符号偏移量,以小时和分钟度量。它不反映实例的 DateTime.Kind 属性的值。因此,不建议将 "zzz" 格式说明符用于 DateTime 值。 对于 DateTimeOffset 值,此格式说明符表示 DateTimeOffset 值与 UTC 的偏移量(以小时和分钟为单位)。 偏移量始终显示为带有前导符号。加号(+)表示小时数早于 UTC,减号(-)指示小时数迟于 UTC。一位数字的偏移量设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">utc 小时偏移量(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">对于 DateTime 值,"z" 自定义格式说明符表示本地操作系统的时区与协调世界时(UTC)的有符号偏移量(以小时为单位)。它不反映实例的 DateTime.Kind 属性的值。因此,不建议将 "z" 格式说明符用于 DateTime 值。 对于 DateTimeOffset 值,此格式说明符表示 DateTimeOffset 值与 UTC 的偏移量(以小时为单位)。 偏移量始终显示为带有前导符号。加号(+)表示小时数早于 UTC,减号(-)表示小时数迟于 UTC。一位数字的偏移量设置为不带前导零的格式。 如果使用 "z" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为标准日期和时间格式说明符,并引发 FormatException。</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">utc 小时偏移量(2 位数)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">对于 DateTime 值,"zz" 自定义格式说明符表示本地操作系统的时区与 UTC 之间的有符号偏移量(以小时为单位)。它不反映实例的 DateTime.Kind 属性的值。因此,建议不要将 "zz" 格式说明符与 DateTime 值一起使用。 对于 DateTimeOffset 值,此格式说明符表示 DateTimeOffset 值与 UTC 的偏移量(以小时为单位)。 偏移量始终显示为带前导的符号。加号(+)表示小时数早于 UTC,减号(-)表示小时数迟于 UTC。一位数字的偏移量设置为带前导零的格式。</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">按相反顺序排列的 [x-y] 范围</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">年(1-2 位数)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">"Y" 自定义格式说明符将年份表示为一位数字或两位数的数字。如果年份具有两个以上的数字,则结果中仅显示两个低序位数字。如果两位数年份的第一个数字以零开头(例如 2008),则该数字的格式没有前导零。 如果使用 "y" 格式说明符而没有其他自定义格式说明符,则该说明符将被解释为 "y" 标准日期和时间格式说明符。</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">年(2 位数)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">"yy" 自定义格式说明符将年份表示为两位数字。如果年份具有两个以上的数字,则结果中仅显示两个低序位数字。如果两位数的年份的有效数字少于两个,则用前导零填充该数字以生成两个数字。 在分析操作中,使用 "yy" 自定义格式说明符分析的两位数年份根据格式提供程序当前日历的 Calendar.TwoDigitYearMax 属性进行解释。下面的示例使用 en-US 区域性的默认公历日历(在本例中为当前区域性)分析具有两位数年份的日期的字符串表示形式。然后更改当前区域性的 CultureInfo 对象,以使用其 TwoDigitYearMax 属性已被修改的 GregorianCalendar 对象。</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">年(3-4 位数)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">"yyy" 自定义格式说明符表示最少为三位的年份。如果年份有三个以上的有效数字,则结果字符串中会显示所有数字。如果年份少于三位数,则用前导零填充该数字以生成三位数。</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">年(4 位数字)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">"yyyy" 自定义格式说明符表示最少为四位的年份。如果年份有四个以上的有效数字,则结果字符串中会显示所有数字。如果年份少于四位数,则用前导零填充该数字以生成四位数。</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">年(5 位数)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">"yyyyy" 自定义格式说明符(另加任意数量的其他 "y" 说明符)表示最少为五位年份。如果年份具有五个以上的有效数字,则结果字符串中会显示所有数字。如果年份少于五位,则用前导零填充该数字以生成五个数字。 如果有其他 "y" 说明符,则用所需数量的前导零填充该数字,以生成 "y" 说明符。</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">年月</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">"Y" 或 "y" 标准格式说明符表示由指定区域性的 DateTimeFormatInfo.YearMonthPattern 属性定义的自定义日期和时间格式字符串。例如,固定区域性的自定义格式字符串为 "yyyy MMMM"。</target> <note /> </trans-unit> </body> </file> </xliff>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/xlf/FeaturesResources.zh-Hant.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="zh-Hant" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (縮寫)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">"t" 自訂格式規範代表 AM/PM 指示項的第一個字元。系統會從目前文化特性或特定文化特性的 DateTimeFormatInfo.AMDesignator 或 DateTimeFormatInfo.PMDesignator 屬性,擷取適當的當地語系化指示項。AM 指示項用來表示從 0:00:00 (午夜) 到 11:59:59.999 的所有時間。PM 指示項用來表示從 12:00:00 (中午) 到 23:59:59.999 的所有時間。 如果在使用 "t" 格式規範時沒有其他自訂格式規範,則會將其解譯為 "t" 標準日期與時間格式規範。</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (完整)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">"tt" 自訂格式規範 (加上任意數目的其他 "t" 規範) 代表整個 AM/PM 指示項。系統會從目前文化特性或特定文化特性的 DateTimeFormatInfo.AMDesignator 或 DateTimeFormatInfo.PMDesignator 屬性,擷取適當的當地語系化指示項。AM 指示項用來表示從 0:00:00 (午夜) 到 11:59:59.999 的所有時間。PM 指示項用來表示從 12:00:00 (中午) 到 23:59:59.999 的所有時間。 對於需要保有 AM 與 PM 之間區別的語言來說,請務必對該語言使用 "tt" 規範。以日文為例,其 AM 和 PM 指示項是第二個字元不同,而非第一個字元不同。</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">減法必須是字元類別中的最後一個元素</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">新增 'DebuggerDisplay' 屬性</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">新增明確轉換</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">新增成員名稱</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">為所有參數新增 null 檢查</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">將選擇性參數新增至建構函式</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">將參數新增至 '{0}' (以及覆寫/執行)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">將參數新增至建構函式</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">加入對 '{0}' 的專案參考。</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">加入對 '{0}' 的參考。</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">動作不可為空。</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">新增元組元素名稱 ‘{0}’</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">對齊包裝的引數</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">對齊包裝的參數</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">替代條件不可為註解</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">替代條件不會擷取,也無法命名</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">套用檔案標題的喜好設定</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">套用物件/集合初始設定喜好設定</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">等待的工作會傳回 '{0}'</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">等待的工作不會傳回任何值</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">基底類別包含無法存取的未實作成員</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">無法套用變更 -- 未預期的錯誤: '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">無法在字元範圍內包含類別 \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">擷取群組號碼必須小於或等於 Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">擷取號碼不可為零</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;推斷&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;省略&gt;</target> <note /> </trans-unit> <trans-unit id="Change_namespace_to_0"> <source>Change namespace to '{0}'</source> <target state="translated">將命名空間變更為 ‘{0}'</target> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">變更為全域命名空間</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">於例外狀況停止時不允許變更</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">將不會在應用程式執行時套用在專案 '{0}' 中所做的變更</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">設定 {0} 程式碼樣式</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">設定 {0} 嚴重性</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">設定所有 '{0}' 分析器的嚴重性</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">設定所有分析器的嚴重性</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">轉換至 LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">新增至 '{0}'</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">轉換為類別</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">轉換為 LINQ (呼叫表單)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">轉換為記錄</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">轉換成記錄結構</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">轉換為結構</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">將類型轉換為 '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">建立並指派欄位 '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">建立並指派屬性 '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">建立其餘項目並將其指派為欄位</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">建立其餘項目並將其指派為屬性</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">請勿變更此程式碼。請將清除程式碼放入 '{0}' 方法</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">來源檔案 '{0}' 目前的內容與已建置的來源不一致。等到此檔案的內容與已建置的來源一致後,才會套用於偵錯期間對此檔案所做的所有變更。</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">文件必須包含在此服務所建立的工作區中</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">編輯並繼續</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">模組不允許編輯和繼續</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">在專案 '{0}' 中所做的變更將使偵錯工作階段無法繼續: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">執行階段不支援編輯後繼續。</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">讀取檔案 '{0}' 時發生錯誤: {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">建立 CodeFixProvider 的執行個體時發生錯誤</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">建立 CodeFixProvider '{0}' 的執行個體時發生錯誤</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">範例:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">範例:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">記錄的明確實作方法,必須有參數名稱符合編譯器產生的相等 '{0}'</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">擷取基底類別...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">擷取介面...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">擷取區域函式</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">擷取方法</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">無法分析下列項目的資料流程: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">修正格式化</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">修正錯字 '{0}'</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">格式化文件</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">正在將文件格式化</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">產生比較運算子</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">在 '{0}' 中產生建構函式 (使用欄位)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">在 '{0}' 中產生建構函式 (使用屬性)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">為 '{0}' 產生</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">產生參數 '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">產生參數 '{0}' (以及覆寫/實作)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">模式結尾使用 \ 不符合格式規定</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">x 大於 y 的 {x,y} 不符合格式</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">明確實作 '{0}'</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">隱含實作 '{0}'</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">實作抽象類別</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">明確實作所有介面</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">隱含實作所有介面</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">明確實作所有成員</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">明確實作</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">隱含實作</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">明確實作剩餘的成員</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">透過 '{0}' 實作</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">不完整的 \p{X} 字元逸出</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">將所有引數縮排</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">將所有參數縮排</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">將包裝的引數縮排</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">將換行參數縮排</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">內嵌 '{0}'</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">內嵌並保留 '{0}'</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">十六進位數位不足</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">引進常數</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">引進欄位</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">引進區域函式</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">引進查詢變數</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">群組名稱無效: 群組名稱必須以文字字元開頭</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">將類別設為 'abstract'</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">使其變成靜態</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">反轉條件</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">語式錯誤</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">\p{X} 字元逸出語式錯誤</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">以 \k&lt;...&gt; 命名的反向參考語式錯誤</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">與巢狀 '{0}' 陳述式合併</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">與下一個 '{0}' 陳述式合併</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">與外部 '{0}' 陳述式合併</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">與上一個 '{0}' 陳述式合併</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} 必須傳回支援讀取和搜尋作業的資料流。</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">缺少控制字元</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">將內容移到命名空間...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">將檔案移至 ‘{0}'</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">將檔案移到專案根資料夾</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">移到命名空間...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">巢狀數量詞 {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">沒有可插入方法呼叫的有效位置。</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">) 不夠</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">運算子</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">無法更新屬性參考</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">向上提取 ‘{0}’</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">提取 '{0}' 最多 '{1}’</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">將成員提取直到基底類型...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">將成員提取至新的基底類別...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">數量詞 {x,y} 前面沒有任何項目</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">對未定義群組的參考</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">對未定義群組名稱 {0} 的參考</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">參考未定義的群組號碼 {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">所有控制字元。這包括了 Cc、Cf、Cs、Co 和 Cn 分類。</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">所有控制字元</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">所有變音符號標記。這包括了 Mn、Mc 和 Me 分類。</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">所有變音符號標記</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">所有字母字元。這包括了 Lu、Ll、Lt、Lm 和 Lo 字元。</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">所有字母字元</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">所有數字。這包括了 Nd、Nl 和 No 分類。</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">所有數字</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">所有標點符號字元。這包括了 Pc、Pd、Ps、Pe、Pi、Pf 和 Po 分類。</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">所有標點符號字元</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">所有分隔符號字元。這包括了 Zs、Zl 和 Zp 分類。</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">所有分隔符號字元</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">所有符號。這包括了 Sm、Sc、Sk 和 So 分類。</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">所有符號</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">您可以使用分隔號 (|) 字元比對一系列模式中的任一模式,其中 | 字元會分隔各個模式。</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">替代</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">句點字元 (.) 會比對任何字元,\n (新行字元 \u000A) 除外。如果 RegexOptions.Singleline 選項修改了規則運算式模式,或 's' 選項修改了模式中包含 . 字元的那部分,. 就會比對任何字元。</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">任一字元</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">不可部分完成的群組 (在其他一些規則運算式引擎中,又稱為非回溯子運算式、不可部分完成的子運算式,或單次性子運算式) 會停用回溯。規則運算式引擎會盡可能地比對輸入字串中的字元。當無法再繼續比對時,不會再回溯嘗試比對替代樣式 (亦即,子運算式只會比對子運算式所要比對的字串,而不會嘗試比對子運算式中或其接續之任何子運算式中的字串)。 若已知不會繼續執行回溯,建議您使用此選項。禁止規則運算式引擎執行不必要的搜尋,將有助於提升效能。</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">不可部分完成的群組</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">比對退格鍵字元 \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">退格鍵字元</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">平衡群組定義會刪除先前已定義群組的定義,並將先前定義的群組和目前群組間的間隔儲存在目前的群組內。 'name1' 是目前的群組 (選擇性),'name2' 是先前定義的群組,'subexpression' 是任何有效的規則運算式模式。平衡群組定義會刪除 name2 的定義,並將 name2 與 name1 之間的間隔儲存在 name1 內。如果未指定 name2 群組,則比對會回溯。因為刪除 name2 的上一個定義會顯示 name2 先前的定義,所以此建構可讓您使用群組 name2 的擷取堆疊來作為計數器,用來追蹤括號或左右括弧等巢狀建構。 平衡群組定義會使用 'name2' 作為堆疊。各巢狀建構的開頭字元會置於群組和其 Group.Captures 集合內。符合右側字元時,會將其對應的左側字元從群組移除,使 Captures 集合減少一。當所有巢狀建構的左側和右側字元均相符後,'name1' 會空白。</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">平衡群組</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">基底群組</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">比對鈴聲 (警示) 字元 \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">鈴字元</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">比對歸位字元 \u000D。請注意,\r 不等同於新行字元 \n。</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">歸位字元</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">字元類別減法會產生一組字元,該組字元為將一個字元類別中的字元從另一個字元類別排除的結果。 'base_group' 是正或負的字元群組或範圍。'excluded_group' 元件是另一個正的或負的字元群組,或另一個字元類別減法運算式 (也就是說,您可以將字元類別減法運算式巢狀化)。</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">字元類別減法</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">字元群組</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">註解</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">這個語言元素會根據是否可以比對初始模式,嘗試比對兩個模式的其中一個。 'expression' 是要比對的初始模式,若運算式相符,'yes' 即為要比對的模式; 若模式不相符,'no' 則為要比對的選擇性模式。</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">條件運算式比對</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">這個語言元素會根據是否與指定的擷取群組相符,嘗試比對兩個模式的其中一個。 'name' 是擷取群組的名稱 (或編號),若 'name' (或 'number') 相符,'yes' 即為要比對的運算式; 若不相符,'no' 則為要比對的選擇性運算式。</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">條件式群組比對</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">\G 錨點會指定比對必須出現在前一個比對結束的地方。當您搭配 Regex.Matches 或 Match.NextMatch 方法使用這個錨點時,可以確保比對全都是一個接一個。</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">連續相符項</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">比對 ASCII 控制字元,其中 X 是控制字元的字母。例如 \cC 為 CTRL-C。</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">控制字元</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d 符合所有十進位數字。其相當於 \p{Nd} 規則運算式模式,其中包含標準十進位數字 0-9,以及一些其他字元集的十進位數字。 如果有指定符合 ECMAScript 規範的行為,則 \d 相當於 [0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">十進位數字字元</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">數字記號 (#) 會標記 x 模式註解,其會從規則運算式模式結尾的未逸出 # 字元開始,並繼續直到行結束為止。如果要使用此建構,您必須啟用 x 選項 (透過內嵌選項),或於具現化 Regex 物件或呼叫靜態 Regex 方法時提供 RegexOptions.IgnorePatternWhitespace 值給選項參數。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">行結尾註解</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">\z 錨點會指定比對必須出現在輸入字串的結尾。就像 $ 語言元素,\z 會忽略 RegexOptions.Multiline 選項。與 \Z 語言元素不同的是,\z 不會比對字串結尾的 \n 字元。因此,只能比對上一行的輸入字串。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">僅字串結尾</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">\Z 錨點會指定比對必須出現在輸入字串的結尾或輸入字串結尾的 \n 之前。這與 $ 錨點相同,只是 \Z 會忽略 RegexOptions.Multiline 選項。因此,這只能比對上一行的結尾,或 \n 之前的上一行。 \Z 錨點會比對 \n,但不會比對 \r\n (CR/LF 字元的組合)。若要比對 CR/LF,請在規則運算式模式中加入 \r?\Z。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">字串結尾或結尾的新行之前</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">$ 錨點會指定前置模式必須出現在輸入字串的結尾或輸入字串結尾的 \n 之前。若您搭配 RegexOptions.Multiline 選項使用 $,比對也可位於行的結尾。 $ 錨點會比對 \n,但不會比對 \r\n (歸位與新行字元的組合,或稱 CR/LF)。若要比對 CR/LF,請在規則運算式模式中加入 \r?$。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">字串或行結尾</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">比對逸出字元 \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">逸出字元</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">排除的群組</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">運算式</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">比對跳頁字元 \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">跳頁字元</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">這個分組建構會在子運算式內套用或停用指定的選項。要啟用的選項會在問號後指定,要停用的選項則在減號後。允許的選項為: i 使用不區分大小寫的比對。 m 使用多行模式,其中 ^ 和 $ 會比對各行的結尾 (而非輸入字串的開頭和結尾)。 s 使用單行模式,其中句點 (.) 會比對每個字元 (而不是 \n 除外的每個字元)。 n 請勿擷取未命名的群組。唯一有效的擷取為明確 命名或編號的格式群組 (?&lt;name&gt; 子運算式)。 x 從模式中排除未逸出的空白字元,並在 數字記號 (#) 後啟用註解。</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">群組選項</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">比對 ASCII 字元,其中 ## 是兩位數的十六進位字元碼。</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">十六進位逸出</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">(?# comment) 建構可讓您在規則運算式中包含內嵌註解。雖然註解包含在 Regex.ToString 方法所傳回的字串中,但規則運算式引擎不會在模式比對中使用註解的任一部分。註解會在第一個右括弧處結束。</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">內嵌註解</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">對規則運算式的其餘部份啟用或停用特定的模式比對選項。要啟用的選項會在問號後指定,要停用的選項則在減號後。允許的選項為: i 使用不區分大小寫的比對。 m 使用多行模式,其中 ^ 和 $ 會比對各行的結尾 (而非輸入字串的開頭和結尾)。 s 使用單行模式,其中句點 (.) 會比對每個字元 (而不是 \n 除外的每個字元)。 n 請勿擷取未命名的群組。唯一有效的擷取為明確 命名或編號的格式群組 (?&lt;name&gt; 子運算式)。 x 從模式中排除未逸出的空白字元,並在 數字記號 (#) 後啟用註解。</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">內嵌選項</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Regex 問題: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">字母,小寫</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">字母,修飾元</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">字母,其他</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">字母,字首大寫</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">字母,大寫</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">標記,封閉式</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">標記,不佔空間</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">標記,組合空間</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">{n,}? 數量詞會比對前置元素至少 n 次,其中 n 為任何整數,但盡可能壓低次數。這是與窮盡數量詞 {n,} 相對的少數優先概念</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">至少符合 'n' 次 (延遲)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">{n,} 數量詞會比對前置元素至少 n 次,其中 n 為任何整數。{n,} 是窮盡數量詞,其少數優先的相對概念為 {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">比對至少 'n' 次</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">{n,m}? 數量詞會比對前置元素 n 到 m 次,其中 n 和 m 為整數,但盡可能壓低次數。這是與窮盡數量詞 {n,m} 相對的少數優先概念</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">至少符合 'n' 次 (延遲)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">{n,m} 數量詞會比對前置元素至少 n 次,但不超過 m 次,其中 n 和 m 為整數。{n,m} 是窮盡數量詞,其少數優先的相對概念為 {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">比對 'm' 到 'n' 次</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">{n}? 數量詞會比對前置元素正好 n 次,其中 n 為任何整數。這是與窮盡數量詞 {n}+ 相對的少數優先概念</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">比對正好 'n' 次 (少數優先)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">{n} 數量詞會比對前置元素至少 n 次,其中 n 為任何整數。{n} 是窮盡數量詞,其少數優先的相對概念為 {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">比對正好 'n' 次</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">+? 數量詞會比對前置元素一或多次,但盡可能壓低次數。這是與窮盡數量詞 + 相對的少數優先概念</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">比對一或多次 (少數優先)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">+ 數量詞會比對前置元素一或多次,等同於 {1,} 數量詞。+ 是窮盡數量詞,其少數優先的相對概念為 +?。</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">比對一或多次</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">*? 數量詞會比對前置元素零或多次,但盡可能壓低次數。這是與窮盡數量詞 * 相對的少數優先概念</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">比對零或多次 (少數優先)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">* 數量詞會比對前置元素零或多次,相當於 {0,} 數量詞。* 是窮盡數量詞,其少數優先的相對概念為 *?。</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">比對零或多次</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">?? 數量詞會比對前置元素零或一次,但盡可能壓低次數。這是與窮盡數量詞 ? 相對的少數優先概念</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">比對零或一次 (少數優先)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">? 數量詞會比對前置元素零或一次,相當於 {0,1} 數量詞。? 是窮盡數量詞,其少數優先的相對概念為 ??。</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">比對零或一次</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">這個分組建構會擷取相符的 'subexpression',其中 'subexpression' 是任何有效的規則運算式模式。使用了括弧的擷取會自動根據規則運算式中的左括弧順序,從第一個開始從左到右加上編號。編號為零的擷取,是與整個規則運算式模式相符的文字。</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">相符的子運算式</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">名稱</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">名稱 1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">名稱 2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">名稱或數目</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">具名或編號反向參考。 'name' 是定義於規則運算式模式內的擷取群組名稱。</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">具名反向參考</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">擷取相符的子運算式並讓您根據名稱或數字加以存取。 'name' 應為有效的群組名稱,而 'subexpression' 則可為任何有效的規則運算式模式。'name' 不得包含任何標點符號字元,也不得以數字作為開頭。 如果規則運算式模式比對方法的 RegexOptions 參數包含 RegexOptions.ExplicitCapture 旗標,或 n 選項已套用至此子運算式,則擷取子運算式的唯一方法為明確地命名擷取群組。</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">具名的相符子運算式</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">負的字元群組會指定不應在輸入字串中出現的字元清單,以使比對可行。字元的清單會受個別指定。 可串連二或多個字元範圍。舉例來說,如果要指定十進位數字的範圍 (從 "0" 到 "9"),則小寫字母的範圍為 "a" 到 "f",大寫字母的範圍為 "A" 到 "F",使用 [0-9a-fA-F]。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">負值字元群組</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">負的字元範圍會指定不應在輸入字串中出現的字元清單,以使比對可行。'firstCharacter' 是開始範圍的字元,'lastCharacter' 則是結束範圍的字元。 可串連二或多個字元範圍。舉例來說,如果要指定十進位數字的範圍 (從 "0" 到 "9"),則小寫字母的範圍為 "a" 到 "f",大寫字母的範圍為 "A" 到 "F",使用 [0-9a-fA-F]。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">負值字元範圍</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">規則運算式建構 \P{ name } 會比對任何不屬於 Unicode 一般分類或具名區塊的字元,其中名稱為分類縮寫或具名區塊名稱。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">負值 Unicode 分類</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">比對新行字元 \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">新行字元</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">否</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D 符合所有非數字字元。其相當於 \P{Nd} 規則運算式模式。 如果有指定符合 ECMAScript 規範的行為,則 \d 相當於 [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">非數字字元</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S 符合所有非空白字元的字元。其等同於 [^\f\n\r\t\v\x85\p{Z}] 規則運算式模式,或相當於 \s 之規則運算式模式的相反,其符合空白字元的字元。 如果有指定符合 ECMAScript 規範的行為,則 \S 相當於 [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">非空白字元</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">\B 錨點會指定比對不得出現在字邊界。其為 \b 錨點的相反。</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">非字邊界</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W 符合所有非字組字元。其符合所有字元,但處於以下 Unicode 分類內的字元除外: Ll 字母,小寫 Lu 字母,大寫 Lt 字母,字首大寫 Lo 字母,其他 Lm 字母,修飾元 Mn 標記,非空格 Nd 數字,十進位數字 Pc 標點符號,接頭 如果有指定符合 ECMAScript 規範的行為,則 \W 相當於 [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">非文字字元</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">這個建構不會擷取子運算式比對的子字串: 非擷取群組建構通常在數量詞套用到群組時使用,但群組擷取的子字串不會有影響。 若規則運算式包含巢狀群組建構,外部非擷取群組建構就不會套用到內部巢狀群組建構。</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">非擷取群組</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">數字,十進位數字</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">數字,字母</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">數字,其他</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">編號反向參考,其中 'number' 是擷取群組在規則運算式中的序數位置。舉例來說,\4 符合第四個擷取群組的內容。 如果八進位逸出代碼 (例如 \16) 和 \number 反向參考使用的標記法相同,則會出現模稜兩可的問題。如果模稜兩可的問題會造成麻煩,您可以使用 \k&lt;名稱&gt; 標記法,該標記法較為明確且不會與八進位逸出字元代碼搞混。同樣地,\xdd 等十六進位代碼也相當明確,不會與反向參考搞混。</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">編號反向參考</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">其他,控制</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">其他,格式</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">其他,未指派</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">其他,私用</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">其他,代理</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">正的字元群組會指定字元清單,其中的任一字元都可能會出現在輸入字串中,以便比對發生。</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">正值字元群組</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">正的字元範圍會指定字元範圍,其中的任一字元都可能會出現在輸入字串中,以便比對發生。'firstCharacter' 是開始範圍的字元,'lastCharacter' 則是結束範圍的字元。</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">正值字元範圍</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">標點符號,封閉</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">標點符號,連接子</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">標點符號,破折號</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">標點符號,最後引號</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">標點符號,初始引號</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">標點符號,開放</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">標點符號,其他</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">分隔符號,線條</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">分隔符號,段落</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">分隔符號,空格</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">\A 錨點會指定比對必須出現在輸入字串開頭。其與 ^ 錨點相同,差異在於 \A 會忽略 RegexOptions.Multiline 選項。因此,這個錨點只能多行輸入字串的第一行開頭。</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">僅字串開頭</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">^ 錨點會指定下列模式必須從字串第一個字元的位置開始。如果您搭配 RegexOptions.Multiline 選項使用 ^,比對就必須出現在每一行的開頭。</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">字串或行開頭</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">子運算式</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">符號,貨幣</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">符號,數學</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">符號,修飾元</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">符號,其他</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">比對定位字元 \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">定位字元</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">規則運算式建構 \P{ name } 會比對任何屬於 Unicode 一般分類或具名區塊的字元,其中名稱為分類縮寫或具名區塊名稱。</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">Unicode 分類</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">比對值為 #### 十六進位的 UTF-16 代碼單元。</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">unicode 逸出</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Unicode 一般分類: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">比對垂直定位字元 \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">垂直定位字元</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s 符合所有空白字元。其相當於以下逸出序列和 Unicode 分類: \f 換頁字元,\u000C \n 新行字元,\u000A \r 歸位字元,\u000D \t 定位字元,\u0009 \v 垂直定位字元,\u000B \x85 省略符號或 NEXT LINE (NEL) 字元 (…),\u0085 \p{Z} 符合所有分隔符號字元 如果有指定符合 ECMAScript 規範的行為,則 \s 相當於 [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">空白字元</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">\b 錨點會指定比對必須出現於文字字元 (\w 語言元素) 和非文字字元 (\W 語言元素) 之間的邊界上。文字字元由英數字元和底線組成; 非文字字元則為英數字元或底線除外的任何字元。比對也可能出現於字串開頭或結尾的文字邊界上。 \b 錨點通常用來確保子運算式會比對整個字組,而不是只比對字組的開頭或結尾。</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">字邊界</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w 符合所有字組字元。字組字元是以下任一 Unicode 分類的成員: Ll 字母,小寫 Lu 字母,大寫 Lt 字母,字首大寫 Lo 字母,其他 Lm 字母,修飾元 Mn 標記,非空格 Nd 數字,十進位數字 Pc 標點符號,接頭 如果有指定符合 ECMAScript 規範的行為,則 \w 相當於 [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">文字字元</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">是</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">零寬負右合樣判斷提示,如果要使比對成功,則輸入字串不得符合子運算式中的規則運算式模式。符合的字串不會包含在比對結果內。 零寬度 lookahead 判斷提示通常會用在規則運算式的開頭或結尾。在規則運算式的開頭,其可定義應符合的特定模式 (當規則運算式的開頭定義相似但更普通的應符合模式時)。在這種情況下,其常會用來限制回溯。在規則運算式的結尾,其可定義不會在比對結束時發生的子運算式。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">零寬負值右合樣判斷提示</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">零寬負左合樣判斷提示,如果要使比對成功,則 'subexpression' 不得發生在目前位置左側的輸入字串。所有不符合 'subexpression' 的子字串都不會包含在比對結果內。 零寬度負 lookbehind 判斷提示通常會用在規則運算式的開頭。其定義的模式會排除下一個字串中的相符項。其也常用於限制回溯 (當最後一個字元或已擷取群組中的字元不得為符合群組規則運算式模式的一或多個字元時)。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">零寬負值左合樣判斷提示</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">零寬正右合樣判斷提示,如果要使比對成功,則輸入字串必須符合 'subexpression' 中的規則運算式模式。符合的子字串不會包含在比對結果內。零寬度正 lookahead 判斷提示不會回溯。 一般來說,零寬度正 lookahead 判斷提示會出現在規則運算式模式的結尾。其會定義應出現在字串結尾以使比對發生,但不應包含在比對內的子字串。對於防止過度回溯來說,其也相當實用。您可以使用零寬度正 lookahead 判斷提示來確保特定已擷取群組會以符合為該已擷取群組定義之模式的子集開頭。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">零寬正值右合樣判斷提示</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">零寬正左合樣判斷提示,如果要使比對成功,則 'subexpression' 必須於目前位置左側的輸入字串發生。'subexpression' 不會包含在比對結果內。零寬度正 lookbehind 判斷提示不會回溯。 零寬度正 lookbehind 判斷提示通常會用在規則運算式的開頭。其定義的模式是比對的前置條件,但不是比對結果的一部份。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">零寬正值左合樣判斷提示</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">將不會更新中繼資料中所找到的相關方法簽章。</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">不支援移除文件</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">移除 'async' 修飾元</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">移除不必要的 Cast</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">移除未使用的變數</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">將 ‘{0}’ 取代為 ‘{1}'</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">解決衝突標記</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">粗略編輯</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">排序協助工具修飾元</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">分割成連續的 '{0}' 陳述式</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">分割成巢狀 '{0}' 陳述式</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">資料流必須支援讀取及搜尋作業。</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">隱藏 {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: 釋出非受控資源 (非受控物件) 並覆寫完成項</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: 僅有當 '{0}' 具有會釋出非受控資源的程式碼時,才覆寫完成項</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">目標類型相符項目</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">包含類型 '{1}' 的組件 '{0}' 參考了 .NET Framework,此情形不受支援。</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">選取範圍包含區域函式呼叫,但不含其宣告。</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">(?()|) 中太多 |</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">太多 )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">無法讀取來源檔案 '{0}' 或為包含該檔案之專案所建置的 PDB。等到此檔案的內容與已建置的來源一致後,才會套用於偵錯期間對此檔案所做的所有變更。</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">未知屬性</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">未知屬性 '{0}’</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">無法識別的控制字元</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">無法識別的逸出序列 \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">無法識別的分組建構</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">未結束的 [] 組合</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">未結束的 (?#...) 註解</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">將所有引數取消換行</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">將所有參數取消換行</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">將所有引數取消換行並縮排</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">將所有參數取消換行並縮排</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">將引數清單取消換行</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">將呼叫鏈取消包裝</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">將運算式取消換行</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">將參數清單取消換行</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">使用 Lambda 運算式的區塊主體</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">使用 Lambda 運算式的運算式主體</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">使用插入的逐字字串</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">警告: 轉換陳述式時,語意可能會變更。</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">包裝並對齊呼叫鏈</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">換行並對齊運算式</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">包裝並對齊長呼叫鏈</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">包裝呼叫鏈</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">包裝每個引數</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">將每個參數換行</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">換行運算式</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">包裝長引數清單</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">包裝長呼叫鏈</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">將長參數清單換行</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">換行</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">您可以使用導覽列切換內容。</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}' 不可為 Null 或空白。</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}' 不得為 Null 或空白字元。</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">'{0}' 在此不是 null。</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">'{0}' 在此可能為 null。</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">1/10,000,000 秒</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffffff" 自訂格式規範代表秒小數部分的最大有效位數為七; 換句話說,其代表日期與時間值中的千萬分之一秒。 雖然時間值的千萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">1/10,000,000 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFFF" 自訂格式規範代表秒小數部分的最大有效位數為七; 換句話說,其代表日期與時間值中的千萬分之一秒。但尾端為零或七個數字皆為零時,不會顯示零。 雖然時間值的千萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1/1,000,000 秒</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffffff" 自訂格式規範代表秒小數部分的最大有效位數為六; 換句話說,其代表日期與時間值中的百萬分之一秒。 雖然時間值的百萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1/1,000,000 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFF" 自訂格式規範代表秒小數部分的最大有效位數為六; 換句話說,其代表日期與時間值中的百萬分之一秒。但尾端為零或六個數字皆為零時,不會顯示零。 雖然時間值的百萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">1/100,000 秒</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffff" 自訂格式規範代表秒小數部分的最大有效位數為五; 換句話說,其代表日期與時間值中的十萬分之一秒。 雖然時間值的十萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">1/100,000 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFF" 自訂格式規範代表秒小數部分的最大有效位數為五; 換句話說,其代表日期與時間值中的十萬分之一秒。但尾端為零或五個數字皆為零時,不會顯示零。 雖然時間值的十萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">1/10,000 秒</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffff" 自訂格式規範代表秒小數部分的最大有效位數為四; 換句話說,其代表日期與時間值中的萬分之一秒。 雖然時間值的萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">1/10,000 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFF" 自訂格式規範代表秒小數部分的最大有效位數為四; 換句話說,其代表日期與時間值中的萬分之一秒。但尾端為零或四個數字皆為零時,不會顯示零。 雖然時間值的萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1/1,000 秒</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">"fff" 自訂格式規範代表秒小數部分的最大有效位數為三; 換句話說,其代表日期與時間值中的毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1/1,000 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">"FFF" 自訂格式規範代表秒小數部分的最大有效位數為三; 換句話說,其代表日期與時間值中的毫秒。但尾端為零或三個數字皆為零時,不會顯示零。</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">1/100 秒</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">"ff" 自訂格式規範代表秒小數部分的最大有效位數為二; 換句話說,其代表日期與時間值中的百分之一秒。</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">1/100 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">"FF" 自訂格式規範代表秒小數部分的最大有效位數為二; 換句話說,其代表日期與時間值中的百分之一秒。但尾端為零或兩個數字皆為零時,不會顯示零。</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">1/10 秒</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">1/10 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">"F" 自訂格式規範代表秒小數部分的最大有效位數; 換句話說,其代表日期與時間值中的十分之一秒。如果數字為零,即不會顯示。 如果在使用 "F" 格式規範時沒有其他格式規範,則會將其解譯為 "F" 標準日期與時間格式規範。 使用 ParseExact、TryParseExact、ParseExact 或 TryParseExact 方法時,所使用的 "F" 格式規範數字,代表成功剖析字串所能出現秒小數部分的最大有效位數。</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12 小時制 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"h" 自訂格式規範代表小時,以數字 1 到 12 表示; 換句話說,小時即為自午夜或中午起所經過的整數時數,是 12 小時制。午夜後經過特定小時數與中午後經過相同的小時數,會無法區別。小時不會四捨五入,而單一數字的小時格式,開頭不會出現零。例如,假設時間為上午或下午的 5:43,此自訂格式規範會顯示 "5"。 如果在使用 "h" 格式規範時沒有其他自訂格式規範,則會將其解譯為標準日期與時間格式規範,並擲回 FormatException。</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12 小時制 (2 位數)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">"hh" 自訂格式規範 (加上任意數目的其他 "h" 規範) 代表小時,以數字 01 到 12 表示; 換句話說,小時即為自午夜或中午起所經過的整數時數,是 12 小時制。午夜後經過特定小時數與中午後經過相同的小時數,會無法區別。小時不會四捨五入,而單一數字的小時格式,開頭不會出現零。例如,假設時間為上午或下午的 5:43,此自訂格式規範會顯示 "05"。</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24 小時制 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"H" 自訂格式規範代表小時,以數字 0 到 23 表示; 換句話說,小時即為自午夜起所經過的時數,是以零開始的 24 小時制。單一數字的小時格式,開頭不會出現零。 如果在使用 "H" 格式規範時沒有其他自訂格式規範,則會將其解譯為標準日期與時間格式規範,並擲回 FormatException。</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24 小時制 (2 位數)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">"HH" 自訂格式規範 (加上任意數目的其他 "H" 規範) 代表小時,以數字 00 到 23 表示; 換句話說,小時即為自午夜起所經過的時數,是以零開始的 24 小時制。單一數字的小時格式,開頭不會出現零。</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">代碼</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">日期分隔符號</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"/" 自訂格式規範代表日期分隔符號,可用於區分年、月和日。系統會從目前文化特性或所指定文化特性的 DateTimeFormatInfo.DateSeparator 屬性,擷取適當的當地語系化日期分隔符號。 注意: 若要變更特定日期與時間字串的日期分隔符號,請在常值字串分隔符號內指定分隔符號字元。例如,自訂格式字串 mm'/'dd'/'yyyy 所產生的結果字串,一律會以 "/" 作為日期分隔符號。若要變更某項文化特性所有日期的日期分隔符號,請變更目前文化特性的 DateTimeFormatInfo.DateSeparator 屬性值,或是將 DateTimeFormatInfo 物件具現化、將字元指派給其 DateSeparator 屬性,然後呼叫包含 IFormatProvider 參數的格式化方法多載。 如果在使用 "/" 格式規範時沒有其他自訂格式規範,則會將其解譯為標準日期與時間格式規範,並擲回 FormatException。</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">該月份第幾天 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">"d" 自訂格式規範代表該月份的哪一天,以數字 1 到 31 表示。單一數字的日期格式,開頭不會出現零。 如果在使用 "d" 格式規範時沒有其他自訂格式規範,則會將其解譯為 "d" 標準日期與時間格式規範。</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">該月份第幾天 (2 位數)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">"dd" 自訂格式字串代表該月的第幾天,以數字 01 到 31 來表示。單一數字的日期格式,開頭不會出現零。</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">星期幾 (縮寫)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">"ddd" 自訂格式規範代表星期幾的縮寫名稱。系統會從目前文化特性或指定文化特性的 DateTimeFormatInfo.AbbreviatedDayNames 屬性,擷取星期幾的當地語系化縮寫名稱。</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">星期幾 (完整)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">"dddd" 自訂格式規範 (加上任意數目的其他 "d" 規範) 代表星期幾的完整名稱。系統會從目前文化特性或指定文化特性的 DateTimeFormatInfo.DayNames 屬性,擷取星期幾的當地語系化名稱。</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">捨棄</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">來自中繼資料</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">完整日期/時間 (完整)</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">"F" 標準格式規範代表由目前 DateTimeFormatInfo.FullDateTimePattern 屬性所定義的自訂日期與時間格式字串。例如,不因文化特性而異的自訂格式字串為 "dddd, dd MMMM yyyy HH:mm:ss"。</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">完整日期/時間 (簡短)</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">完整日期簡短時間 ("f") 的格式規範 "f" 標準格式規範代表完整日期 ("D") 與簡短時間 ("t") 模式的組合 (以空格分隔)。</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">一般日期/時間 (完整)</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">"G" 標準格式規範代表簡短日期 ("d") 與完整時間 ("T") 模式的組合 (以空格分隔)。</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">一般日期/時間 (簡短)</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">"g" 標準格式規範代表簡短日期 ("d") 與簡短時間 ("t") 模式的組合 (以空格分隔)。</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">泛型多載</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">泛型多載</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">在 {0} ({1} - {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">在來源中 (屬性)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">完整日期</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">"D" 標準格式規範代表由目前 DateTimeFormatInfo.LongDatePattern 屬性所定義的自訂日期與時間格式字串。例如,不因文化特性而異的自訂格式字串為 "dddd, dd MMMM yyyy"。</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">完整時間</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">"T" 標準格式規範代表由特定文化特性的 DateTimeFormatInfo.LongTimePattern 屬性所定義的自訂日期與時間格式字串。例如,不因文化特性而異的自訂格式字串為 "HH:mm:ss"。</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">分鐘 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">"m" 自訂格式規範代表分鐘,以數字 0 到 59 表示。分鐘代表自上一個小時後所經過的整數分鐘數。單一數字的分鐘格式,開頭不會出現零。 如果在使用 "m" 格式規範時沒有其他自訂格式規範,則會將其解譯為 "m" 標準日期與時間格式規範。</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">分鐘 (2 位數)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">"mm" 自訂格式規範 (加上任意數目的其他 "m" 規範) 代表分鐘,以數字 00 到 59 表示。分鐘代表自上一個小時後,已經過的整數分鐘數。單一數字的分鐘格式,開頭不會出現零。</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">月份 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">"M" 自訂格式規範代表月份,以數字 1 到 12 表示 (若月曆有 13 個月,則以數字 1 到 13 表示)。單一數字的月份格式,開頭不會出現零。 如果在使用 "M" 格式規範時沒有其他自訂格式規範,則會將其解譯為 "M" 標準日期與時間格式規範。</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">月份 (2 位數)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">"MM" 自訂格式規範代表月份,以數字 01 到 12 表示 (若月曆有 13 個月,則以數字 1 到 13 表示)。單一數字的月份格式,開頭不會出現零。</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">月份 (縮寫)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">"MMM" 自訂格式規範代表該月份的縮寫名稱。系統會從目前文化特性或指定文化特性的 DateTimeFormatInfo.AbbreviatedMonthNames 屬性,擷取該月份的當地語系化縮寫名稱。</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">月日</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">"M" 或 "m" 標準格式規範代表由目前 DateTimeFormatInfo.MonthDayPattern 屬性所定義的自訂日期與時間格式字串。例如,不因文化特性而異的自訂格式字串為 "MMMM dd"。</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">月份 (完整)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">"MMMM" 自訂格式規範代表該月份的完整名稱。系統會從目前文化特性或指定文化特性的 DateTimeFormatInfo.MonthNames 屬性,擷取該月份的當地語系化名稱。</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">多載</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">多載</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} 關鍵字</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">封裝欄位: '{0}' (並使用屬性)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">封裝欄位: '{0}' (但仍使用欄位)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">封裝欄位 (並使用屬性)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">封裝欄位 (但仍使用欄位)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">無法擷取介面: 此選擇未落在 class/interface/struct 中。</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">無法擷取介面: 此類型不包含任何可以擷取至介面的成員。</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">無法建構最終的樹狀結構</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">參數的類型或傳回類型不可為匿名類型: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">選擇內容包含非現用的陳述式。</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">選擇範圍包含錯誤或不明類型。</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">類型參數 '{0}' 已由另一個類型參數 '{1}' 隱藏。</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">此變數位址會用於選取的節點中。</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">指派給唯讀欄位必須在建構函式 [{0}] 中完成。</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">產生的程式碼與程式碼的隱藏部分重疊</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">將選用參數新增至 '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">將參數新增至 '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">產生委派建構函式 '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">產生建構函式 '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">產生欄位指派建構函式 '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">產生 Equals 與 GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">產生 Equals(object)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">產生 GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">在 '{0}' 中產生建構函式</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">產生全部</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">產生列舉成員 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">產生常數 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">產生唯讀屬性 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">產生屬性 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">產生唯讀欄位 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">產生欄位 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">產生區域 '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">在新檔案中產生 {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">產生巢狀 {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">全域命名空間</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">以抽象方式實作介面</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">透過 '{0}' 實作介面</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">實作介面</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">為 '{0}' 引進欄位</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">為 '{0}' 引進區域</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">為 '{0}' 引進常數</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">為 '{0}' 引進區域常數</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">為所有出現 '{0}' 之處引進欄位</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">為所有出現 '{0}' 之處引進區域</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">為所有出現 '{0}' 之處引進常數</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">為所有出現 '{0}' 之處引進區域常數</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">為所有出現 '{0}' 之處引進查詢變數</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">為 '{0}' 引進查詢變數</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">匿名類型:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">是</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">表示其作業將於執行階段解決的物件。</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">常數</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">欄位</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">本機常數</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">區域變數</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">標籤</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">時期/年份</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">"g" 或 "gg" 自訂格式規範 (外加任意數目的額外 "g" 規範) 代表時期或年代 (例如西元)。若要格式化的日期沒有已建立關聯的時期或年代字串,則格式化作業就會忽略此規範。 如果使用 "g" 格式規範,而且沒有其他自訂格式規範,則會將其解譯為 "g" 標準日期和時間格式規範。</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">範圍變數</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">參數</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">在...中</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">摘要:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">區域變數和參數</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">類型參數:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">傳回:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">例外狀況:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">備註:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">不支援產生此類型之符號的來源</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">組件</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">位置不明</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">未預期的介面成員種類: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">符號種類不明</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">產生抽象屬性 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">產生抽象方法 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">產生方法 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">已從 '{0}' 載入所要求的組件。</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">這個符號沒有圖示。</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">非同步方法不可有 ref/out 參數: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">該成員定義於中繼資料內。</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">您只能變更建構函式、索引子、方法或委派的簽章。</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">中繼資料內包含有此符號的相關定義或參考。變更其簽章可能會導致建置錯誤。 要繼續嗎?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">變更簽章...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">產生新的類型...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">使用者診斷分析器失敗。</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">分析器 '{0}' 擲回類型 '{1}' 的例外狀況,訊息為 '{2}'。</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">分析器 '{0}' 擲回下列例外狀況: '{1}'。</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">簡化名稱</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">簡化成員存取</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">移除限定性條件</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">發生不明錯誤</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">可用</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">無法使用 ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">在原始程式檔中</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">在隱藏項目檔中</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">移除隱藏項目 {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">移除隱藏項目</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;暫止&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">注意: 按兩次 Tab 鍵即可插入 '{0}' 程式碼片段。</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">使用 Dispose 模式明確地實作介面</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">使用 Dispose 模式實作介面</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">重新分級 {0}(目前為 '{1}')</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">引數不能有 null 元素。</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">引數不可為空白。</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">分析器不支援識別碼為 '{0}' 的回報診斷。</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">正在計算修正所有出現程式碼修正之處...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">修正所有發生次數</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">文件</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">專案</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">解決方案</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: 處置受控狀態 (受控物件)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: 將大型欄位設為 Null</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">編譯器</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">即時</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">enum 值</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">const 欄位</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">方法</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">運算子</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">建構函式</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">Auto 屬性</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">屬性</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">事件存取子</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">rfc1123 日期/時間</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"R" 或 "r" 標準格式規範代表由 DateTimeFormatInfo.RFC1123Pattern 屬性所定義的自訂日期和時間格式字串。此模式會反映出已定義的標準,且屬性為唯讀。因此,不管使用何種文化特性 (Culture) 或提供何種格式提供者,其始終都相同。自訂格式字串為 "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'"。使用此標準格式規範時,格式化或剖析作業永遠不因文化特性而異。</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">來回行程日期/時間</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">"O" 或 "o" 標準格式規範會使用保留時區資訊並發出符合 ISO 8601 規範之結果字串的模式,來表示自訂日期和時間格式字串。對於 DateTime 值,此格式規範專用於以文字來保留日期和時間值以及 DateTime.Kind 屬性。如果樣式參數設定為 DateTimeStyles.RoundtripKind,就可以使用 DateTime.Parse(String, IFormatProvider, DateTimeStyles) 或 DateTime.ParseExact 方法來反向剖析格式化字串。 "O" 或 "o" 標準格式規範對應到 DateTime 值的 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" 自訂格式字串,以及 DateTimeOffset 值的 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" 自訂格式字串。在這個字串中,分隔個別字元 (例如連字號、冒號和字母 "T") 的成對單引號,表示個別字元為無法變更的常值。單引號則不會出現在輸出字串中。 "O" 或 "o" 標準格式規範 (以及 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" 自訂格式字串) 會利用 ISO 8601 用來表示時區資訊的三種方式,來保留 DateTime 值的 Kind 屬性: DateTimeKind.Local 日期和時間值的時區元件為 UTC 時差 (例如,+01:00、-07:00)。所有 DateTimeOffset 值也都以這種格式表示。 DateTimeKind.Utc 日期和時間值的時區元件使用 "Z" (代表零時差) 來表示 UTC。 DateTimeKind.Unspecified 的日期和時間值沒有時區資訊。 因為 "O" 或 "o" 標準格式規範符合國際標準,所以使用該規範的格式化或剖析作業,永遠不因文化特性而異並使用西曆。 如果傳遞給 DateTime 和 DateTimeOffset 之 Parse、TryParse、ParseExact 以及 TryParseExact 方法的字串採用上述其中一種格式,則可以使用 "O" 或 "o" 格式規範進行剖析。對於 DateTime 物件,您呼叫的剖析多載也應該包含具有 DateTimeStyles.RoundtripKind 值的樣式參數。請注意,如果您使用對應到 "O" 或 "o" 格式規範的自訂格式字串來呼叫剖析方法,就不會收到與 "O" 或 "o" 相同的結果。這是因為使用自訂格式字串的剖析方法無法剖析缺少時區元件或使用 "Z" 來表示 UTC 之日期和時間值的字串表示法。</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">秒 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">"s" 自訂格式規範會將秒數表示為 0 到 59 之間的數字。其結果代表自上一分鐘以來所經過的整數秒數。個位數的秒數開頭不會填補零。 如果使用 "s" 格式規範,而且沒有其他自訂格式規範,則會將其解譯為 "s" 標準日期和時間格式規範。</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">秒 (2 位數)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">"ss" 自訂格式規範 (外加任意數目的額外 "s" 規範) 會將秒數表示為 00 到 59 之間的數字。其結果代表自上一分鐘以來所經過的整數秒數。個位數的秒數開頭會填補零。</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">簡短日期</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">"d" 標準格式規範代表由特定文化特性 (Culture) DateTimeFormatInfo.ShortDatePattern 屬性所定義的自訂日期和時間格式字串。例如,由不因文化特性而異之 ShortDatePattern 屬性所傳回的自訂格式字串為 "MM/dd/yyyy"。</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">簡短時間</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">"t" 標準格式規範代表由目前 DateTimeFormatInfo.ShortTimePattern 屬性所定義的自訂日期和時間格式字串。例如,不因文化特性而異的自訂格式字串為 "HH:mm"。</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">可排序的日期/時間</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"s" 標準格式規範代表由 DateTimeFormatInfo.SortableDateTimePattern 屬性所定義的自訂日期和時間格式字串。此模式會反映出已定義的標準 (ISO 8601),且屬性為唯讀。因此,不管使用何種文化特性 (Culture) 或提供何種格式提供者,其永遠都相同。自訂格式字串為 "yyyy'-'MM'-'dd'T'HH':'mm':'ss"。 "s" 格式規範的用途為產生依日期和時間值一致地遞增或遞減排序的結果字串。因此,儘管 "s" 標準格式規範以一致的格式表示日期和時間值,但格式化作業並不會修改要格式化的日期和時間物件值,以反映其 DateTime.Kind 屬性或其 DateTimeOffset.Offset 值。例如,將日期和時間值 2014-11-15T18:32:17+00:00 和 2014-11-15T18:32:17+08:00 格式化所產生的結果字串會完全相同。 使用此標準格式規範時,格式化或剖析作業永遠不因文化特性而異。</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">靜態建構函式</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'symbol' 不可為命名空間。</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">時間分隔符號</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">":" 自訂格式規範代表時間分隔符號,用於區分小時、分鐘和秒。系統會從目前或指定文化特性 (Culture) 的 DateTimeFormatInfo.TimeSeparator 屬性,擷取適當的當地語系化時間分隔符號。 注意: 若要變更特定日期和時間字串的時間分隔符號,請在常值字串分隔符號內指定分隔符號字元。例如,自訂格式字串 hh'_'dd'_'ss 會產生結果字串,其中 "_" (底線) 永遠用作時間分隔符號。若要針對文化特性 (Culture) 變更所有日期的時間分隔符號,請變更目前文化特性 (Culture) 的 DateTimeFormatInfo.TimeSeparator 屬性值,或將 DateTimeFormatInfo 物件具現化,將字元指派給其 TimeSeparator 屬性,並呼叫包含 IFormatProvider 參數之格式化方法的多載。 如果使用 ":" 格式規範,而且沒有其他自訂格式規範,則會將其解譯為標準日期和時間格式規範,並擲回 FormatException。</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">時區</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"K" 自訂格式規範代表日期和時間值的時區資訊。當此格式規範與 DateTime 值一起使用時,結果字串會由 DateTime.Kind 屬性的值定義: 對於區域時區 (DateTimeKind.Local 的 DateTime.Kind 屬性值),此規範相當於 "zzz" 規範,並會產生結果字串,其包含區域時間與國際標準時間 (UTC) 的時差; 例如 "-07:00"。 對於 UTC 時間 (DateTimeKind.Utc 的 DateTime.Kind 屬性值),結果字串會包含表示 UTC 日期的 "Z" 字元。 對於未指定時區的時間 (DateTime.Kind 屬性等於 DateTimeKind.Unspecified 的時間),結果會等於 String.Empty。 對於 DateTimeOffset 值,"K" 格式規範相當於 "zzz" 格式規範,並會產生結果字串,其包含 DateTimeOffset 值的 UTC 時差。 如果使用 "K" 格式規範,而且沒有其他自訂格式規範,則會將其解譯為標準日期和時間格式規範,並擲回 FormatException。</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">類型條件約束</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">類型參數</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">屬性</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">以屬性取代 '{0}' 和 '{1}'</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">以屬性取代 '{0}'</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">隱含參考的方法</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">產生類型 '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">產生 {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">將 '{0}' 變更為 '{1}'。</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">非叫用的方法無法由屬性取代。</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">只有具備非 out 變數宣告之單一引數的方法可以由屬性取代。</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">無法從 {1}: {2} 建立分析器 {0} 的執行個體。</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">組件 {0} 不包含任何分析器。</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">無法載入分析器組件 {0}: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">讓方法同步</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">來自 {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">尋找並安裝最新版本</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">使用本機版本 '{0}'</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">使用安裝於本機的 '{0}' 版本 '{1}' 此版本用於: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">尋找並安裝 '{0}' 的最新版本</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">使用套件管理員安裝...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">安裝 '{0} {1}'</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">安裝 '{0}' 版</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">產生變數 '{0}'</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">類別</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">常數</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">委派</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">列舉</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">事件</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">擴充方法</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">欄位</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">介面</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">區域變數</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">方法</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">模組</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">命名空間</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">屬性</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">結構</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">參數:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Variadic SignatureHelpItem 至少必須要有一個參數。</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">以方法取代 '{0}'</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">以方法取代 '{0}'</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">隱含參考的屬性</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">以方法呼叫取代屬性並不安全</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">轉換為差補字串</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">將類型移到 {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">將檔案重新命名為 {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">將類型重新命名為 {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">移除標記</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">新增遺失的參數節點</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">讓包含範圍非同步</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">讓包含範圍非同步 (傳回工作)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(未知)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">使用架構類型</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">安裝套件 '{0}'</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">專案 {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">完整的 '{0}'</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">移除對 '{0}' 的參考。</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">關鍵字</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">程式碼片段</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">允許小寫</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">允許大寫</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">第一個字大寫</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Pascal 命名法的大小寫</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">移除文件 '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">新增文件 '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">新增引數名稱 '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">接受 '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">接受兩者</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">接受底端</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">接受頂端</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">移除未使用的變數</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">轉換為二進位</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">轉換為十進位</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">轉換為十六進位</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">分隔千分位</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">分隔字組</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">分隔半位元組</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">移除分隔符號</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">將參數新增至 '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">產生建構函式...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">選取要用作為建構函式參數的成員</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">選取要用於 Equals/GetHashCode 中的成員</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">產生覆寫...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">選取要覆寫的成員</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">新增 null 檢查</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">新增 'string.IsNullOrEmpty' 檢查</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">新增 'string.IsNullOrWhiteSpace' 檢查</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">初始化欄位 '{0}'</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">初始化屬性 '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">新增 null 檢查</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">產生運算子</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">實作 {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">回報的診斷 '{0}' 在檔案 '{1}' 中具有來源位置,其不屬於正在進行分析的編譯。</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">回報之診斷 '{0}' 中的來源位置 '{1}' 位於檔案 '{2}' 內,而該檔案不在指定的檔案內。</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">在 {0} 中 (專案 {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">新增協助工具修飾元</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">將宣告移近參考</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">轉換為完整屬性</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">警告: 方法會覆寫中繼資料的符號</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">使用 {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">新增引數名稱 '{0}' (包括結尾的引數)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">區域函式</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">索引子</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">別名不明確類型 '{0}'</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">警告: 集合已於反覆運算期間被修改</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">警告: 反覆運算變數已跨越函式界線</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">警告: 集合可能於反覆運算期間被修改</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">國際完整日期/時間</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">"U" 標準格式規範代表由指定文化特性 (Culture) DateTimeFormatInfo.FullDateTimePattern 屬性所定義的自訂日期和時間格式字串。其模式與 "F" 模式相同。不過,DateTime 值會在格式化前自動轉換為 UTC。</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">國際可排序的日期/時間</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">"u" 標準格式規範代表由 DateTimeFormatInfo.UniversalSortableDateTimePattern 屬性所定義的自訂日期和時間格式字串。此模式會反映出已定義的標準,且屬性為唯讀。因此,不管使用何種文化特性 (Culture) 或提供何種格式提供者,其永遠都相同。自訂格式字串為 "yyyy'-'MM'-'dd HH':'mm':'ss'Z'"。使用此標準格式規範時,格式化或剖析作業永遠不因文化特性而異。 雖然結果字串應以國際標準時間 (UTC) 表示時間,但在格式化作業期間,不會執行原始 DateTime 值的轉換。因此,您必須先呼叫 DateTime.ToUniversalTime 方法,將 DateTime 值轉換為 UTC,再將其格式化。</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">正在更新包含成員中的使用方式</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">正在更新包含專案中的使用方式</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">正在更新包含類型中的使用方式</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">正在更新相依專案中的使用方式</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">utc 小時和分鐘時差</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">使用 DateTime 值時,"zzz" 自訂格式規範代表區域作業系統時區與 UTC 的帶正負號時差 (以小時與分鐘為單位),且不會反映出執行個體的 DateTime.Kind 屬性值。因此,建議不要搭配 DateTime 值使用 "zzz" 格式規範。 對 DateTimeOffset 值而言,這個格式規範代表 DateTimeOffset 值的 UTC 時差 (以小時與分鐘為單位)。 時差的開頭永遠會顯示正負號。正號 (+) 表示早於 UTC 的小時數,負號 (-) 則表示晚於 UTC 的小時數。個位數的時差開頭會填補零。</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">utc 小時時差 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">使用 DateTime 值時,"z" 自訂格式規範代表區域作業系統時區與國際標準時間 (UTC) 的帶正負號時差 (以小時為單位),且不會反映出執行個體的 DateTime.Kind 屬性值。因此,建議不要搭配 DateTime 值使用 "z" 格式規範。 對 DateTimeOffset 值而言,這個格式規範代表 DateTimeOffset 值的 UTC 時差 (以小時為單位)。 時差的開頭永遠會顯示正負號。正號 (+) 表示早於 UTC 的小時數,負號 (-) 則表示晚於 UTC 的小時數。個位數的時差開頭不會填補零。 如果使用 "z" 格式規範,而且沒有其他自訂格式規範,則會將其解譯為標準日期和時間格式規範,並擲回 FormatException。</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">utc 小時時差 (2 位數)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">使用 DateTime 值時,"zz" 自訂格式規範代表區域作業系統時區與 UTC 的帶正負號時差 (以小時為單位),且不會反映出執行個體的 DateTime.Kind 屬性值。因此,建議不要搭配 DateTime 值使用 "zz" 格式規範。 對 DateTimeOffset 值而言,這個格式規範代表 DateTimeOffset 值的 UTC 時差 (以小時為單位)。 時差的開頭永遠會顯示正負號。正號 (+) 表示早於 UTC 的小時數,負號 (-) 則表示晚於 UTC 的小時數。個位數的時差開頭會填補零。</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">反向排序的 [x-y] 範圍</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">年份 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">"y" 自訂格式規範會將年份表示為個位數或雙位數數字。如果該年份超過雙位數,則結果只會顯示到十位數。如果雙位數年份的第一個位數開頭為零 (例如 2008),則該數字開頭不會填補零。 如果使用 "y" 格式規範,而且沒有其他自訂格式規範,則會將其解譯為 "y" 標準日期和時間格式規範。</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">年份 (2 位數)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">"yy" 自訂格式規範會將年份表示為雙位數數字。如果該年份超過雙位數,則結果只會顯示到十位數。如果雙位數年份的有效位數少於兩個,則會在該數字開頭填補零,以產生雙位數。 在剖析作業中,使用 "yy" 自訂格式規範剖析的雙位數年份,會依據格式提供者目前行事曆的 Calendar.TwoDigitYearMax 屬性來解譯。下列範例會使用 en-US 文化特性 (Culture) 的預設西曆,來剖析包含雙位數年份之日期的字串表示法,在此例中,en-US 文化特性 (Culture) 為目前的文化特性 (Culture)。接著會將目前文化特性 (Culture) 的 CultureInfo 物件,變更為使用已修改 TwoDigitYearMax 屬性的 GregorianCalendar 物件。</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">年份 (3-4 位數)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">"yyy" 自訂格式規範代表最少三位數的年份。如果該年份有三個以上的有效位數,則這些位數會包含在結果字串中。如果年份少於三位數,則會在該數字開頭填補零,以產生三位數。</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">年份 (4 位數)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">"yyyy" 自訂格式規範代表最少四位數的年份。如果該年份有四個以上的有效位數,則這些位數會包含在結果字串中。如果年份少於四位數,則會在該數字開頭填補零,以產生四位數。</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">年份 (5 位數)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">"yyyyy" 自訂格式規範 (外加任意數目的額外 "y" 規範) 代表最少五位數的年份。如果該年份有五個以上的有效位數,則這些位數會包含在結果字串中。如果年份少於五位數,則會在該數字開頭填補零,以產生五位數。 如果有額外的 "y" 規範,則會在該數字開頭視所需數目填補零,以產生該數目之多的 "y" 規範。</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">年份月份</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">"Y" 或 "y" 標準格式規範代表由指定文化特性 (Culture) DateTimeFormatInfo.YearMonthPattern 屬性所定義的自訂日期和時間格式字串。例如,不因文化特性而異的自訂格式字串為 "yyyy MMMM"。</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="zh-Hant" original="../FeaturesResources.resx"> <body> <trans-unit id="0_directive"> <source>#{0} directive</source> <target state="new">#{0} directive</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated"> <source>AM/PM (abbreviated)</source> <target state="translated">AM/PM (縮寫)</target> <note /> </trans-unit> <trans-unit id="AM_PM_abbreviated_description"> <source>The "t" custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. If the "t" format specifier is used without other custom format specifiers, it's interpreted as the "t" standard date and time format specifier.</source> <target state="translated">"t" 自訂格式規範代表 AM/PM 指示項的第一個字元。系統會從目前文化特性或特定文化特性的 DateTimeFormatInfo.AMDesignator 或 DateTimeFormatInfo.PMDesignator 屬性,擷取適當的當地語系化指示項。AM 指示項用來表示從 0:00:00 (午夜) 到 11:59:59.999 的所有時間。PM 指示項用來表示從 12:00:00 (中午) 到 23:59:59.999 的所有時間。 如果在使用 "t" 格式規範時沒有其他自訂格式規範,則會將其解譯為 "t" 標準日期與時間格式規範。</target> <note /> </trans-unit> <trans-unit id="AM_PM_full"> <source>AM/PM (full)</source> <target state="translated">AM/PM (完整)</target> <note /> </trans-unit> <trans-unit id="AM_PM_full_description"> <source>The "tt" custom format specifier (plus any number of additional "t" specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999. Make sure to use the "tt" specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.</source> <target state="translated">"tt" 自訂格式規範 (加上任意數目的其他 "t" 規範) 代表整個 AM/PM 指示項。系統會從目前文化特性或特定文化特性的 DateTimeFormatInfo.AMDesignator 或 DateTimeFormatInfo.PMDesignator 屬性,擷取適當的當地語系化指示項。AM 指示項用來表示從 0:00:00 (午夜) 到 11:59:59.999 的所有時間。PM 指示項用來表示從 12:00:00 (中午) 到 23:59:59.999 的所有時間。 對於需要保有 AM 與 PM 之間區別的語言來說,請務必對該語言使用 "tt" 規範。以日文為例,其 AM 和 PM 指示項是第二個字元不同,而非第一個字元不同。</target> <note /> </trans-unit> <trans-unit id="A_subtraction_must_be_the_last_element_in_a_character_class"> <source>A subtraction must be the last element in a character class</source> <target state="translated">減法必須是字元類別中的最後一個元素</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-[b]-c]</note> </trans-unit> <trans-unit id="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_requires_restarting_the_application"> <source>Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</source> <target state="new">Accessing captured variable '{0}' that hasn't been accessed before in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Add_DebuggerDisplay_attribute"> <source>Add 'DebuggerDisplay' attribute</source> <target state="translated">新增 'DebuggerDisplay' 屬性</target> <note>{Locked="DebuggerDisplay"} "DebuggerDisplay" is a BCL class and should not be localized.</note> </trans-unit> <trans-unit id="Add_explicit_cast"> <source>Add explicit cast</source> <target state="translated">新增明確轉換</target> <note /> </trans-unit> <trans-unit id="Add_member_name"> <source>Add member name</source> <target state="translated">新增成員名稱</target> <note /> </trans-unit> <trans-unit id="Add_null_checks_for_all_parameters"> <source>Add null checks for all parameters</source> <target state="translated">為所有參數新增 null 檢查</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameter_to_constructor"> <source>Add optional parameter to constructor</source> <target state="translated">將選擇性參數新增至建構函式</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0_and_overrides_implementations"> <source>Add parameter to '{0}' (and overrides/implementations)</source> <target state="translated">將參數新增至 '{0}' (以及覆寫/執行)</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_constructor"> <source>Add parameter to constructor</source> <target state="translated">將參數新增至建構函式</target> <note /> </trans-unit> <trans-unit id="Add_project_reference_to_0"> <source>Add project reference to '{0}'.</source> <target state="translated">加入對 '{0}' 的專案參考。</target> <note /> </trans-unit> <trans-unit id="Add_reference_to_0"> <source>Add reference to '{0}'.</source> <target state="translated">加入對 '{0}' 的參考。</target> <note /> </trans-unit> <trans-unit id="Actions_can_not_be_empty"> <source>Actions can not be empty.</source> <target state="translated">動作不可為空。</target> <note /> </trans-unit> <trans-unit id="Add_tuple_element_name_0"> <source>Add tuple element name '{0}'</source> <target state="translated">新增元組元素名稱 ‘{0}’</target> <note /> </trans-unit> <trans-unit id="Adding_0_around_an_active_statement_requires_restarting_the_application"> <source>Adding {0} around an active statement requires restarting the application.</source> <target state="new">Adding {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_1_requires_restarting_the_application"> <source>Adding {0} into a {1} requires restarting the application.</source> <target state="new">Adding {0} into a {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_class_with_explicit_or_sequential_layout_requires_restarting_the_application"> <source>Adding {0} into a class with explicit or sequential layout requires restarting the application.</source> <target state="new">Adding {0} into a class with explicit or sequential layout requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_a_generic_type_requires_restarting_the_application"> <source>Adding {0} into a generic type requires restarting the application.</source> <target state="new">Adding {0} into a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_method_requires_restarting_the_application"> <source>Adding {0} into an interface method requires restarting the application.</source> <target state="new">Adding {0} into an interface method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_into_an_interface_requires_restarting_the_application"> <source>Adding {0} into an interface requires restarting the application.</source> <target state="new">Adding {0} into an interface requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_requires_restarting_the_application"> <source>Adding {0} requires restarting the application.</source> <target state="new">Adding {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Adding {0} that accesses captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_0_with_the_Handles_clause_requires_restarting_the_application"> <source>Adding {0} with the Handles clause requires restarting the application.</source> <target state="new">Adding {0} with the Handles clause requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_MustOverride_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding a MustOverride {0} or overriding an inherited {0} requires restarting the application.</target> <note>{Locked="MustOverride"} "MustOverride" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_requires_restarting_the_application"> <source>Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</source> <target state="new">Adding a constructor to a type with a field or property initializer that contains an anonymous function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_generic_0_requires_restarting_the_application"> <source>Adding a generic {0} requires restarting the application.</source> <target state="new">Adding a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_method_with_an_explicit_interface_specifier_requires_restarting_the_application"> <source>Adding a method with an explicit interface specifier requires restarting the application.</source> <target state="new">Adding a method with an explicit interface specifier requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_new_file_requires_restarting_the_application"> <source>Adding a new file requires restarting the application.</source> <target state="new">Adding a new file requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_a_user_defined_0_requires_restarting_the_application"> <source>Adding a user defined {0} requires restarting the application.</source> <target state="new">Adding a user defined {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_abstract_0_or_overriding_an_inherited_0_requires_restarting_the_application"> <source>Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</source> <target state="new">Adding an abstract {0} or overriding an inherited {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Adding_an_extern_0_requires_restarting_the_application"> <source>Adding an extern {0} requires restarting the application.</source> <target state="new">Adding an extern {0} requires restarting the application.</target> <note>{Locked="extern"} "extern" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Adding_an_imported_method_requires_restarting_the_application"> <source>Adding an imported method requires restarting the application.</source> <target state="new">Adding an imported method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_arguments"> <source>Align wrapped arguments</source> <target state="translated">對齊包裝的引數</target> <note /> </trans-unit> <trans-unit id="Align_wrapped_parameters"> <source>Align wrapped parameters</source> <target state="translated">對齊包裝的參數</target> <note /> </trans-unit> <trans-unit id="Alternation_conditions_cannot_be_comments"> <source>Alternation conditions cannot be comments</source> <target state="translated">替代條件不可為註解</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a|(?#b)</note> </trans-unit> <trans-unit id="Alternation_conditions_do_not_capture_and_cannot_be_named"> <source>Alternation conditions do not capture and cannot be named</source> <target state="translated">替代條件不會擷取,也無法命名</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(?'x'))</note> </trans-unit> <trans-unit id="An_update_that_causes_the_return_type_of_implicit_main_to_change_requires_restarting_the_application"> <source>An update that causes the return type of the implicit Main method to change requires restarting the application.</source> <target state="new">An update that causes the return type of the implicit Main method to change requires restarting the application.</target> <note>{Locked="Main"} is C# keywords and should not be localized.</note> </trans-unit> <trans-unit id="Apply_file_header_preferences"> <source>Apply file header preferences</source> <target state="translated">套用檔案標題的喜好設定</target> <note /> </trans-unit> <trans-unit id="Apply_object_collection_initialization_preferences"> <source>Apply object/collection initialization preferences</source> <target state="translated">套用物件/集合初始設定喜好設定</target> <note /> </trans-unit> <trans-unit id="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_requires_restarting_the_application"> <source>Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</source> <target state="new">Attribute '{0}' is missing. Updating an async method or an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Asynchronously_waits_for_the_task_to_finish"> <source>Asynchronously waits for the task to finish.</source> <target state="new">Asynchronously waits for the task to finish.</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_0"> <source>Awaited task returns '{0}'</source> <target state="translated">等待的工作會傳回 '{0}'</target> <note /> </trans-unit> <trans-unit id="Awaited_task_returns_no_value"> <source>Awaited task returns no value</source> <target state="translated">等待的工作不會傳回任何值</target> <note /> </trans-unit> <trans-unit id="Base_classes_contain_inaccessible_unimplemented_members"> <source>Base classes contain inaccessible unimplemented members</source> <target state="translated">基底類別包含無法存取的未實作成員</target> <note /> </trans-unit> <trans-unit id="CannotApplyChangesUnexpectedError"> <source>Cannot apply changes -- unexpected error: '{0}'</source> <target state="translated">無法套用變更 -- 未預期的錯誤: '{0}'</target> <note /> </trans-unit> <trans-unit id="Cannot_include_class_0_in_character_range"> <source>Cannot include class \{0} in character range</source> <target state="translated">無法在字元範圍內包含類別 \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [a-\w]. {0} is the invalid class (\w here)</note> </trans-unit> <trans-unit id="Capture_group_numbers_must_be_less_than_or_equal_to_Int32_MaxValue"> <source>Capture group numbers must be less than or equal to Int32.MaxValue</source> <target state="translated">擷取群組號碼必須小於或等於 Int32.MaxValue</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{2147483648}</note> </trans-unit> <trans-unit id="Capture_number_cannot_be_zero"> <source>Capture number cannot be zero</source> <target state="translated">擷取號碼不可為零</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;0&gt;a)</note> </trans-unit> <trans-unit id="Capturing_variable_0_that_hasn_t_been_captured_before_requires_restarting_the_application"> <source>Capturing variable '{0}' that hasn't been captured before requires restarting the application.</source> <target state="new">Capturing variable '{0}' that hasn't been captured before requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_access_captured_variable_0_in_1_requires_restarting_the_application"> <source>Ceasing to access captured variable '{0}' in {1} requires restarting the application.</source> <target state="new">Ceasing to access captured variable '{0}' in {1} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Ceasing_to_capture_variable_0_requires_restarting_the_application"> <source>Ceasing to capture variable '{0}' requires restarting the application.</source> <target state="new">Ceasing to capture variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterInferValue"> <source>&lt;infer&gt;</source> <target state="translated">&lt;推斷&gt;</target> <note /> </trans-unit> <trans-unit id="ChangeSignature_NewParameterIntroduceTODOVariable"> <source>TODO</source> <target state="translated">TODO</target> <note>"TODO" is an indication that there is work still to be done.</note> </trans-unit> <trans-unit id="ChangeSignature_NewParameterOmitValue"> <source>&lt;omit&gt;</source> <target state="translated">&lt;省略&gt;</target> <note /> </trans-unit> <trans-unit id="Change_namespace_to_0"> <source>Change namespace to '{0}'</source> <target state="translated">將命名空間變更為 ‘{0}'</target> <note /> </trans-unit> <trans-unit id="Change_to_global_namespace"> <source>Change to global namespace</source> <target state="translated">變更為全域命名空間</target> <note /> </trans-unit> <trans-unit id="ChangesDisallowedWhileStoppedAtException"> <source>Changes are not allowed while stopped at exception</source> <target state="translated">於例外狀況停止時不允許變更</target> <note /> </trans-unit> <trans-unit id="ChangesNotAppliedWhileRunning"> <source>Changes made in project '{0}' will not be applied while the application is running</source> <target state="translated">將不會在應用程式執行時套用在專案 '{0}' 中所做的變更</target> <note /> </trans-unit> <trans-unit id="ChangesRequiredSynthesizedType"> <source>One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</source> <target state="new">One or more changes result in a new type being created by the compiler, which requires restarting the application because it is not supported by the runtime</target> <note /> </trans-unit> <trans-unit id="Changing_0_from_asynchronous_to_synchronous_requires_restarting_the_application"> <source>Changing {0} from asynchronous to synchronous requires restarting the application.</source> <target state="new">Changing {0} from asynchronous to synchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_0_to_1_requires_restarting_the_application_because_it_changes_the_shape_of_the_state_machine"> <source>Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</source> <target state="new">Changing '{0}' to '{1}' requires restarting the application because it changes the shape of the state machine.</target> <note /> </trans-unit> <trans-unit id="Changing_a_field_to_an_event_or_vice_versa_requires_restarting_the_application"> <source>Changing a field to an event or vice versa requires restarting the application.</source> <target state="new">Changing a field to an event or vice versa requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_constraints_of_0_requires_restarting_the_application"> <source>Changing constraints of {0} requires restarting the application.</source> <target state="new">Changing constraints of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_parameter_types_of_0_requires_restarting_the_application"> <source>Changing parameter types of {0} requires restarting the application.</source> <target state="new">Changing parameter types of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_pseudo_custom_attribute_0_of_1_requires_restarting_th_application"> <source>Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</source> <target state="new">Changing pseudo-custom attribute '{0}' of {1} requires restarting the application</target> <note /> </trans-unit> <trans-unit id="Changing_the_declaration_scope_of_a_captured_variable_0_requires_restarting_the_application"> <source>Changing the declaration scope of a captured variable '{0}' requires restarting the application.</source> <target state="new">Changing the declaration scope of a captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_parameters_of_0_requires_restarting_the_application"> <source>Changing the parameters of {0} requires restarting the application.</source> <target state="new">Changing the parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_return_type_of_0_requires_restarting_the_application"> <source>Changing the return type of {0} requires restarting the application.</source> <target state="new">Changing the return type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_0_requires_restarting_the_application"> <source>Changing the type of {0} requires restarting the application.</source> <target state="new">Changing the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_requires_restarting_the_application"> <source>Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</source> <target state="new">Changing the type of a captured variable '{0}' previously of type '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_type_parameters_of_0_requires_restarting_the_application"> <source>Changing type parameters of {0} requires restarting the application.</source> <target state="new">Changing type parameters of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Changing_visibility_of_0_requires_restarting_the_application"> <source>Changing visibility of {0} requires restarting the application.</source> <target state="new">Changing visibility of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Configure_0_code_style"> <source>Configure {0} code style</source> <target state="translated">設定 {0} 程式碼樣式</target> <note /> </trans-unit> <trans-unit id="Configure_0_severity"> <source>Configure {0} severity</source> <target state="translated">設定 {0} 嚴重性</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_0_analyzers"> <source>Configure severity for all '{0}' analyzers</source> <target state="translated">設定所有 '{0}' 分析器的嚴重性</target> <note /> </trans-unit> <trans-unit id="Configure_severity_for_all_analyzers"> <source>Configure severity for all analyzers</source> <target state="translated">設定所有分析器的嚴重性</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq"> <source>Convert to LINQ</source> <target state="translated">轉換至 LINQ</target> <note /> </trans-unit> <trans-unit id="Add_to_0"> <source>Add to '{0}'</source> <target state="translated">新增至 '{0}'</target> <note /> </trans-unit> <trans-unit id="Convert_to_class"> <source>Convert to class</source> <target state="translated">轉換為類別</target> <note /> </trans-unit> <trans-unit id="Convert_to_linq_call_form"> <source>Convert to LINQ (call form)</source> <target state="translated">轉換為 LINQ (呼叫表單)</target> <note /> </trans-unit> <trans-unit id="Convert_to_record"> <source>Convert to record</source> <target state="translated">轉換為記錄</target> <note /> </trans-unit> <trans-unit id="Convert_to_record_struct"> <source>Convert to record struct</source> <target state="translated">轉換成記錄結構</target> <note /> </trans-unit> <trans-unit id="Convert_to_struct"> <source>Convert to struct</source> <target state="translated">轉換為結構</target> <note /> </trans-unit> <trans-unit id="Convert_type_to_0"> <source>Convert type to '{0}'</source> <target state="translated">將類型轉換為 '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_field_0"> <source>Create and assign field '{0}'</source> <target state="translated">建立並指派欄位 '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_property_0"> <source>Create and assign property '{0}'</source> <target state="translated">建立並指派屬性 '{0}'</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_fields"> <source>Create and assign remaining as fields</source> <target state="translated">建立其餘項目並將其指派為欄位</target> <note /> </trans-unit> <trans-unit id="Create_and_assign_remaining_as_properties"> <source>Create and assign remaining as properties</source> <target state="translated">建立其餘項目並將其指派為屬性</target> <note /> </trans-unit> <trans-unit id="Deleting_0_around_an_active_statement_requires_restarting_the_application"> <source>Deleting {0} around an active statement requires restarting the application.</source> <target state="new">Deleting {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_0_requires_restarting_the_application"> <source>Deleting {0} requires restarting the application.</source> <target state="new">Deleting {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Deleting_captured_variable_0_requires_restarting_the_application"> <source>Deleting captured variable '{0}' requires restarting the application.</source> <target state="new">Deleting captured variable '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Do_not_change_this_code_Put_cleanup_code_in_0_method"> <source>Do not change this code. Put cleanup code in '{0}' method</source> <target state="translated">請勿變更此程式碼。請將清除程式碼放入 '{0}' 方法</target> <note /> </trans-unit> <trans-unit id="DocumentIsOutOfSyncWithDebuggee"> <source>The current content of source file '{0}' does not match the built source. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">來源檔案 '{0}' 目前的內容與已建置的來源不一致。等到此檔案的內容與已建置的來源一致後,才會套用於偵錯期間對此檔案所做的所有變更。</target> <note /> </trans-unit> <trans-unit id="Document_must_be_contained_in_the_workspace_that_created_this_service"> <source>Document must be contained in the workspace that created this service</source> <target state="translated">文件必須包含在此服務所建立的工作區中</target> <note /> </trans-unit> <trans-unit id="EditAndContinue"> <source>Edit and Continue</source> <target state="translated">編輯並繼續</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByModule"> <source>Edit and Continue disallowed by module</source> <target state="translated">模組不允許編輯和繼續</target> <note /> </trans-unit> <trans-unit id="EditAndContinueDisallowedByProject"> <source>Changes made in project '{0}' require restarting the application: {1}</source> <target state="needs-review-translation">在專案 '{0}' 中所做的變更將使偵錯工作階段無法繼續: {1}</target> <note /> </trans-unit> <trans-unit id="Edit_and_continue_is_not_supported_by_the_runtime"> <source>Edit and continue is not supported by the runtime.</source> <target state="translated">執行階段不支援編輯後繼續。</target> <note /> </trans-unit> <trans-unit id="ErrorReadingFile"> <source>Error while reading file '{0}': {1}</source> <target state="translated">讀取檔案 '{0}' 時發生錯誤: {1}</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider"> <source>Error creating instance of CodeFixProvider</source> <target state="translated">建立 CodeFixProvider 的執行個體時發生錯誤</target> <note /> </trans-unit> <trans-unit id="Error_creating_instance_of_CodeFixProvider_0"> <source>Error creating instance of CodeFixProvider '{0}'</source> <target state="translated">建立 CodeFixProvider '{0}' 的執行個體時發生錯誤</target> <note /> </trans-unit> <trans-unit id="Example"> <source>Example:</source> <target state="translated">範例:</target> <note>Singular form when we want to show an example, but only have one to show.</note> </trans-unit> <trans-unit id="Examples"> <source>Examples:</source> <target state="translated">範例:</target> <note>Plural form when we have multiple examples to show.</note> </trans-unit> <trans-unit id="Explicitly_implemented_methods_of_records_must_have_parameter_names_that_match_the_compiler_generated_equivalent_0"> <source>Explicitly implemented methods of records must have parameter names that match the compiler generated equivalent '{0}'</source> <target state="translated">記錄的明確實作方法,必須有參數名稱符合編譯器產生的相等 '{0}'</target> <note /> </trans-unit> <trans-unit id="Extract_base_class"> <source>Extract base class...</source> <target state="translated">擷取基底類別...</target> <note /> </trans-unit> <trans-unit id="Extract_interface"> <source>Extract interface...</source> <target state="translated">擷取介面...</target> <note /> </trans-unit> <trans-unit id="Extract_local_function"> <source>Extract local function</source> <target state="translated">擷取區域函式</target> <note /> </trans-unit> <trans-unit id="Extract_method"> <source>Extract method</source> <target state="translated">擷取方法</target> <note /> </trans-unit> <trans-unit id="Failed_to_analyze_data_flow_for_0"> <source>Failed to analyze data-flow for: {0}</source> <target state="translated">無法分析下列項目的資料流程: {0}</target> <note /> </trans-unit> <trans-unit id="Fix_formatting"> <source>Fix formatting</source> <target state="translated">修正格式化</target> <note /> </trans-unit> <trans-unit id="Fix_typo_0"> <source>Fix typo '{0}'</source> <target state="translated">修正錯字 '{0}'</target> <note /> </trans-unit> <trans-unit id="Format_document"> <source>Format document</source> <target state="translated">格式化文件</target> <note /> </trans-unit> <trans-unit id="Formatting_document"> <source>Formatting document</source> <target state="translated">正在將文件格式化</target> <note /> </trans-unit> <trans-unit id="Generate_comparison_operators"> <source>Generate comparison operators</source> <target state="translated">產生比較運算子</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_fields"> <source>Generate constructor in '{0}' (with fields)</source> <target state="translated">在 '{0}' 中產生建構函式 (使用欄位)</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0_with_properties"> <source>Generate constructor in '{0}' (with properties)</source> <target state="translated">在 '{0}' 中產生建構函式 (使用屬性)</target> <note /> </trans-unit> <trans-unit id="Generate_for_0"> <source>Generate for '{0}'</source> <target state="translated">為 '{0}' 產生</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0"> <source>Generate parameter '{0}'</source> <target state="translated">產生參數 '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_parameter_0_and_overrides_implementations"> <source>Generate parameter '{0}' (and overrides/implementations)</source> <target state="translated">產生參數 '{0}' (以及覆寫/實作)</target> <note /> </trans-unit> <trans-unit id="Illegal_backslash_at_end_of_pattern"> <source>Illegal \ at end of pattern</source> <target state="translated">模式結尾使用 \ 不符合格式規定</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \</note> </trans-unit> <trans-unit id="Illegal_x_y_with_x_less_than_y"> <source>Illegal {x,y} with x &gt; y</source> <target state="translated">x 大於 y 的 {x,y} 不符合格式</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a{1,0}</note> </trans-unit> <trans-unit id="Implement_0_explicitly"> <source>Implement '{0}' explicitly</source> <target state="translated">明確實作 '{0}'</target> <note /> </trans-unit> <trans-unit id="Implement_0_implicitly"> <source>Implement '{0}' implicitly</source> <target state="translated">隱含實作 '{0}'</target> <note /> </trans-unit> <trans-unit id="Implement_abstract_class"> <source>Implement abstract class</source> <target state="translated">實作抽象類別</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_explicitly"> <source>Implement all interfaces explicitly</source> <target state="translated">明確實作所有介面</target> <note /> </trans-unit> <trans-unit id="Implement_all_interfaces_implicitly"> <source>Implement all interfaces implicitly</source> <target state="translated">隱含實作所有介面</target> <note /> </trans-unit> <trans-unit id="Implement_all_members_explicitly"> <source>Implement all members explicitly</source> <target state="translated">明確實作所有成員</target> <note /> </trans-unit> <trans-unit id="Implement_explicitly"> <source>Implement explicitly</source> <target state="translated">明確實作</target> <note /> </trans-unit> <trans-unit id="Implement_implicitly"> <source>Implement implicitly</source> <target state="translated">隱含實作</target> <note /> </trans-unit> <trans-unit id="Implement_remaining_members_explicitly"> <source>Implement remaining members explicitly</source> <target state="translated">明確實作剩餘的成員</target> <note /> </trans-unit> <trans-unit id="Implement_through_0"> <source>Implement through '{0}'</source> <target state="translated">透過 '{0}' 實作</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_as_read_only_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' as read only requires restarting the application,</source> <target state="new">Implementing a record positional parameter '{0}' as read only requires restarting the application,</target> <note /> </trans-unit> <trans-unit id="Implementing_a_record_positional_parameter_0_with_a_set_accessor_requires_restarting_the_application"> <source>Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</source> <target state="new">Implementing a record positional parameter '{0}' with a set accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Incomplete_character_escape"> <source>Incomplete \p{X} character escape</source> <target state="translated">不完整的 \p{X} 字元逸出</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{ Cc }</note> </trans-unit> <trans-unit id="Indent_all_arguments"> <source>Indent all arguments</source> <target state="translated">將所有引數縮排</target> <note /> </trans-unit> <trans-unit id="Indent_all_parameters"> <source>Indent all parameters</source> <target state="translated">將所有參數縮排</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_arguments"> <source>Indent wrapped arguments</source> <target state="translated">將包裝的引數縮排</target> <note /> </trans-unit> <trans-unit id="Indent_wrapped_parameters"> <source>Indent wrapped parameters</source> <target state="translated">將換行參數縮排</target> <note /> </trans-unit> <trans-unit id="Inline_0"> <source>Inline '{0}'</source> <target state="translated">內嵌 '{0}'</target> <note /> </trans-unit> <trans-unit id="Inline_and_keep_0"> <source>Inline and keep '{0}'</source> <target state="translated">內嵌並保留 '{0}'</target> <note /> </trans-unit> <trans-unit id="Insufficient_hexadecimal_digits"> <source>Insufficient hexadecimal digits</source> <target state="translated">十六進位數位不足</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \x</note> </trans-unit> <trans-unit id="Introduce_constant"> <source>Introduce constant</source> <target state="translated">引進常數</target> <note /> </trans-unit> <trans-unit id="Introduce_field"> <source>Introduce field</source> <target state="translated">引進欄位</target> <note /> </trans-unit> <trans-unit id="Introduce_local"> <source>Introduce local</source> <target state="translated">引進區域函式</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter"> <source>Introduce parameter</source> <target state="new">Introduce parameter</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_0"> <source>Introduce parameter for '{0}'</source> <target state="new">Introduce parameter for '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_parameter_for_all_occurrences_of_0"> <source>Introduce parameter for all occurrences of '{0}'</source> <target state="new">Introduce parameter for all occurrences of '{0}'</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable"> <source>Introduce query variable</source> <target state="translated">引進查詢變數</target> <note /> </trans-unit> <trans-unit id="Invalid_group_name_Group_names_must_begin_with_a_word_character"> <source>Invalid group name: Group names must begin with a word character</source> <target state="translated">群組名稱無效: 群組名稱必須以文字字元開頭</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;a &gt;a)</note> </trans-unit> <trans-unit id="Invalid_selection"> <source>Invalid selection.</source> <target state="new">Invalid selection.</target> <note /> </trans-unit> <trans-unit id="Make_class_abstract"> <source>Make class 'abstract'</source> <target state="translated">將類別設為 'abstract'</target> <note /> </trans-unit> <trans-unit id="Make_member_static"> <source>Make static</source> <target state="translated">使其變成靜態</target> <note /> </trans-unit> <trans-unit id="Invert_conditional"> <source>Invert conditional</source> <target state="translated">反轉條件</target> <note /> </trans-unit> <trans-unit id="Making_a_method_an_iterator_requires_restarting_the_application"> <source>Making a method an iterator requires restarting the application.</source> <target state="new">Making a method an iterator requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Making_a_method_asynchronous_requires_restarting_the_application"> <source>Making a method asynchronous requires restarting the application.</source> <target state="new">Making a method asynchronous requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Malformed"> <source>malformed</source> <target state="translated">語式錯誤</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0</note> </trans-unit> <trans-unit id="Malformed_character_escape"> <source>Malformed \p{X} character escape</source> <target state="translated">\p{X} 字元逸出語式錯誤</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p {Cc}</note> </trans-unit> <trans-unit id="Malformed_named_back_reference"> <source>Malformed \k&lt;...&gt; named back reference</source> <target state="translated">以 \k&lt;...&gt; 命名的反向參考語式錯誤</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k'</note> </trans-unit> <trans-unit id="Merge_with_nested_0_statement"> <source>Merge with nested '{0}' statement</source> <target state="translated">與巢狀 '{0}' 陳述式合併</target> <note /> </trans-unit> <trans-unit id="Merge_with_next_0_statement"> <source>Merge with next '{0}' statement</source> <target state="translated">與下一個 '{0}' 陳述式合併</target> <note /> </trans-unit> <trans-unit id="Merge_with_outer_0_statement"> <source>Merge with outer '{0}' statement</source> <target state="translated">與外部 '{0}' 陳述式合併</target> <note /> </trans-unit> <trans-unit id="Merge_with_previous_0_statement"> <source>Merge with previous '{0}' statement</source> <target state="translated">與上一個 '{0}' 陳述式合併</target> <note /> </trans-unit> <trans-unit id="MethodMustReturnStreamThatSupportsReadAndSeek"> <source>{0} must return a stream that supports read and seek operations.</source> <target state="translated">{0} 必須傳回支援讀取和搜尋作業的資料流。</target> <note /> </trans-unit> <trans-unit id="Missing_control_character"> <source>Missing control character</source> <target state="translated">缺少控制字元</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \c</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_a_static_variable_requires_restarting_the_application"> <source>Modifying {0} which contains a static variable requires restarting the application.</source> <target state="new">Modifying {0} which contains a static variable requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_requires_restarting_the_application"> <source>Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</source> <target state="new">Modifying {0} which contains an Aggregate, Group By, or Join query clauses requires restarting the application.</target> <note>{Locked="Aggregate"}{Locked="Group By"}{Locked="Join"} are VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_0_which_contains_the_stackalloc_operator_requires_restarting_the_application"> <source>Modifying {0} which contains the stackalloc operator requires restarting the application.</source> <target state="new">Modifying {0} which contains the stackalloc operator requires restarting the application.</target> <note>{Locked="stackalloc"} "stackalloc" is C# keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_requires_restarting_the_application"> <source>Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</source> <target state="new">Modifying a catch/finally handler with an active statement in the try block requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_catch_handler_around_an_active_statement_requires_restarting_the_application"> <source>Modifying a catch handler around an active statement requires restarting the application.</source> <target state="new">Modifying a catch handler around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_generic_method_requires_restarting_the_application"> <source>Modifying a generic method requires restarting the application.</source> <target state="new">Modifying a generic method requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_method_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying a method inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying a method inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_requires_restarting_the_application"> <source>Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</source> <target state="new">Modifying a try/catch/finally statement when the finally block is active requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_requires_restarting_the_application"> <source>Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</source> <target state="new">Modifying an active {0} which contains On Error or Resume statements requires restarting the application.</target> <note>{Locked="On Error"}{Locked="Resume"} is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_because_the_body_has_too_many_statements"> <source>Modifying the body of {0} requires restarting the application because the body has too many statements.</source> <target state="new">Modifying the body of {0} requires restarting the application because the body has too many statements.</target> <note /> </trans-unit> <trans-unit id="Modifying_body_of_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying the body of {0} requires restarting the application due to internal error: {1}</source> <target state="new">Modifying the body of {0} requires restarting the application due to internal error: {1}</target> <note>{1} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_because_the_file_is_too_big"> <source>Modifying source file '{0}' requires restarting the application because the file is too big.</source> <target state="new">Modifying source file '{0}' requires restarting the application because the file is too big.</target> <note /> </trans-unit> <trans-unit id="Modifying_source_file_0_requires_restarting_the_application_due_to_internal_error_1"> <source>Modifying source file '{0}' requires restarting the application due to internal error: {1}</source> <target state="new">Modifying source file '{0}' requires restarting the application due to internal error: {1}</target> <note>{2} is a multi-line exception message including a stacktrace. Place it at the end of the message and don't add any punctation after or around {1}</note> </trans-unit> <trans-unit id="Modifying_source_with_experimental_language_features_enabled_requires_restarting_the_application"> <source>Modifying source with experimental language features enabled requires restarting the application.</source> <target state="new">Modifying source with experimental language features enabled requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_the_initializer_of_0_in_a_generic_type_requires_restarting_the_application"> <source>Modifying the initializer of {0} in a generic type requires restarting the application.</source> <target state="new">Modifying the initializer of {0} in a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_requires_restarting_the_application"> <source>Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</source> <target state="new">Modifying whitespace or comments in {0} inside the context of a generic type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Modifying_whitespace_or_comments_in_a_generic_0_requires_restarting_the_application"> <source>Modifying whitespace or comments in a generic {0} requires restarting the application.</source> <target state="new">Modifying whitespace or comments in a generic {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Move_contents_to_namespace"> <source>Move contents to namespace...</source> <target state="translated">將內容移到命名空間...</target> <note /> </trans-unit> <trans-unit id="Move_file_to_0"> <source>Move file to '{0}'</source> <target state="translated">將檔案移至 ‘{0}'</target> <note /> </trans-unit> <trans-unit id="Move_file_to_project_root_folder"> <source>Move file to project root folder</source> <target state="translated">將檔案移到專案根資料夾</target> <note /> </trans-unit> <trans-unit id="Move_to_namespace"> <source>Move to namespace...</source> <target state="translated">移到命名空間...</target> <note /> </trans-unit> <trans-unit id="Moving_0_requires_restarting_the_application"> <source>Moving {0} requires restarting the application.</source> <target state="new">Moving {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Nested_quantifier_0"> <source>Nested quantifier {0}</source> <target state="translated">巢狀數量詞 {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: a**. In this case {0} will be '*', the extra unnecessary quantifier.</note> </trans-unit> <trans-unit id="No_common_root_node_for_extraction"> <source>No common root node for extraction.</source> <target state="new">No common root node for extraction.</target> <note /> </trans-unit> <trans-unit id="No_valid_location_to_insert_method_call"> <source>No valid location to insert method call.</source> <target state="translated">沒有可插入方法呼叫的有效位置。</target> <note /> </trans-unit> <trans-unit id="No_valid_selection_to_perform_extraction"> <source>No valid selection to perform extraction.</source> <target state="new">No valid selection to perform extraction.</target> <note /> </trans-unit> <trans-unit id="Not_enough_close_parens"> <source>Not enough )'s</source> <target state="translated">) 不夠</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (a</note> </trans-unit> <trans-unit id="Operators"> <source>Operators</source> <target state="translated">運算子</target> <note /> </trans-unit> <trans-unit id="Property_reference_cannot_be_updated"> <source>Property reference cannot be updated</source> <target state="translated">無法更新屬性參考</target> <note /> </trans-unit> <trans-unit id="Pull_0_up"> <source>Pull '{0}' up</source> <target state="translated">向上提取 ‘{0}’</target> <note /> </trans-unit> <trans-unit id="Pull_0_up_to_1"> <source>Pull '{0}' up to '{1}'</source> <target state="translated">提取 '{0}' 最多 '{1}’</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_base_type"> <source>Pull members up to base type...</source> <target state="translated">將成員提取直到基底類型...</target> <note /> </trans-unit> <trans-unit id="Pull_members_up_to_new_base_class"> <source>Pull member(s) up to new base class...</source> <target state="translated">將成員提取至新的基底類別...</target> <note /> </trans-unit> <trans-unit id="Quantifier_x_y_following_nothing"> <source>Quantifier {x,y} following nothing</source> <target state="translated">數量詞 {x,y} 前面沒有任何項目</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: *</note> </trans-unit> <trans-unit id="Reference_to_undefined_group"> <source>reference to undefined group</source> <target state="translated">對未定義群組的參考</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(1))</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_name_0"> <source>Reference to undefined group name {0}</source> <target state="translated">對未定義群組名稱 {0} 的參考</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \k&lt;a&gt;. Here, {0} will be the name of the undefined group ('a')</note> </trans-unit> <trans-unit id="Reference_to_undefined_group_number_0"> <source>Reference to undefined group number {0}</source> <target state="translated">參考未定義的群組號碼 {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;-1&gt;). Here, {0} will be the number of the undefined group ('1')</note> </trans-unit> <trans-unit id="Regex_all_control_characters_long"> <source>All control characters. This includes the Cc, Cf, Cs, Co, and Cn categories.</source> <target state="translated">所有控制字元。這包括了 Cc、Cf、Cs、Co 和 Cn 分類。</target> <note /> </trans-unit> <trans-unit id="Regex_all_control_characters_short"> <source>all control characters</source> <target state="translated">所有控制字元</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_long"> <source>All diacritic marks. This includes the Mn, Mc, and Me categories.</source> <target state="translated">所有變音符號標記。這包括了 Mn、Mc 和 Me 分類。</target> <note /> </trans-unit> <trans-unit id="Regex_all_diacritic_marks_short"> <source>all diacritic marks</source> <target state="translated">所有變音符號標記</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_long"> <source>All letter characters. This includes the Lu, Ll, Lt, Lm, and Lo characters.</source> <target state="translated">所有字母字元。這包括了 Lu、Ll、Lt、Lm 和 Lo 字元。</target> <note /> </trans-unit> <trans-unit id="Regex_all_letter_characters_short"> <source>all letter characters</source> <target state="translated">所有字母字元</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_long"> <source>All numbers. This includes the Nd, Nl, and No categories.</source> <target state="translated">所有數字。這包括了 Nd、Nl 和 No 分類。</target> <note /> </trans-unit> <trans-unit id="Regex_all_numbers_short"> <source>all numbers</source> <target state="translated">所有數字</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_long"> <source>All punctuation characters. This includes the Pc, Pd, Ps, Pe, Pi, Pf, and Po categories.</source> <target state="translated">所有標點符號字元。這包括了 Pc、Pd、Ps、Pe、Pi、Pf 和 Po 分類。</target> <note /> </trans-unit> <trans-unit id="Regex_all_punctuation_characters_short"> <source>all punctuation characters</source> <target state="translated">所有標點符號字元</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_long"> <source>All separator characters. This includes the Zs, Zl, and Zp categories.</source> <target state="translated">所有分隔符號字元。這包括了 Zs、Zl 和 Zp 分類。</target> <note /> </trans-unit> <trans-unit id="Regex_all_separator_characters_short"> <source>all separator characters</source> <target state="translated">所有分隔符號字元</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_long"> <source>All symbols. This includes the Sm, Sc, Sk, and So categories.</source> <target state="translated">所有符號。這包括了 Sm、Sc、Sk 和 So 分類。</target> <note /> </trans-unit> <trans-unit id="Regex_all_symbols_short"> <source>all symbols</source> <target state="translated">所有符號</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_long"> <source>You can use the vertical bar (|) character to match any one of a series of patterns, where the | character separates each pattern.</source> <target state="translated">您可以使用分隔號 (|) 字元比對一系列模式中的任一模式,其中 | 字元會分隔各個模式。</target> <note /> </trans-unit> <trans-unit id="Regex_alternation_short"> <source>alternation</source> <target state="translated">替代</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_long"> <source>The period character (.) matches any character except \n (the newline character, \u000A). If a regular expression pattern is modified by the RegexOptions.Singleline option, or if the portion of the pattern that contains the . character class is modified by the 's' option, . matches any character.</source> <target state="translated">句點字元 (.) 會比對任何字元,\n (新行字元 \u000A) 除外。如果 RegexOptions.Singleline 選項修改了規則運算式模式,或 's' 選項修改了模式中包含 . 字元的那部分,. 就會比對任何字元。</target> <note /> </trans-unit> <trans-unit id="Regex_any_character_group_short"> <source>any character</source> <target state="translated">任一字元</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_long"> <source>Atomic groups (known in some other regular expression engines as a nonbacktracking subexpression, an atomic subexpression, or a once-only subexpression) disable backtracking. The regular expression engine will match as many characters in the input string as it can. When no further match is possible, it will not backtrack to attempt alternate pattern matches. (That is, the subexpression matches only strings that would be matched by the subexpression alone; it does not attempt to match a string based on the subexpression and any subexpressions that follow it.) This option is recommended if you know that backtracking will not succeed. Preventing the regular expression engine from performing unnecessary searching improves performance.</source> <target state="translated">不可部分完成的群組 (在其他一些規則運算式引擎中,又稱為非回溯子運算式、不可部分完成的子運算式,或單次性子運算式) 會停用回溯。規則運算式引擎會盡可能地比對輸入字串中的字元。當無法再繼續比對時,不會再回溯嘗試比對替代樣式 (亦即,子運算式只會比對子運算式所要比對的字串,而不會嘗試比對子運算式中或其接續之任何子運算式中的字串)。 若已知不會繼續執行回溯,建議您使用此選項。禁止規則運算式引擎執行不必要的搜尋,將有助於提升效能。</target> <note /> </trans-unit> <trans-unit id="Regex_atomic_group_short"> <source>atomic group</source> <target state="translated">不可部分完成的群組</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_long"> <source>Matches a backspace character, \u0008</source> <target state="translated">比對退格鍵字元 \u0008</target> <note /> </trans-unit> <trans-unit id="Regex_backspace_character_short"> <source>backspace character</source> <target state="translated">退格鍵字元</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_long"> <source>A balancing group definition deletes the definition of a previously defined group and stores, in the current group, the interval between the previously defined group and the current group. 'name1' is the current group (optional), 'name2' is a previously defined group, and 'subexpression' is any valid regular expression pattern. The balancing group definition deletes the definition of name2 and stores the interval between name2 and name1 in name1. If no name2 group is defined, the match backtracks. Because deleting the last definition of name2 reveals the previous definition of name2, this construct lets you use the stack of captures for group name2 as a counter for keeping track of nested constructs such as parentheses or opening and closing brackets. The balancing group definition uses 'name2' as a stack. The beginning character of each nested construct is placed in the group and in its Group.Captures collection. When the closing character is matched, its corresponding opening character is removed from the group, and the Captures collection is decreased by one. After the opening and closing characters of all nested constructs have been matched, 'name1' is empty.</source> <target state="translated">平衡群組定義會刪除先前已定義群組的定義,並將先前定義的群組和目前群組間的間隔儲存在目前的群組內。 'name1' 是目前的群組 (選擇性),'name2' 是先前定義的群組,'subexpression' 是任何有效的規則運算式模式。平衡群組定義會刪除 name2 的定義,並將 name2 與 name1 之間的間隔儲存在 name1 內。如果未指定 name2 群組,則比對會回溯。因為刪除 name2 的上一個定義會顯示 name2 先前的定義,所以此建構可讓您使用群組 name2 的擷取堆疊來作為計數器,用來追蹤括號或左右括弧等巢狀建構。 平衡群組定義會使用 'name2' 作為堆疊。各巢狀建構的開頭字元會置於群組和其 Group.Captures 集合內。符合右側字元時,會將其對應的左側字元從群組移除,使 Captures 集合減少一。當所有巢狀建構的左側和右側字元均相符後,'name1' 會空白。</target> <note /> </trans-unit> <trans-unit id="Regex_balancing_group_short"> <source>balancing group</source> <target state="translated">平衡群組</target> <note /> </trans-unit> <trans-unit id="Regex_base_group"> <source>base-group</source> <target state="translated">基底群組</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_long"> <source>Matches a bell (alarm) character, \u0007</source> <target state="translated">比對鈴聲 (警示) 字元 \u0007</target> <note /> </trans-unit> <trans-unit id="Regex_bell_character_short"> <source>bell character</source> <target state="translated">鈴字元</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_long"> <source>Matches a carriage-return character, \u000D. Note that \r is not equivalent to the newline character, \n.</source> <target state="translated">比對歸位字元 \u000D。請注意,\r 不等同於新行字元 \n。</target> <note /> </trans-unit> <trans-unit id="Regex_carriage_return_character_short"> <source>carriage-return character</source> <target state="translated">歸位字元</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_long"> <source>Character class subtraction yields a set of characters that is the result of excluding the characters in one character class from another character class. 'base_group' is a positive or negative character group or range. The 'excluded_group' component is another positive or negative character group, or another character class subtraction expression (that is, you can nest character class subtraction expressions).</source> <target state="translated">字元類別減法會產生一組字元,該組字元為將一個字元類別中的字元從另一個字元類別排除的結果。 'base_group' 是正或負的字元群組或範圍。'excluded_group' 元件是另一個正的或負的字元群組,或另一個字元類別減法運算式 (也就是說,您可以將字元類別減法運算式巢狀化)。</target> <note /> </trans-unit> <trans-unit id="Regex_character_class_subtraction_short"> <source>character class subtraction</source> <target state="translated">字元類別減法</target> <note /> </trans-unit> <trans-unit id="Regex_character_group"> <source>character-group</source> <target state="translated">字元群組</target> <note /> </trans-unit> <trans-unit id="Regex_comment"> <source>comment</source> <target state="translated">註解</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_long"> <source>This language element attempts to match one of two patterns depending on whether it can match an initial pattern. 'expression' is the initial pattern to match, 'yes' is the pattern to match if expression is matched, and 'no' is the optional pattern to match if expression is not matched.</source> <target state="translated">這個語言元素會根據是否可以比對初始模式,嘗試比對兩個模式的其中一個。 'expression' 是要比對的初始模式,若運算式相符,'yes' 即為要比對的模式; 若模式不相符,'no' 則為要比對的選擇性模式。</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_expression_match_short"> <source>conditional expression match</source> <target state="translated">條件運算式比對</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_long"> <source>This language element attempts to match one of two patterns depending on whether it has matched a specified capturing group. 'name' is the name (or number) of a capturing group, 'yes' is the expression to match if 'name' (or 'number') has a match, and 'no' is the optional expression to match if it does not.</source> <target state="translated">這個語言元素會根據是否與指定的擷取群組相符,嘗試比對兩個模式的其中一個。 'name' 是擷取群組的名稱 (或編號),若 'name' (或 'number') 相符,'yes' 即為要比對的運算式; 若不相符,'no' 則為要比對的選擇性運算式。</target> <note /> </trans-unit> <trans-unit id="Regex_conditional_group_match_short"> <source>conditional group match</source> <target state="translated">條件式群組比對</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_long"> <source>The \G anchor specifies that a match must occur at the point where the previous match ended. When you use this anchor with the Regex.Matches or Match.NextMatch method, it ensures that all matches are contiguous.</source> <target state="translated">\G 錨點會指定比對必須出現在前一個比對結束的地方。當您搭配 Regex.Matches 或 Match.NextMatch 方法使用這個錨點時,可以確保比對全都是一個接一個。</target> <note /> </trans-unit> <trans-unit id="Regex_contiguous_matches_short"> <source>contiguous matches</source> <target state="translated">連續相符項</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_long"> <source>Matches an ASCII control character, where X is the letter of the control character. For example, \cC is CTRL-C.</source> <target state="translated">比對 ASCII 控制字元,其中 X 是控制字元的字母。例如 \cC 為 CTRL-C。</target> <note /> </trans-unit> <trans-unit id="Regex_control_character_short"> <source>control character</source> <target state="translated">控制字元</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_long"> <source>\d matches any decimal digit. It is equivalent to the \p{Nd} regular expression pattern, which includes the standard decimal digits 0-9 as well as the decimal digits of a number of other character sets. If ECMAScript-compliant behavior is specified, \d is equivalent to [0-9]</source> <target state="translated">\d 符合所有十進位數字。其相當於 \p{Nd} 規則運算式模式,其中包含標準十進位數字 0-9,以及一些其他字元集的十進位數字。 如果有指定符合 ECMAScript 規範的行為,則 \d 相當於 [0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_decimal_digit_character_short"> <source>decimal-digit character</source> <target state="translated">十進位數字字元</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_long"> <source>A number sign (#) marks an x-mode comment, which starts at the unescaped # character at the end of the regular expression pattern and continues until the end of the line. To use this construct, you must either enable the x option (through inline options) or supply the RegexOptions.IgnorePatternWhitespace value to the option parameter when instantiating the Regex object or calling a static Regex method.</source> <target state="translated">數字記號 (#) 會標記 x 模式註解,其會從規則運算式模式結尾的未逸出 # 字元開始,並繼續直到行結束為止。如果要使用此建構,您必須啟用 x 選項 (透過內嵌選項),或於具現化 Regex 物件或呼叫靜態 Regex 方法時提供 RegexOptions.IgnorePatternWhitespace 值給選項參數。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_line_comment_short"> <source>end-of-line comment</source> <target state="translated">行結尾註解</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_long"> <source>The \z anchor specifies that a match must occur at the end of the input string. Like the $ language element, \z ignores the RegexOptions.Multiline option. Unlike the \Z language element, \z does not match a \n character at the end of a string. Therefore, it can only match the last line of the input string.</source> <target state="translated">\z 錨點會指定比對必須出現在輸入字串的結尾。就像 $ 語言元素,\z 會忽略 RegexOptions.Multiline 選項。與 \Z 語言元素不同的是,\z 不會比對字串結尾的 \n 字元。因此,只能比對上一行的輸入字串。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_only_short"> <source>end of string only</source> <target state="translated">僅字串結尾</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_long"> <source>The \Z anchor specifies that a match must occur at the end of the input string, or before \n at the end of the input string. It is identical to the $ anchor, except that \Z ignores the RegexOptions.Multiline option. Therefore, in a multiline string, it can only match the end of the last line, or the last line before \n. The \Z anchor matches \n but does not match \r\n (the CR/LF character combination). To match CR/LF, include \r?\Z in the regular expression pattern.</source> <target state="translated">\Z 錨點會指定比對必須出現在輸入字串的結尾或輸入字串結尾的 \n 之前。這與 $ 錨點相同,只是 \Z 會忽略 RegexOptions.Multiline 選項。因此,這只能比對上一行的結尾,或 \n 之前的上一行。 \Z 錨點會比對 \n,但不會比對 \r\n (CR/LF 字元的組合)。若要比對 CR/LF,請在規則運算式模式中加入 \r?\Z。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_before_ending_newline_short"> <source>end of string or before ending newline</source> <target state="translated">字串結尾或結尾的新行之前</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_long"> <source>The $ anchor specifies that the preceding pattern must occur at the end of the input string, or before \n at the end of the input string. If you use $ with the RegexOptions.Multiline option, the match can also occur at the end of a line. The $ anchor matches \n but does not match \r\n (the combination of carriage return and newline characters, or CR/LF). To match the CR/LF character combination, include \r?$ in the regular expression pattern.</source> <target state="translated">$ 錨點會指定前置模式必須出現在輸入字串的結尾或輸入字串結尾的 \n 之前。若您搭配 RegexOptions.Multiline 選項使用 $,比對也可位於行的結尾。 $ 錨點會比對 \n,但不會比對 \r\n (歸位與新行字元的組合,或稱 CR/LF)。若要比對 CR/LF,請在規則運算式模式中加入 \r?$。</target> <note /> </trans-unit> <trans-unit id="Regex_end_of_string_or_line_short"> <source>end of string or line</source> <target state="translated">字串或行結尾</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_long"> <source>Matches an escape character, \u001B</source> <target state="translated">比對逸出字元 \u001B</target> <note /> </trans-unit> <trans-unit id="Regex_escape_character_short"> <source>escape character</source> <target state="translated">逸出字元</target> <note /> </trans-unit> <trans-unit id="Regex_excluded_group"> <source>excluded-group</source> <target state="translated">排除的群組</target> <note /> </trans-unit> <trans-unit id="Regex_expression"> <source>expression</source> <target state="translated">運算式</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_long"> <source>Matches a form-feed character, \u000C</source> <target state="translated">比對跳頁字元 \u000C</target> <note /> </trans-unit> <trans-unit id="Regex_form_feed_character_short"> <source>form-feed character</source> <target state="translated">跳頁字元</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_long"> <source>This grouping construct applies or disables the specified options within a subexpression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">這個分組建構會在子運算式內套用或停用指定的選項。要啟用的選項會在問號後指定,要停用的選項則在減號後。允許的選項為: i 使用不區分大小寫的比對。 m 使用多行模式,其中 ^ 和 $ 會比對各行的結尾 (而非輸入字串的開頭和結尾)。 s 使用單行模式,其中句點 (.) 會比對每個字元 (而不是 \n 除外的每個字元)。 n 請勿擷取未命名的群組。唯一有效的擷取為明確 命名或編號的格式群組 (?&lt;name&gt; 子運算式)。 x 從模式中排除未逸出的空白字元,並在 數字記號 (#) 後啟用註解。</target> <note /> </trans-unit> <trans-unit id="Regex_group_options_short"> <source>group options</source> <target state="translated">群組選項</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_long"> <source>Matches an ASCII character, where ## is a two-digit hexadecimal character code.</source> <target state="translated">比對 ASCII 字元,其中 ## 是兩位數的十六進位字元碼。</target> <note /> </trans-unit> <trans-unit id="Regex_hexadecimal_escape_short"> <source>hexadecimal escape</source> <target state="translated">十六進位逸出</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_long"> <source>The (?# comment) construct lets you include an inline comment in a regular expression. The regular expression engine does not use any part of the comment in pattern matching, although the comment is included in the string that is returned by the Regex.ToString method. The comment ends at the first closing parenthesis.</source> <target state="translated">(?# comment) 建構可讓您在規則運算式中包含內嵌註解。雖然註解包含在 Regex.ToString 方法所傳回的字串中,但規則運算式引擎不會在模式比對中使用註解的任一部分。註解會在第一個右括弧處結束。</target> <note /> </trans-unit> <trans-unit id="Regex_inline_comment_short"> <source>inline comment</source> <target state="translated">內嵌註解</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_long"> <source>Enables or disables specific pattern matching options for the remainder of a regular expression. The options to enable are specified after the question mark, and the options to disable after the minus sign. The allowed options are: i Use case-insensitive matching. m Use multiline mode, where ^ and $ match the beginning and end of each line (instead of the beginning and end of the input string). s Use single-line mode, where the period (.) matches every character (instead of every character except \n). n Do not capture unnamed groups. The only valid captures are explicitly named or numbered groups of the form (?&lt;name&gt; subexpression). x Exclude unescaped white space from the pattern, and enable comments after a number sign (#).</source> <target state="translated">對規則運算式的其餘部份啟用或停用特定的模式比對選項。要啟用的選項會在問號後指定,要停用的選項則在減號後。允許的選項為: i 使用不區分大小寫的比對。 m 使用多行模式,其中 ^ 和 $ 會比對各行的結尾 (而非輸入字串的開頭和結尾)。 s 使用單行模式,其中句點 (.) 會比對每個字元 (而不是 \n 除外的每個字元)。 n 請勿擷取未命名的群組。唯一有效的擷取為明確 命名或編號的格式群組 (?&lt;name&gt; 子運算式)。 x 從模式中排除未逸出的空白字元,並在 數字記號 (#) 後啟用註解。</target> <note /> </trans-unit> <trans-unit id="Regex_inline_options_short"> <source>inline options</source> <target state="translated">內嵌選項</target> <note /> </trans-unit> <trans-unit id="Regex_issue_0"> <source>Regex issue: {0}</source> <target state="translated">Regex 問題: {0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. {0} will be the actual text of one of the above Regular Expression errors.</note> </trans-unit> <trans-unit id="Regex_letter_lowercase"> <source>letter, lowercase</source> <target state="translated">字母,小寫</target> <note /> </trans-unit> <trans-unit id="Regex_letter_modifier"> <source>letter, modifier</source> <target state="translated">字母,修飾元</target> <note /> </trans-unit> <trans-unit id="Regex_letter_other"> <source>letter, other</source> <target state="translated">字母,其他</target> <note /> </trans-unit> <trans-unit id="Regex_letter_titlecase"> <source>letter, titlecase</source> <target state="translated">字母,字首大寫</target> <note /> </trans-unit> <trans-unit id="Regex_letter_uppercase"> <source>letter, uppercase</source> <target state="translated">字母,大寫</target> <note /> </trans-unit> <trans-unit id="Regex_mark_enclosing"> <source>mark, enclosing</source> <target state="translated">標記,封閉式</target> <note /> </trans-unit> <trans-unit id="Regex_mark_nonspacing"> <source>mark, nonspacing</source> <target state="translated">標記,不佔空間</target> <note /> </trans-unit> <trans-unit id="Regex_mark_spacing_combining"> <source>mark, spacing combining</source> <target state="translated">標記,組合空間</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_long"> <source>The {n,}? quantifier matches the preceding element at least n times, where n is any integer, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,}</source> <target state="translated">{n,}? 數量詞會比對前置元素至少 n 次,其中 n 為任何整數,但盡可能壓低次數。這是與窮盡數量詞 {n,} 相對的少數優先概念</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">至少符合 'n' 次 (延遲)</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_long"> <source>The {n,} quantifier matches the preceding element at least n times, where n is any integer. {n,} is a greedy quantifier whose lazy equivalent is {n,}?</source> <target state="translated">{n,} 數量詞會比對前置元素至少 n 次,其中 n 為任何整數。{n,} 是窮盡數量詞,其少數優先的相對概念為 {n,}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_at_least_n_times_short"> <source>match at least 'n' times</source> <target state="translated">比對至少 'n' 次</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_long"> <source>The {n,m}? quantifier matches the preceding element between n and m times, where n and m are integers, but as few times as possible. It is the lazy counterpart of the greedy quantifier {n,m}</source> <target state="translated">{n,m}? 數量詞會比對前置元素 n 到 m 次,其中 n 和 m 為整數,但盡可能壓低次數。這是與窮盡數量詞 {n,m} 相對的少數優先概念</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_lazy_short"> <source>match at least 'n' times (lazy)</source> <target state="translated">至少符合 'n' 次 (延遲)</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_long"> <source>The {n,m} quantifier matches the preceding element at least n times, but no more than m times, where n and m are integers. {n,m} is a greedy quantifier whose lazy equivalent is {n,m}?</source> <target state="translated">{n,m} 數量詞會比對前置元素至少 n 次,但不超過 m 次,其中 n 和 m 為整數。{n,m} 是窮盡數量詞,其少數優先的相對概念為 {n,m}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_between_m_and_n_times_short"> <source>match between 'm' and 'n' times</source> <target state="translated">比對 'm' 到 'n' 次</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_long"> <source>The {n}? quantifier matches the preceding element exactly n times, where n is any integer. It is the lazy counterpart of the greedy quantifier {n}+</source> <target state="translated">{n}? 數量詞會比對前置元素正好 n 次,其中 n 為任何整數。這是與窮盡數量詞 {n}+ 相對的少數優先概念</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_lazy_short"> <source>match exactly 'n' times (lazy)</source> <target state="translated">比對正好 'n' 次 (少數優先)</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_long"> <source>The {n} quantifier matches the preceding element exactly n times, where n is any integer. {n} is a greedy quantifier whose lazy equivalent is {n}?</source> <target state="translated">{n} 數量詞會比對前置元素至少 n 次,其中 n 為任何整數。{n} 是窮盡數量詞,其少數優先的相對概念為 {n}?</target> <note /> </trans-unit> <trans-unit id="Regex_match_exactly_n_times_short"> <source>match exactly 'n' times</source> <target state="translated">比對正好 'n' 次</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_long"> <source>The +? quantifier matches the preceding element one or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier +</source> <target state="translated">+? 數量詞會比對前置元素一或多次,但盡可能壓低次數。這是與窮盡數量詞 + 相對的少數優先概念</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_lazy_short"> <source>match one or more times (lazy)</source> <target state="translated">比對一或多次 (少數優先)</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_long"> <source>The + quantifier matches the preceding element one or more times. It is equivalent to the {1,} quantifier. + is a greedy quantifier whose lazy equivalent is +?.</source> <target state="translated">+ 數量詞會比對前置元素一或多次,等同於 {1,} 數量詞。+ 是窮盡數量詞,其少數優先的相對概念為 +?。</target> <note /> </trans-unit> <trans-unit id="Regex_match_one_or_more_times_short"> <source>match one or more times</source> <target state="translated">比對一或多次</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_long"> <source>The *? quantifier matches the preceding element zero or more times, but as few times as possible. It is the lazy counterpart of the greedy quantifier *</source> <target state="translated">*? 數量詞會比對前置元素零或多次,但盡可能壓低次數。這是與窮盡數量詞 * 相對的少數優先概念</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_lazy_short"> <source>match zero or more times (lazy)</source> <target state="translated">比對零或多次 (少數優先)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_long"> <source>The * quantifier matches the preceding element zero or more times. It is equivalent to the {0,} quantifier. * is a greedy quantifier whose lazy equivalent is *?.</source> <target state="translated">* 數量詞會比對前置元素零或多次,相當於 {0,} 數量詞。* 是窮盡數量詞,其少數優先的相對概念為 *?。</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_more_times_short"> <source>match zero or more times</source> <target state="translated">比對零或多次</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_long"> <source>The ?? quantifier matches the preceding element zero or one time, but as few times as possible. It is the lazy counterpart of the greedy quantifier ?</source> <target state="translated">?? 數量詞會比對前置元素零或一次,但盡可能壓低次數。這是與窮盡數量詞 ? 相對的少數優先概念</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_lazy_short"> <source>match zero or one time (lazy)</source> <target state="translated">比對零或一次 (少數優先)</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_long"> <source>The ? quantifier matches the preceding element zero or one time. It is equivalent to the {0,1} quantifier. ? is a greedy quantifier whose lazy equivalent is ??.</source> <target state="translated">? 數量詞會比對前置元素零或一次,相當於 {0,1} 數量詞。? 是窮盡數量詞,其少數優先的相對概念為 ??。</target> <note /> </trans-unit> <trans-unit id="Regex_match_zero_or_one_time_short"> <source>match zero or one time</source> <target state="translated">比對零或一次</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_long"> <source>This grouping construct captures a matched 'subexpression', where 'subexpression' is any valid regular expression pattern. Captures that use parentheses are numbered automatically from left to right based on the order of the opening parentheses in the regular expression, starting from one. The capture that is numbered zero is the text matched by the entire regular expression pattern.</source> <target state="translated">這個分組建構會擷取相符的 'subexpression',其中 'subexpression' 是任何有效的規則運算式模式。使用了括弧的擷取會自動根據規則運算式中的左括弧順序,從第一個開始從左到右加上編號。編號為零的擷取,是與整個規則運算式模式相符的文字。</target> <note /> </trans-unit> <trans-unit id="Regex_matched_subexpression_short"> <source>matched subexpression</source> <target state="translated">相符的子運算式</target> <note /> </trans-unit> <trans-unit id="Regex_name"> <source>name</source> <target state="translated">名稱</target> <note /> </trans-unit> <trans-unit id="Regex_name1"> <source>name1</source> <target state="translated">名稱 1</target> <note /> </trans-unit> <trans-unit id="Regex_name2"> <source>name2</source> <target state="translated">名稱 2</target> <note /> </trans-unit> <trans-unit id="Regex_name_or_number"> <source>name-or-number</source> <target state="translated">名稱或數目</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_long"> <source>A named or numbered backreference. 'name' is the name of a capturing group defined in the regular expression pattern.</source> <target state="translated">具名或編號反向參考。 'name' 是定義於規則運算式模式內的擷取群組名稱。</target> <note /> </trans-unit> <trans-unit id="Regex_named_backreference_short"> <source>named backreference</source> <target state="translated">具名反向參考</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_long"> <source>Captures a matched subexpression and lets you access it by name or by number. 'name' is a valid group name, and 'subexpression' is any valid regular expression pattern. 'name' must not contain any punctuation characters and cannot begin with a number. If the RegexOptions parameter of a regular expression pattern matching method includes the RegexOptions.ExplicitCapture flag, or if the n option is applied to this subexpression, the only way to capture a subexpression is to explicitly name capturing groups.</source> <target state="translated">擷取相符的子運算式並讓您根據名稱或數字加以存取。 'name' 應為有效的群組名稱,而 'subexpression' 則可為任何有效的規則運算式模式。'name' 不得包含任何標點符號字元,也不得以數字作為開頭。 如果規則運算式模式比對方法的 RegexOptions 參數包含 RegexOptions.ExplicitCapture 旗標,或 n 選項已套用至此子運算式,則擷取子運算式的唯一方法為明確地命名擷取群組。</target> <note /> </trans-unit> <trans-unit id="Regex_named_matched_subexpression_short"> <source>named matched subexpression</source> <target state="translated">具名的相符子運算式</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_long"> <source>A negative character group specifies a list of characters that must not appear in an input string for a match to occur. The list of characters are specified individually. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">負的字元群組會指定不應在輸入字串中出現的字元清單,以使比對可行。字元的清單會受個別指定。 可串連二或多個字元範圍。舉例來說,如果要指定十進位數字的範圍 (從 "0" 到 "9"),則小寫字母的範圍為 "a" 到 "f",大寫字母的範圍為 "A" 到 "F",使用 [0-9a-fA-F]。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_group_short"> <source>negative character group</source> <target state="translated">負值字元群組</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_long"> <source>A negative character range specifies a list of characters that must not appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range, and 'lastCharacter' is the character that ends the range. Two or more character ranges can be concatenated. For example, to specify the range of decimal digits from "0" through "9", the range of lowercase letters from "a" through "f", and the range of uppercase letters from "A" through "F", use [0-9a-fA-F].</source> <target state="translated">負的字元範圍會指定不應在輸入字串中出現的字元清單,以使比對可行。'firstCharacter' 是開始範圍的字元,'lastCharacter' 則是結束範圍的字元。 可串連二或多個字元範圍。舉例來說,如果要指定十進位數字的範圍 (從 "0" 到 "9"),則小寫字母的範圍為 "a" 到 "f",大寫字母的範圍為 "A" 到 "F",使用 [0-9a-fA-F]。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_character_range_short"> <source>negative character range</source> <target state="translated">負值字元範圍</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_long"> <source>The regular expression construct \P{ name } matches any character that does not belong to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">規則運算式建構 \P{ name } 會比對任何不屬於 Unicode 一般分類或具名區塊的字元,其中名稱為分類縮寫或具名區塊名稱。</target> <note /> </trans-unit> <trans-unit id="Regex_negative_unicode_category_short"> <source>negative unicode category</source> <target state="translated">負值 Unicode 分類</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_long"> <source>Matches a new-line character, \u000A</source> <target state="translated">比對新行字元 \u000A</target> <note /> </trans-unit> <trans-unit id="Regex_new_line_character_short"> <source>new-line character</source> <target state="translated">新行字元</target> <note /> </trans-unit> <trans-unit id="Regex_no"> <source>no</source> <target state="translated">否</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_long"> <source>\D matches any non-digit character. It is equivalent to the \P{Nd} regular expression pattern. If ECMAScript-compliant behavior is specified, \D is equivalent to [^0-9]</source> <target state="translated">\D 符合所有非數字字元。其相當於 \P{Nd} 規則運算式模式。 如果有指定符合 ECMAScript 規範的行為,則 \d 相當於 [^0-9]</target> <note /> </trans-unit> <trans-unit id="Regex_non_digit_character_short"> <source>non-digit character</source> <target state="translated">非數字字元</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_long"> <source>\S matches any non-white-space character. It is equivalent to the [^\f\n\r\t\v\x85\p{Z}] regular expression pattern, or the opposite of the regular expression pattern that is equivalent to \s, which matches white-space characters. If ECMAScript-compliant behavior is specified, \S is equivalent to [^ \f\n\r\t\v]</source> <target state="translated">\S 符合所有非空白字元的字元。其等同於 [^\f\n\r\t\v\x85\p{Z}] 規則運算式模式,或相當於 \s 之規則運算式模式的相反,其符合空白字元的字元。 如果有指定符合 ECMAScript 規範的行為,則 \S 相當於 [^ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_non_white_space_character_short"> <source>non-white-space character</source> <target state="translated">非空白字元</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_long"> <source>The \B anchor specifies that the match must not occur on a word boundary. It is the opposite of the \b anchor.</source> <target state="translated">\B 錨點會指定比對不得出現在字邊界。其為 \b 錨點的相反。</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_boundary_short"> <source>non-word boundary</source> <target state="translated">非字邊界</target> <note /> </trans-unit> <trans-unit id="Regex_non_word_character_long"> <source>\W matches any non-word character. It matches any character except for those in the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \W is equivalent to [^a-zA-Z_0-9]</source> <target state="translated">\W 符合所有非字組字元。其符合所有字元,但處於以下 Unicode 分類內的字元除外: Ll 字母,小寫 Lu 字母,大寫 Lt 字母,字首大寫 Lo 字母,其他 Lm 字母,修飾元 Mn 標記,非空格 Nd 數字,十進位數字 Pc 標點符號,接頭 如果有指定符合 ECMAScript 規範的行為,則 \W 相當於 [^a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized. </note> </trans-unit> <trans-unit id="Regex_non_word_character_short"> <source>non-word character</source> <target state="translated">非文字字元</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_long"> <source>This construct does not capture the substring that is matched by a subexpression: The noncapturing group construct is typically used when a quantifier is applied to a group, but the substrings captured by the group are of no interest. If a regular expression includes nested grouping constructs, an outer noncapturing group construct does not apply to the inner nested group constructs.</source> <target state="translated">這個建構不會擷取子運算式比對的子字串: 非擷取群組建構通常在數量詞套用到群組時使用,但群組擷取的子字串不會有影響。 若規則運算式包含巢狀群組建構,外部非擷取群組建構就不會套用到內部巢狀群組建構。</target> <note /> </trans-unit> <trans-unit id="Regex_noncapturing_group_short"> <source>noncapturing group</source> <target state="translated">非擷取群組</target> <note /> </trans-unit> <trans-unit id="Regex_number_decimal_digit"> <source>number, decimal digit</source> <target state="translated">數字,十進位數字</target> <note /> </trans-unit> <trans-unit id="Regex_number_letter"> <source>number, letter</source> <target state="translated">數字,字母</target> <note /> </trans-unit> <trans-unit id="Regex_number_other"> <source>number, other</source> <target state="translated">數字,其他</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_long"> <source>A numbered backreference, where 'number' is the ordinal position of the capturing group in the regular expression. For example, \4 matches the contents of the fourth capturing group. There is an ambiguity between octal escape codes (such as \16) and \number backreferences that use the same notation. If the ambiguity is a problem, you can use the \k&lt;name&gt; notation, which is unambiguous and cannot be confused with octal character codes. Similarly, hexadecimal codes such as \xdd are unambiguous and cannot be confused with backreferences.</source> <target state="translated">編號反向參考,其中 'number' 是擷取群組在規則運算式中的序數位置。舉例來說,\4 符合第四個擷取群組的內容。 如果八進位逸出代碼 (例如 \16) 和 \number 反向參考使用的標記法相同,則會出現模稜兩可的問題。如果模稜兩可的問題會造成麻煩,您可以使用 \k&lt;名稱&gt; 標記法,該標記法較為明確且不會與八進位逸出字元代碼搞混。同樣地,\xdd 等十六進位代碼也相當明確,不會與反向參考搞混。</target> <note /> </trans-unit> <trans-unit id="Regex_numbered_backreference_short"> <source>numbered backreference</source> <target state="translated">編號反向參考</target> <note /> </trans-unit> <trans-unit id="Regex_other_control"> <source>other, control</source> <target state="translated">其他,控制</target> <note /> </trans-unit> <trans-unit id="Regex_other_format"> <source>other, format</source> <target state="translated">其他,格式</target> <note /> </trans-unit> <trans-unit id="Regex_other_not_assigned"> <source>other, not assigned</source> <target state="translated">其他,未指派</target> <note /> </trans-unit> <trans-unit id="Regex_other_private_use"> <source>other, private use</source> <target state="translated">其他,私用</target> <note /> </trans-unit> <trans-unit id="Regex_other_surrogate"> <source>other, surrogate</source> <target state="translated">其他,代理</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_long"> <source>A positive character group specifies a list of characters, any one of which may appear in an input string for a match to occur.</source> <target state="translated">正的字元群組會指定字元清單,其中的任一字元都可能會出現在輸入字串中,以便比對發生。</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_group_short"> <source>positive character group</source> <target state="translated">正值字元群組</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_long"> <source>A positive character range specifies a range of characters, any one of which may appear in an input string for a match to occur. 'firstCharacter' is the character that begins the range and 'lastCharacter' is the character that ends the range. </source> <target state="translated">正的字元範圍會指定字元範圍,其中的任一字元都可能會出現在輸入字串中,以便比對發生。'firstCharacter' 是開始範圍的字元,'lastCharacter' 則是結束範圍的字元。</target> <note /> </trans-unit> <trans-unit id="Regex_positive_character_range_short"> <source>positive character range</source> <target state="translated">正值字元範圍</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_close"> <source>punctuation, close</source> <target state="translated">標點符號,封閉</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_connector"> <source>punctuation, connector</source> <target state="translated">標點符號,連接子</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_dash"> <source>punctuation, dash</source> <target state="translated">標點符號,破折號</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_final_quote"> <source>punctuation, final quote</source> <target state="translated">標點符號,最後引號</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_initial_quote"> <source>punctuation, initial quote</source> <target state="translated">標點符號,初始引號</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_open"> <source>punctuation, open</source> <target state="translated">標點符號,開放</target> <note /> </trans-unit> <trans-unit id="Regex_punctuation_other"> <source>punctuation, other</source> <target state="translated">標點符號,其他</target> <note /> </trans-unit> <trans-unit id="Regex_separator_line"> <source>separator, line</source> <target state="translated">分隔符號,線條</target> <note /> </trans-unit> <trans-unit id="Regex_separator_paragraph"> <source>separator, paragraph</source> <target state="translated">分隔符號,段落</target> <note /> </trans-unit> <trans-unit id="Regex_separator_space"> <source>separator, space</source> <target state="translated">分隔符號,空格</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_long"> <source>The \A anchor specifies that a match must occur at the beginning of the input string. It is identical to the ^ anchor, except that \A ignores the RegexOptions.Multiline option. Therefore, it can only match the start of the first line in a multiline input string.</source> <target state="translated">\A 錨點會指定比對必須出現在輸入字串開頭。其與 ^ 錨點相同,差異在於 \A 會忽略 RegexOptions.Multiline 選項。因此,這個錨點只能多行輸入字串的第一行開頭。</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_only_short"> <source>start of string only</source> <target state="translated">僅字串開頭</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_long"> <source>The ^ anchor specifies that the following pattern must begin at the first character position of the string. If you use ^ with the RegexOptions.Multiline option, the match must occur at the beginning of each line.</source> <target state="translated">^ 錨點會指定下列模式必須從字串第一個字元的位置開始。如果您搭配 RegexOptions.Multiline 選項使用 ^,比對就必須出現在每一行的開頭。</target> <note /> </trans-unit> <trans-unit id="Regex_start_of_string_or_line_short"> <source>start of string or line</source> <target state="translated">字串或行開頭</target> <note /> </trans-unit> <trans-unit id="Regex_subexpression"> <source>subexpression</source> <target state="translated">子運算式</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_currency"> <source>symbol, currency</source> <target state="translated">符號,貨幣</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_math"> <source>symbol, math</source> <target state="translated">符號,數學</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_modifier"> <source>symbol, modifier</source> <target state="translated">符號,修飾元</target> <note /> </trans-unit> <trans-unit id="Regex_symbol_other"> <source>symbol, other</source> <target state="translated">符號,其他</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_long"> <source>Matches a tab character, \u0009</source> <target state="translated">比對定位字元 \u0009</target> <note /> </trans-unit> <trans-unit id="Regex_tab_character_short"> <source>tab character</source> <target state="translated">定位字元</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_long"> <source>The regular expression construct \p{ name } matches any character that belongs to a Unicode general category or named block, where name is the category abbreviation or named block name.</source> <target state="translated">規則運算式建構 \P{ name } 會比對任何屬於 Unicode 一般分類或具名區塊的字元,其中名稱為分類縮寫或具名區塊名稱。</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_category_short"> <source>unicode category</source> <target state="translated">Unicode 分類</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_long"> <source>Matches a UTF-16 code unit whose value is #### hexadecimal.</source> <target state="translated">比對值為 #### 十六進位的 UTF-16 代碼單元。</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_escape_short"> <source>unicode escape</source> <target state="translated">unicode 逸出</target> <note /> </trans-unit> <trans-unit id="Regex_unicode_general_category_0"> <source>Unicode General Category: {0}</source> <target state="translated">Unicode 一般分類: {0}</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_long"> <source>Matches a vertical-tab character, \u000B</source> <target state="translated">比對垂直定位字元 \u000B</target> <note /> </trans-unit> <trans-unit id="Regex_vertical_tab_character_short"> <source>vertical-tab character</source> <target state="translated">垂直定位字元</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_long"> <source>\s matches any white-space character. It is equivalent to the following escape sequences and Unicode categories: \f The form feed character, \u000C \n The newline character, \u000A \r The carriage return character, \u000D \t The tab character, \u0009 \v The vertical tab character, \u000B \x85 The ellipsis or NEXT LINE (NEL) character (…), \u0085 \p{Z} Matches any separator character If ECMAScript-compliant behavior is specified, \s is equivalent to [ \f\n\r\t\v]</source> <target state="translated">\s 符合所有空白字元。其相當於以下逸出序列和 Unicode 分類: \f 換頁字元,\u000C \n 新行字元,\u000A \r 歸位字元,\u000D \t 定位字元,\u0009 \v 垂直定位字元,\u000B \x85 省略符號或 NEXT LINE (NEL) 字元 (…),\u0085 \p{Z} 符合所有分隔符號字元 如果有指定符合 ECMAScript 規範的行為,則 \s 相當於 [ \f\n\r\t\v]</target> <note /> </trans-unit> <trans-unit id="Regex_white_space_character_short"> <source>white-space character</source> <target state="translated">空白字元</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_long"> <source>The \b anchor specifies that the match must occur on a boundary between a word character (the \w language element) and a non-word character (the \W language element). Word characters consist of alphanumeric characters and underscores; a non-word character is any character that is not alphanumeric or an underscore. The match may also occur on a word boundary at the beginning or end of the string. The \b anchor is frequently used to ensure that a subexpression matches an entire word instead of just the beginning or end of a word.</source> <target state="translated">\b 錨點會指定比對必須出現於文字字元 (\w 語言元素) 和非文字字元 (\W 語言元素) 之間的邊界上。文字字元由英數字元和底線組成; 非文字字元則為英數字元或底線除外的任何字元。比對也可能出現於字串開頭或結尾的文字邊界上。 \b 錨點通常用來確保子運算式會比對整個字組,而不是只比對字組的開頭或結尾。</target> <note /> </trans-unit> <trans-unit id="Regex_word_boundary_short"> <source>word boundary</source> <target state="translated">字邊界</target> <note /> </trans-unit> <trans-unit id="Regex_word_character_long"> <source>\w matches any word character. A word character is a member of any of the following Unicode categories: Ll Letter, Lowercase Lu Letter, Uppercase Lt Letter, Titlecase Lo Letter, Other Lm Letter, Modifier Mn Mark, Nonspacing Nd Number, Decimal Digit Pc Punctuation, Connector If ECMAScript-compliant behavior is specified, \w is equivalent to [a-zA-Z_0-9]</source> <target state="translated">\w 符合所有字組字元。字組字元是以下任一 Unicode 分類的成員: Ll 字母,小寫 Lu 字母,大寫 Lt 字母,字首大寫 Lo 字母,其他 Lm 字母,修飾元 Mn 標記,非空格 Nd 數字,十進位數字 Pc 標點符號,接頭 如果有指定符合 ECMAScript 規範的行為,則 \w 相當於 [a-zA-Z_0-9]</target> <note>Note: Ll, Lu, Lt, Lo, Lm, Mn, Nd, and Pc are all things that should not be localized.</note> </trans-unit> <trans-unit id="Regex_word_character_short"> <source>word character</source> <target state="translated">文字字元</target> <note /> </trans-unit> <trans-unit id="Regex_yes"> <source>yes</source> <target state="translated">是</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_long"> <source>A zero-width negative lookahead assertion, where for the match to be successful, the input string must not match the regular expression pattern in subexpression. The matched string is not included in the match result. A zero-width negative lookahead assertion is typically used either at the beginning or at the end of a regular expression. At the beginning of a regular expression, it can define a specific pattern that should not be matched when the beginning of the regular expression defines a similar but more general pattern to be matched. In this case, it is often used to limit backtracking. At the end of a regular expression, it can define a subexpression that cannot occur at the end of a match.</source> <target state="translated">零寬負右合樣判斷提示,如果要使比對成功,則輸入字串不得符合子運算式中的規則運算式模式。符合的字串不會包含在比對結果內。 零寬度 lookahead 判斷提示通常會用在規則運算式的開頭或結尾。在規則運算式的開頭,其可定義應符合的特定模式 (當規則運算式的開頭定義相似但更普通的應符合模式時)。在這種情況下,其常會用來限制回溯。在規則運算式的結尾,其可定義不會在比對結束時發生的子運算式。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookahead_assertion_short"> <source>zero-width negative lookahead assertion</source> <target state="translated">零寬負值右合樣判斷提示</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_long"> <source>A zero-width negative lookbehind assertion, where for a match to be successful, 'subexpression' must not occur at the input string to the left of the current position. Any substring that does not match 'subexpression' is not included in the match result. Zero-width negative lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define precludes a match in the string that follows. They are also used to limit backtracking when the last character or characters in a captured group must not be one or more of the characters that match that group's regular expression pattern.</source> <target state="translated">零寬負左合樣判斷提示,如果要使比對成功,則 'subexpression' 不得發生在目前位置左側的輸入字串。所有不符合 'subexpression' 的子字串都不會包含在比對結果內。 零寬度負 lookbehind 判斷提示通常會用在規則運算式的開頭。其定義的模式會排除下一個字串中的相符項。其也常用於限制回溯 (當最後一個字元或已擷取群組中的字元不得為符合群組規則運算式模式的一或多個字元時)。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_negative_lookbehind_assertion_short"> <source>zero-width negative lookbehind assertion</source> <target state="translated">零寬負值左合樣判斷提示</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_long"> <source>A zero-width positive lookahead assertion, where for a match to be successful, the input string must match the regular expression pattern in 'subexpression'. The matched substring is not included in the match result. A zero-width positive lookahead assertion does not backtrack. Typically, a zero-width positive lookahead assertion is found at the end of a regular expression pattern. It defines a substring that must be found at the end of a string for a match to occur but that should not be included in the match. It is also useful for preventing excessive backtracking. You can use a zero-width positive lookahead assertion to ensure that a particular captured group begins with text that matches a subset of the pattern defined for that captured group.</source> <target state="translated">零寬正右合樣判斷提示,如果要使比對成功,則輸入字串必須符合 'subexpression' 中的規則運算式模式。符合的子字串不會包含在比對結果內。零寬度正 lookahead 判斷提示不會回溯。 一般來說,零寬度正 lookahead 判斷提示會出現在規則運算式模式的結尾。其會定義應出現在字串結尾以使比對發生,但不應包含在比對內的子字串。對於防止過度回溯來說,其也相當實用。您可以使用零寬度正 lookahead 判斷提示來確保特定已擷取群組會以符合為該已擷取群組定義之模式的子集開頭。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookahead_assertion_short"> <source>zero-width positive lookahead assertion</source> <target state="translated">零寬正值右合樣判斷提示</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_long"> <source>A zero-width positive lookbehind assertion, where for a match to be successful, 'subexpression' must occur at the input string to the left of the current position. 'subexpression' is not included in the match result. A zero-width positive lookbehind assertion does not backtrack. Zero-width positive lookbehind assertions are typically used at the beginning of regular expressions. The pattern that they define is a precondition for a match, although it is not a part of the match result.</source> <target state="translated">零寬正左合樣判斷提示,如果要使比對成功,則 'subexpression' 必須於目前位置左側的輸入字串發生。'subexpression' 不會包含在比對結果內。零寬度正 lookbehind 判斷提示不會回溯。 零寬度正 lookbehind 判斷提示通常會用在規則運算式的開頭。其定義的模式是比對的前置條件,但不是比對結果的一部份。</target> <note /> </trans-unit> <trans-unit id="Regex_zero_width_positive_lookbehind_assertion_short"> <source>zero-width positive lookbehind assertion</source> <target state="translated">零寬正值左合樣判斷提示</target> <note /> </trans-unit> <trans-unit id="Related_method_signatures_found_in_metadata_will_not_be_updated"> <source>Related method signatures found in metadata will not be updated.</source> <target state="translated">將不會更新中繼資料中所找到的相關方法簽章。</target> <note /> </trans-unit> <trans-unit id="Removal_of_document_not_supported"> <source>Removal of document not supported</source> <target state="translated">不支援移除文件</target> <note /> </trans-unit> <trans-unit id="Remove_async_modifier"> <source>Remove 'async' modifier</source> <target state="translated">移除 'async' 修飾元</target> <note /> </trans-unit> <trans-unit id="Remove_unnecessary_casts"> <source>Remove unnecessary casts</source> <target state="translated">移除不必要的 Cast</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variables"> <source>Remove unused variables</source> <target state="translated">移除未使用的變數</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_requires_restarting_the_application"> <source>Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</source> <target state="new">Removing {0} that accessed captured variables '{1}' and '{2}' declared in different scopes requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Removing_0_that_contains_an_active_statement_requires_restarting_the_application"> <source>Removing {0} that contains an active statement requires restarting the application.</source> <target state="new">Removing {0} that contains an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application"> <source>Renaming {0} requires restarting the application.</source> <target state="new">Renaming {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Renaming_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Renaming {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Renaming {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Renaming_a_captured_variable_from_0_to_1_requires_restarting_the_application"> <source>Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</source> <target state="new">Renaming a captured variable, from '{0}' to '{1}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_1"> <source>Replace '{0}' with '{1}' </source> <target state="translated">將 ‘{0}’ 取代為 ‘{1}'</target> <note /> </trans-unit> <trans-unit id="Resolve_conflict_markers"> <source>Resolve conflict markers</source> <target state="translated">解決衝突標記</target> <note /> </trans-unit> <trans-unit id="RudeEdit"> <source>Rude edit</source> <target state="translated">粗略編輯</target> <note /> </trans-unit> <trans-unit id="Selection_does_not_contain_a_valid_token"> <source>Selection does not contain a valid token.</source> <target state="new">Selection does not contain a valid token.</target> <note /> </trans-unit> <trans-unit id="Selection_not_contained_inside_a_type"> <source>Selection not contained inside a type.</source> <target state="new">Selection not contained inside a type.</target> <note /> </trans-unit> <trans-unit id="Sort_accessibility_modifiers"> <source>Sort accessibility modifiers</source> <target state="translated">排序協助工具修飾元</target> <note /> </trans-unit> <trans-unit id="Split_into_consecutive_0_statements"> <source>Split into consecutive '{0}' statements</source> <target state="translated">分割成連續的 '{0}' 陳述式</target> <note /> </trans-unit> <trans-unit id="Split_into_nested_0_statements"> <source>Split into nested '{0}' statements</source> <target state="translated">分割成巢狀 '{0}' 陳述式</target> <note /> </trans-unit> <trans-unit id="StreamMustSupportReadAndSeek"> <source>Stream must support read and seek operations.</source> <target state="translated">資料流必須支援讀取及搜尋作業。</target> <note /> </trans-unit> <trans-unit id="Suppress_0"> <source>Suppress {0}</source> <target state="translated">隱藏 {0}</target> <note /> </trans-unit> <trans-unit id="Switching_between_lambda_and_local_function_requires_restarting_the_application"> <source>Switching between a lambda and a local function requires restarting the application.</source> <target state="new">Switching between a lambda and a local function requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="TODO_colon_free_unmanaged_resources_unmanaged_objects_and_override_finalizer"> <source>TODO: free unmanaged resources (unmanaged objects) and override finalizer</source> <target state="translated">TODO: 釋出非受控資源 (非受控物件) 並覆寫完成項</target> <note /> </trans-unit> <trans-unit id="TODO_colon_override_finalizer_only_if_0_has_code_to_free_unmanaged_resources"> <source>TODO: override finalizer only if '{0}' has code to free unmanaged resources</source> <target state="translated">TODO: 僅有當 '{0}' 具有會釋出非受控資源的程式碼時,才覆寫完成項</target> <note /> </trans-unit> <trans-unit id="Target_type_matches"> <source>Target type matches</source> <target state="translated">目標類型相符項目</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_containing_type_1_references_NET_Framework"> <source>The assembly '{0}' containing type '{1}' references .NET Framework, which is not supported.</source> <target state="translated">包含類型 '{1}' 的組件 '{0}' 參考了 .NET Framework,此情形不受支援。</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_a_local_function_call_without_its_declaration"> <source>The selection contains a local function call without its declaration.</source> <target state="translated">選取範圍包含區域函式呼叫,但不含其宣告。</target> <note /> </trans-unit> <trans-unit id="Too_many_bars_in_conditional_grouping"> <source>Too many | in (?()|)</source> <target state="translated">(?()|) 中太多 |</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?(0)a|b|)</note> </trans-unit> <trans-unit id="Too_many_close_parens"> <source>Too many )'s</source> <target state="translated">太多 )</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: )</note> </trans-unit> <trans-unit id="UnableToReadSourceFileOrPdb"> <source>Unable to read source file '{0}' or the PDB built for the containing project. Any changes made to this file while debugging won't be applied until its content matches the built source.</source> <target state="translated">無法讀取來源檔案 '{0}' 或為包含該檔案之專案所建置的 PDB。等到此檔案的內容與已建置的來源一致後,才會套用於偵錯期間對此檔案所做的所有變更。</target> <note /> </trans-unit> <trans-unit id="Unknown_property"> <source>Unknown property</source> <target state="translated">未知屬性</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{}</note> </trans-unit> <trans-unit id="Unknown_property_0"> <source>Unknown property '{0}'</source> <target state="translated">未知屬性 '{0}’</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \p{xxx}. Here, {0} will be the name of the unknown property ('xxx')</note> </trans-unit> <trans-unit id="Unrecognized_control_character"> <source>Unrecognized control character</source> <target state="translated">無法識別的控制字元</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [\c]</note> </trans-unit> <trans-unit id="Unrecognized_escape_sequence_0"> <source>Unrecognized escape sequence \{0}</source> <target state="translated">無法識別的逸出序列 \{0}</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: \m. Here, {0} will be the unrecognized character ('m')</note> </trans-unit> <trans-unit id="Unrecognized_grouping_construct"> <source>Unrecognized grouping construct</source> <target state="translated">無法識別的分組建構</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?&lt;</note> </trans-unit> <trans-unit id="Unterminated_character_class_set"> <source>Unterminated [] set</source> <target state="translated">未結束的 [] 組合</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [</note> </trans-unit> <trans-unit id="Unterminated_regex_comment"> <source>Unterminated (?#...) comment</source> <target state="translated">未結束的 (?#...) 註解</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: (?#</note> </trans-unit> <trans-unit id="Unwrap_all_arguments"> <source>Unwrap all arguments</source> <target state="translated">將所有引數取消換行</target> <note /> </trans-unit> <trans-unit id="Unwrap_all_parameters"> <source>Unwrap all parameters</source> <target state="translated">將所有參數取消換行</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_arguments"> <source>Unwrap and indent all arguments</source> <target state="translated">將所有引數取消換行並縮排</target> <note /> </trans-unit> <trans-unit id="Unwrap_and_indent_all_parameters"> <source>Unwrap and indent all parameters</source> <target state="translated">將所有參數取消換行並縮排</target> <note /> </trans-unit> <trans-unit id="Unwrap_argument_list"> <source>Unwrap argument list</source> <target state="translated">將引數清單取消換行</target> <note /> </trans-unit> <trans-unit id="Unwrap_call_chain"> <source>Unwrap call chain</source> <target state="translated">將呼叫鏈取消包裝</target> <note /> </trans-unit> <trans-unit id="Unwrap_expression"> <source>Unwrap expression</source> <target state="translated">將運算式取消換行</target> <note /> </trans-unit> <trans-unit id="Unwrap_parameter_list"> <source>Unwrap parameter list</source> <target state="translated">將參數清單取消換行</target> <note /> </trans-unit> <trans-unit id="Updating_0_requires_restarting_the_application"> <source>Updating '{0}' requires restarting the application.</source> <target state="new">Updating '{0}' requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_0_around_an_active_statement_requires_restarting_the_application"> <source>Updating a {0} around an active statement requires restarting the application.</source> <target state="new">Updating a {0} around an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_a_complex_statement_containing_an_await_expression_requires_restarting_the_application"> <source>Updating a complex statement containing an await expression requires restarting the application.</source> <target state="new">Updating a complex statement containing an await expression requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_an_active_statement_requires_restarting_the_application"> <source>Updating an active statement requires restarting the application.</source> <target state="new">Updating an active statement requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_async_or_iterator_modifier_around_an_active_statement_requires_restarting_the_application"> <source>Updating async or iterator modifier around an active statement requires restarting the application.</source> <target state="new">Updating async or iterator modifier around an active statement requires restarting the application.</target> <note>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_reloadable_type_marked_by_0_attribute_or_its_member_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</source> <target state="new">Updating a reloadable type (marked by {0}) or its member requires restarting the application because is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_Handles_clause_of_0_requires_restarting_the_application"> <source>Updating the Handles clause of {0} requires restarting the application.</source> <target state="new">Updating the Handles clause of {0} requires restarting the application.</target> <note>{Locked="Handles"} "Handles" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_Implements_clause_of_a_0_requires_restarting_the_application"> <source>Updating the Implements clause of a {0} requires restarting the application.</source> <target state="new">Updating the Implements clause of a {0} requires restarting the application.</target> <note>{Locked="Implements"} "Implements" is VB keywords and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_alias_of_Declare_statement_requires_restarting_the_application"> <source>Updating the alias of Declare statement requires restarting the application.</source> <target state="new">Updating the alias of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_attributes_of_0_requires_restarting_the_application_because_it_is_not_supported_by_the_runtime"> <source>Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</source> <target state="new">Updating the attributes of {0} requires restarting the application because it is not supported by the runtime.</target> <note /> </trans-unit> <trans-unit id="Updating_the_base_class_and_or_base_interface_s_of_0_requires_restarting_the_application"> <source>Updating the base class and/or base interface(s) of {0} requires restarting the application.</source> <target state="new">Updating the base class and/or base interface(s) of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_initializer_of_0_requires_restarting_the_application"> <source>Updating the initializer of {0} requires restarting the application.</source> <target state="new">Updating the initializer of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_property_event_accessor_requires_restarting_the_application"> <source>Updating the kind of a property/event accessor requires restarting the application.</source> <target state="new">Updating the kind of a property/event accessor requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_kind_of_a_type_requires_restarting_the_application"> <source>Updating the kind of a type requires restarting the application.</source> <target state="new">Updating the kind of a type requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_library_name_of_Declare_statement_requires_restarting_the_application"> <source>Updating the library name of Declare statement requires restarting the application.</source> <target state="new">Updating the library name of Declare statement requires restarting the application.</target> <note>{Locked="Declare"} "Declare" is VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="Updating_the_modifiers_of_0_requires_restarting_the_application"> <source>Updating the modifiers of {0} requires restarting the application.</source> <target state="new">Updating the modifiers of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_size_of_a_0_requires_restarting_the_application"> <source>Updating the size of a {0} requires restarting the application.</source> <target state="new">Updating the size of a {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_type_of_0_requires_restarting_the_application"> <source>Updating the type of {0} requires restarting the application.</source> <target state="new">Updating the type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_underlying_type_of_0_requires_restarting_the_application"> <source>Updating the underlying type of {0} requires restarting the application.</source> <target state="new">Updating the underlying type of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Updating_the_variance_of_0_requires_restarting_the_application"> <source>Updating the variance of {0} requires restarting the application.</source> <target state="new">Updating the variance of {0} requires restarting the application.</target> <note /> </trans-unit> <trans-unit id="Use_block_body_for_lambda_expressions"> <source>Use block body for lambda expressions</source> <target state="translated">使用 Lambda 運算式的區塊主體</target> <note /> </trans-unit> <trans-unit id="Use_expression_body_for_lambda_expressions"> <source>Use expression body for lambda expressions</source> <target state="translated">使用 Lambda 運算式的運算式主體</target> <note /> </trans-unit> <trans-unit id="Use_interpolated_verbatim_string"> <source>Use interpolated verbatim string</source> <target state="translated">使用插入的逐字字串</target> <note /> </trans-unit> <trans-unit id="Value_colon"> <source>Value:</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> <note /> </trans-unit> <trans-unit id="Warning_colon_semantics_may_change_when_converting_statement"> <source>Warning: Semantics may change when converting statement.</source> <target state="translated">警告: 轉換陳述式時,語意可能會變更。</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_call_chain"> <source>Wrap and align call chain</source> <target state="translated">包裝並對齊呼叫鏈</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_expression"> <source>Wrap and align expression</source> <target state="translated">換行並對齊運算式</target> <note /> </trans-unit> <trans-unit id="Wrap_and_align_long_call_chain"> <source>Wrap and align long call chain</source> <target state="translated">包裝並對齊長呼叫鏈</target> <note /> </trans-unit> <trans-unit id="Wrap_call_chain"> <source>Wrap call chain</source> <target state="translated">包裝呼叫鏈</target> <note /> </trans-unit> <trans-unit id="Wrap_every_argument"> <source>Wrap every argument</source> <target state="translated">包裝每個引數</target> <note /> </trans-unit> <trans-unit id="Wrap_every_parameter"> <source>Wrap every parameter</source> <target state="translated">將每個參數換行</target> <note /> </trans-unit> <trans-unit id="Wrap_expression"> <source>Wrap expression</source> <target state="translated">換行運算式</target> <note /> </trans-unit> <trans-unit id="Wrap_long_argument_list"> <source>Wrap long argument list</source> <target state="translated">包裝長引數清單</target> <note /> </trans-unit> <trans-unit id="Wrap_long_call_chain"> <source>Wrap long call chain</source> <target state="translated">包裝長呼叫鏈</target> <note /> </trans-unit> <trans-unit id="Wrap_long_parameter_list"> <source>Wrap long parameter list</source> <target state="translated">將長參數清單換行</target> <note /> </trans-unit> <trans-unit id="Wrapping"> <source>Wrapping</source> <target state="translated">換行</target> <note /> </trans-unit> <trans-unit id="You_can_use_the_navigation_bar_to_switch_contexts"> <source>You can use the navigation bar to switch contexts.</source> <target state="translated">您可以使用導覽列切換內容。</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_empty"> <source>'{0}' cannot be null or empty.</source> <target state="translated">'{0}' 不可為 Null 或空白。</target> <note /> </trans-unit> <trans-unit id="_0_cannot_be_null_or_whitespace"> <source>'{0}' cannot be null or whitespace.</source> <target state="translated">'{0}' 不得為 Null 或空白字元。</target> <note /> </trans-unit> <trans-unit id="_0_dash_1"> <source>{0} - {1}</source> <target state="translated">{0} - {1}</target> <note /> </trans-unit> <trans-unit id="_0_is_not_null_here"> <source>'{0}' is not null here.</source> <target state="translated">'{0}' 在此不是 null。</target> <note /> </trans-unit> <trans-unit id="_0_may_be_null_here"> <source>'{0}' may be null here.</source> <target state="translated">'{0}' 在此可能為 null。</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second"> <source>10,000,000ths of a second</source> <target state="translated">1/10,000,000 秒</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_description"> <source>The "fffffff" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffffff" 自訂格式規範代表秒小數部分的最大有效位數為七; 換句話說,其代表日期與時間值中的千萬分之一秒。 雖然時間值的千萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero"> <source>10,000,000ths of a second (non-zero)</source> <target state="translated">1/10,000,000 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_10000000ths_of_a_second_non_zero_description"> <source>The "FFFFFFF" custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed. Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFFF" 自訂格式規範代表秒小數部分的最大有效位數為七; 換句話說,其代表日期與時間值中的千萬分之一秒。但尾端為零或七個數字皆為零時,不會顯示零。 雖然時間值的千萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second"> <source>1,000,000ths of a second</source> <target state="translated">1/1,000,000 秒</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_description"> <source>The "ffffff" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffffff" 自訂格式規範代表秒小數部分的最大有效位數為六; 換句話說,其代表日期與時間值中的百萬分之一秒。 雖然時間值的百萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero"> <source>1,000,000ths of a second (non-zero)</source> <target state="translated">1/1,000,000 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_1000000ths_of_a_second_non_zero_description"> <source>The "FFFFFF" custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed. Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFFF" 自訂格式規範代表秒小數部分的最大有效位數為六; 換句話說,其代表日期與時間值中的百萬分之一秒。但尾端為零或六個數字皆為零時,不會顯示零。 雖然時間值的百萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second"> <source>100,000ths of a second</source> <target state="translated">1/100,000 秒</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_description"> <source>The "fffff" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"fffff" 自訂格式規範代表秒小數部分的最大有效位數為五; 換句話說,其代表日期與時間值中的十萬分之一秒。 雖然時間值的十萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero"> <source>100,000ths of a second (non-zero)</source> <target state="translated">1/100,000 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_100000ths_of_a_second_non_zero_description"> <source>The "FFFFF" custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed. Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFFF" 自訂格式規範代表秒小數部分的最大有效位數為五; 換句話說,其代表日期與時間值中的十萬分之一秒。但尾端為零或五個數字皆為零時,不會顯示零。 雖然時間值的十萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second"> <source>10,000ths of a second</source> <target state="translated">1/10,000 秒</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_description"> <source>The "ffff" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"ffff" 自訂格式規範代表秒小數部分的最大有效位數為四; 換句話說,其代表日期與時間值中的萬分之一秒。 雖然時間值的萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero"> <source>10,000ths of a second (non-zero)</source> <target state="translated">1/10,000 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_10000ths_of_a_second_non_zero_description"> <source>The "FFFF" custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed. Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.</source> <target state="translated">"FFFF" 自訂格式規範代表秒小數部分的最大有效位數為四; 換句話說,其代表日期與時間值中的萬分之一秒。但尾端為零或四個數字皆為零時,不會顯示零。 雖然時間值的萬分之一秒部分可以顯示,但該值可能沒有太大的意義。日期與時間值的精確度,取決於系統時鐘的分辨能力。在 Windows NT 3.5 (和更新版本) 以及 Windows Vista 作業系統上,時鐘的分辨能力大約為 10-15 毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second"> <source>1,000ths of a second</source> <target state="translated">1/1,000 秒</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_description"> <source>The "fff" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.</source> <target state="translated">"fff" 自訂格式規範代表秒小數部分的最大有效位數為三; 換句話說,其代表日期與時間值中的毫秒。</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero"> <source>1,000ths of a second (non-zero)</source> <target state="translated">1/1,000 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_1000ths_of_a_second_non_zero_description"> <source>The "FFF" custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.</source> <target state="translated">"FFF" 自訂格式規範代表秒小數部分的最大有效位數為三; 換句話說,其代表日期與時間值中的毫秒。但尾端為零或三個數字皆為零時,不會顯示零。</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second"> <source>100ths of a second</source> <target state="translated">1/100 秒</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_description"> <source>The "ff" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.</source> <target state="translated">"ff" 自訂格式規範代表秒小數部分的最大有效位數為二; 換句話說,其代表日期與時間值中的百分之一秒。</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero"> <source>100ths of a second (non-zero)</source> <target state="translated">1/100 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_100ths_of_a_second_non_zero_description"> <source>The "FF" custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.</source> <target state="translated">"FF" 自訂格式規範代表秒小數部分的最大有效位數為二; 換句話說,其代表日期與時間值中的百分之一秒。但尾端為零或兩個數字皆為零時,不會顯示零。</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second"> <source>10ths of a second</source> <target state="translated">1/10 秒</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_description"> <source>The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</source> <target state="new">The "f" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. If the "f" format specifier is used without other format specifiers, it's interpreted as the "f" standard date and time format specifier. When you use "f" format specifiers as part of a format string supplied to the ParseExact or TryParseExact method, the number of "f" format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.</target> <note>{Locked="ParseExact"}{Locked="TryParseExact"}{Locked=""f""}</note> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero"> <source>10ths of a second (non-zero)</source> <target state="translated">1/10 秒 (非零)</target> <note /> </trans-unit> <trans-unit id="_10ths_of_a_second_non_zero_description"> <source>The "F" custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero. If the "F" format specifier is used without other format specifiers, it's interpreted as the "F" standard date and time format specifier. The number of "F" format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.</source> <target state="translated">"F" 自訂格式規範代表秒小數部分的最大有效位數; 換句話說,其代表日期與時間值中的十分之一秒。如果數字為零,即不會顯示。 如果在使用 "F" 格式規範時沒有其他格式規範,則會將其解譯為 "F" 標準日期與時間格式規範。 使用 ParseExact、TryParseExact、ParseExact 或 TryParseExact 方法時,所使用的 "F" 格式規範數字,代表成功剖析字串所能出現秒小數部分的最大有效位數。</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits"> <source>12 hour clock (1-2 digits)</source> <target state="translated">12 小時制 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_1_2_digits_description"> <source>The "h" custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays "5". If the "h" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"h" 自訂格式規範代表小時,以數字 1 到 12 表示; 換句話說,小時即為自午夜或中午起所經過的整數時數,是 12 小時制。午夜後經過特定小時數與中午後經過相同的小時數,會無法區別。小時不會四捨五入,而單一數字的小時格式,開頭不會出現零。例如,假設時間為上午或下午的 5:43,此自訂格式規範會顯示 "5"。 如果在使用 "h" 格式規範時沒有其他自訂格式規範,則會將其解譯為標準日期與時間格式規範,並擲回 FormatException。</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits"> <source>12 hour clock (2 digits)</source> <target state="translated">12 小時制 (2 位數)</target> <note /> </trans-unit> <trans-unit id="_12_hour_clock_2_digits_description"> <source>The "hh" custom format specifier (plus any number of additional "h" specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays "05".</source> <target state="translated">"hh" 自訂格式規範 (加上任意數目的其他 "h" 規範) 代表小時,以數字 01 到 12 表示; 換句話說,小時即為自午夜或中午起所經過的整數時數,是 12 小時制。午夜後經過特定小時數與中午後經過相同的小時數,會無法區別。小時不會四捨五入,而單一數字的小時格式,開頭不會出現零。例如,假設時間為上午或下午的 5:43,此自訂格式規範會顯示 "05"。</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits"> <source>24 hour clock (1-2 digits)</source> <target state="translated">24 小時制 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_1_2_digits_description"> <source>The "H" custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero. If the "H" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"H" 自訂格式規範代表小時,以數字 0 到 23 表示; 換句話說,小時即為自午夜起所經過的時數,是以零開始的 24 小時制。單一數字的小時格式,開頭不會出現零。 如果在使用 "H" 格式規範時沒有其他自訂格式規範,則會將其解譯為標準日期與時間格式規範,並擲回 FormatException。</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits"> <source>24 hour clock (2 digits)</source> <target state="translated">24 小時制 (2 位數)</target> <note /> </trans-unit> <trans-unit id="_24_hour_clock_2_digits_description"> <source>The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.</source> <target state="translated">"HH" 自訂格式規範 (加上任意數目的其他 "H" 規範) 代表小時,以數字 00 到 23 表示; 換句話說,小時即為自午夜起所經過的時數,是以零開始的 24 小時制。單一數字的小時格式,開頭不會出現零。</target> <note /> </trans-unit> <trans-unit id="and_update_call_sites_directly"> <source>and update call sites directly</source> <target state="new">and update call sites directly</target> <note /> </trans-unit> <trans-unit id="code"> <source>code</source> <target state="translated">代碼</target> <note /> </trans-unit> <trans-unit id="date_separator"> <source>date separator</source> <target state="translated">日期分隔符號</target> <note /> </trans-unit> <trans-unit id="date_separator_description"> <source>The "/" custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture. Note: To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which "/" is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the "/" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"/" 自訂格式規範代表日期分隔符號,可用於區分年、月和日。系統會從目前文化特性或所指定文化特性的 DateTimeFormatInfo.DateSeparator 屬性,擷取適當的當地語系化日期分隔符號。 注意: 若要變更特定日期與時間字串的日期分隔符號,請在常值字串分隔符號內指定分隔符號字元。例如,自訂格式字串 mm'/'dd'/'yyyy 所產生的結果字串,一律會以 "/" 作為日期分隔符號。若要變更某項文化特性所有日期的日期分隔符號,請變更目前文化特性的 DateTimeFormatInfo.DateSeparator 屬性值,或是將 DateTimeFormatInfo 物件具現化、將字元指派給其 DateSeparator 屬性,然後呼叫包含 IFormatProvider 參數的格式化方法多載。 如果在使用 "/" 格式規範時沒有其他自訂格式規範,則會將其解譯為標準日期與時間格式規範,並擲回 FormatException。</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits"> <source>day of the month (1-2 digits)</source> <target state="translated">該月份第幾天 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_1_2_digits_description"> <source>The "d" custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero. If the "d" format specifier is used without other custom format specifiers, it's interpreted as the "d" standard date and time format specifier.</source> <target state="translated">"d" 自訂格式規範代表該月份的哪一天,以數字 1 到 31 表示。單一數字的日期格式,開頭不會出現零。 如果在使用 "d" 格式規範時沒有其他自訂格式規範,則會將其解譯為 "d" 標準日期與時間格式規範。</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits"> <source>day of the month (2 digits)</source> <target state="translated">該月份第幾天 (2 位數)</target> <note /> </trans-unit> <trans-unit id="day_of_the_month_2_digits_description"> <source>The "dd" custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.</source> <target state="translated">"dd" 自訂格式字串代表該月的第幾天,以數字 01 到 31 來表示。單一數字的日期格式,開頭不會出現零。</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated"> <source>day of the week (abbreviated)</source> <target state="translated">星期幾 (縮寫)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_abbreviated_description"> <source>The "ddd" custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.</source> <target state="translated">"ddd" 自訂格式規範代表星期幾的縮寫名稱。系統會從目前文化特性或指定文化特性的 DateTimeFormatInfo.AbbreviatedDayNames 屬性,擷取星期幾的當地語系化縮寫名稱。</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full"> <source>day of the week (full)</source> <target state="translated">星期幾 (完整)</target> <note /> </trans-unit> <trans-unit id="day_of_the_week_full_description"> <source>The "dddd" custom format specifier (plus any number of additional "d" specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.</source> <target state="translated">"dddd" 自訂格式規範 (加上任意數目的其他 "d" 規範) 代表星期幾的完整名稱。系統會從目前文化特性或指定文化特性的 DateTimeFormatInfo.DayNames 屬性,擷取星期幾的當地語系化名稱。</target> <note /> </trans-unit> <trans-unit id="discard"> <source>discard</source> <target state="translated">捨棄</target> <note /> </trans-unit> <trans-unit id="from_metadata"> <source>from metadata</source> <target state="translated">來自中繼資料</target> <note /> </trans-unit> <trans-unit id="full_long_date_time"> <source>full long date/time</source> <target state="translated">完整日期/時間 (完整)</target> <note /> </trans-unit> <trans-unit id="full_long_date_time_description"> <source>The "F" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.FullDateTimePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy HH:mm:ss".</source> <target state="translated">"F" 標準格式規範代表由目前 DateTimeFormatInfo.FullDateTimePattern 屬性所定義的自訂日期與時間格式字串。例如,不因文化特性而異的自訂格式字串為 "dddd, dd MMMM yyyy HH:mm:ss"。</target> <note /> </trans-unit> <trans-unit id="full_short_date_time"> <source>full short date/time</source> <target state="translated">完整日期/時間 (簡短)</target> <note /> </trans-unit> <trans-unit id="full_short_date_time_description"> <source>The Full Date Short Time ("f") Format Specifier The "f" standard format specifier represents a combination of the long date ("D") and short time ("t") patterns, separated by a space.</source> <target state="translated">完整日期簡短時間 ("f") 的格式規範 "f" 標準格式規範代表完整日期 ("D") 與簡短時間 ("t") 模式的組合 (以空格分隔)。</target> <note /> </trans-unit> <trans-unit id="general_long_date_time"> <source>general long date/time</source> <target state="translated">一般日期/時間 (完整)</target> <note /> </trans-unit> <trans-unit id="general_long_date_time_description"> <source>The "G" standard format specifier represents a combination of the short date ("d") and long time ("T") patterns, separated by a space.</source> <target state="translated">"G" 標準格式規範代表簡短日期 ("d") 與完整時間 ("T") 模式的組合 (以空格分隔)。</target> <note /> </trans-unit> <trans-unit id="general_short_date_time"> <source>general short date/time</source> <target state="translated">一般日期/時間 (簡短)</target> <note /> </trans-unit> <trans-unit id="general_short_date_time_description"> <source>The "g" standard format specifier represents a combination of the short date ("d") and short time ("t") patterns, separated by a space.</source> <target state="translated">"g" 標準格式規範代表簡短日期 ("d") 與簡短時間 ("t") 模式的組合 (以空格分隔)。</target> <note /> </trans-unit> <trans-unit id="generic_overload"> <source>generic overload</source> <target state="translated">泛型多載</target> <note /> </trans-unit> <trans-unit id="generic_overloads"> <source>generic overloads</source> <target state="translated">泛型多載</target> <note /> </trans-unit> <trans-unit id="in_0_1_2"> <source>in {0} ({1} - {2})</source> <target state="translated">在 {0} ({1} - {2})</target> <note /> </trans-unit> <trans-unit id="in_Source_attribute"> <source>in Source (attribute)</source> <target state="translated">在來源中 (屬性)</target> <note /> </trans-unit> <trans-unit id="into_extracted_method_to_invoke_at_call_sites"> <source>into extracted method to invoke at call sites</source> <target state="new">into extracted method to invoke at call sites</target> <note /> </trans-unit> <trans-unit id="into_new_overload"> <source>into new overload</source> <target state="new">into new overload</target> <note /> </trans-unit> <trans-unit id="long_date"> <source>long date</source> <target state="translated">完整日期</target> <note /> </trans-unit> <trans-unit id="long_date_description"> <source>The "D" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.LongDatePattern property. For example, the custom format string for the invariant culture is "dddd, dd MMMM yyyy".</source> <target state="translated">"D" 標準格式規範代表由目前 DateTimeFormatInfo.LongDatePattern 屬性所定義的自訂日期與時間格式字串。例如,不因文化特性而異的自訂格式字串為 "dddd, dd MMMM yyyy"。</target> <note /> </trans-unit> <trans-unit id="long_time"> <source>long time</source> <target state="translated">完整時間</target> <note /> </trans-unit> <trans-unit id="long_time_description"> <source>The "T" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.LongTimePattern property. For example, the custom format string for the invariant culture is "HH:mm:ss".</source> <target state="translated">"T" 標準格式規範代表由特定文化特性的 DateTimeFormatInfo.LongTimePattern 屬性所定義的自訂日期與時間格式字串。例如,不因文化特性而異的自訂格式字串為 "HH:mm:ss"。</target> <note /> </trans-unit> <trans-unit id="member_kind_and_name"> <source>{0} '{1}'</source> <target state="translated">{0} '{1}'</target> <note>e.g. "method 'M'"</note> </trans-unit> <trans-unit id="minute_1_2_digits"> <source>minute (1-2 digits)</source> <target state="translated">分鐘 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="minute_1_2_digits_description"> <source>The "m" custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero. If the "m" format specifier is used without other custom format specifiers, it's interpreted as the "m" standard date and time format specifier.</source> <target state="translated">"m" 自訂格式規範代表分鐘,以數字 0 到 59 表示。分鐘代表自上一個小時後所經過的整數分鐘數。單一數字的分鐘格式,開頭不會出現零。 如果在使用 "m" 格式規範時沒有其他自訂格式規範,則會將其解譯為 "m" 標準日期與時間格式規範。</target> <note /> </trans-unit> <trans-unit id="minute_2_digits"> <source>minute (2 digits)</source> <target state="translated">分鐘 (2 位數)</target> <note /> </trans-unit> <trans-unit id="minute_2_digits_description"> <source>The "mm" custom format specifier (plus any number of additional "m" specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.</source> <target state="translated">"mm" 自訂格式規範 (加上任意數目的其他 "m" 規範) 代表分鐘,以數字 00 到 59 表示。分鐘代表自上一個小時後,已經過的整數分鐘數。單一數字的分鐘格式,開頭不會出現零。</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits"> <source>month (1-2 digits)</source> <target state="translated">月份 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="month_1_2_digits_description"> <source>The "M" custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero. If the "M" format specifier is used without other custom format specifiers, it's interpreted as the "M" standard date and time format specifier.</source> <target state="translated">"M" 自訂格式規範代表月份,以數字 1 到 12 表示 (若月曆有 13 個月,則以數字 1 到 13 表示)。單一數字的月份格式,開頭不會出現零。 如果在使用 "M" 格式規範時沒有其他自訂格式規範,則會將其解譯為 "M" 標準日期與時間格式規範。</target> <note /> </trans-unit> <trans-unit id="month_2_digits"> <source>month (2 digits)</source> <target state="translated">月份 (2 位數)</target> <note /> </trans-unit> <trans-unit id="month_2_digits_description"> <source>The "MM" custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.</source> <target state="translated">"MM" 自訂格式規範代表月份,以數字 01 到 12 表示 (若月曆有 13 個月,則以數字 1 到 13 表示)。單一數字的月份格式,開頭不會出現零。</target> <note /> </trans-unit> <trans-unit id="month_abbreviated"> <source>month (abbreviated)</source> <target state="translated">月份 (縮寫)</target> <note /> </trans-unit> <trans-unit id="month_abbreviated_description"> <source>The "MMM" custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.</source> <target state="translated">"MMM" 自訂格式規範代表該月份的縮寫名稱。系統會從目前文化特性或指定文化特性的 DateTimeFormatInfo.AbbreviatedMonthNames 屬性,擷取該月份的當地語系化縮寫名稱。</target> <note /> </trans-unit> <trans-unit id="month_day"> <source>month day</source> <target state="translated">月日</target> <note /> </trans-unit> <trans-unit id="month_day_description"> <source>The "M" or "m" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.MonthDayPattern property. For example, the custom format string for the invariant culture is "MMMM dd".</source> <target state="translated">"M" 或 "m" 標準格式規範代表由目前 DateTimeFormatInfo.MonthDayPattern 屬性所定義的自訂日期與時間格式字串。例如,不因文化特性而異的自訂格式字串為 "MMMM dd"。</target> <note /> </trans-unit> <trans-unit id="month_full"> <source>month (full)</source> <target state="translated">月份 (完整)</target> <note /> </trans-unit> <trans-unit id="month_full_description"> <source>The "MMMM" custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.</source> <target state="translated">"MMMM" 自訂格式規範代表該月份的完整名稱。系統會從目前文化特性或指定文化特性的 DateTimeFormatInfo.MonthNames 屬性,擷取該月份的當地語系化名稱。</target> <note /> </trans-unit> <trans-unit id="overload"> <source>overload</source> <target state="translated">多載</target> <note /> </trans-unit> <trans-unit id="overloads_"> <source>overloads</source> <target state="translated">多載</target> <note /> </trans-unit> <trans-unit id="_0_Keyword"> <source>{0} Keyword</source> <target state="translated">{0} 關鍵字</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_and_use_property"> <source>Encapsulate field: '{0}' (and use property)</source> <target state="translated">封裝欄位: '{0}' (並使用屬性)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_field_colon_0_but_still_use_field"> <source>Encapsulate field: '{0}' (but still use field)</source> <target state="translated">封裝欄位: '{0}' (但仍使用欄位)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_and_use_property"> <source>Encapsulate fields (and use property)</source> <target state="translated">封裝欄位 (並使用屬性)</target> <note /> </trans-unit> <trans-unit id="Encapsulate_fields_but_still_use_field"> <source>Encapsulate fields (but still use field)</source> <target state="translated">封裝欄位 (但仍使用欄位)</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct"> <source>Could not extract interface: The selection is not inside a class/interface/struct.</source> <target state="translated">無法擷取介面: 此選擇未落在 class/interface/struct 中。</target> <note /> </trans-unit> <trans-unit id="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface"> <source>Could not extract interface: The type does not contain any member that can be extracted to an interface.</source> <target state="translated">無法擷取介面: 此類型不包含任何可以擷取至介面的成員。</target> <note /> </trans-unit> <trans-unit id="can_t_not_construct_final_tree"> <source>can't not construct final tree</source> <target state="translated">無法建構最終的樹狀結構</target> <note /> </trans-unit> <trans-unit id="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket"> <source>Parameters' type or return type cannot be an anonymous type : [{0}]</source> <target state="translated">參數的類型或傳回類型不可為匿名類型: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_no_active_statement"> <source>The selection contains no active statement.</source> <target state="translated">選擇內容包含非現用的陳述式。</target> <note /> </trans-unit> <trans-unit id="The_selection_contains_an_error_or_unknown_type"> <source>The selection contains an error or unknown type.</source> <target state="translated">選擇範圍包含錯誤或不明類型。</target> <note /> </trans-unit> <trans-unit id="Type_parameter_0_is_hidden_by_another_type_parameter_1"> <source>Type parameter '{0}' is hidden by another type parameter '{1}'.</source> <target state="translated">類型參數 '{0}' 已由另一個類型參數 '{1}' 隱藏。</target> <note /> </trans-unit> <trans-unit id="The_address_of_a_variable_is_used_inside_the_selected_code"> <source>The address of a variable is used inside the selected code.</source> <target state="translated">此變數位址會用於選取的節點中。</target> <note /> </trans-unit> <trans-unit id="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket"> <source>Assigning to readonly fields must be done in a constructor : [{0}].</source> <target state="translated">指派給唯讀欄位必須在建構函式 [{0}] 中完成。</target> <note /> </trans-unit> <trans-unit id="generated_code_is_overlapping_with_hidden_portion_of_the_code"> <source>generated code is overlapping with hidden portion of the code</source> <target state="translated">產生的程式碼與程式碼的隱藏部分重疊</target> <note /> </trans-unit> <trans-unit id="Add_optional_parameters_to_0"> <source>Add optional parameters to '{0}'</source> <target state="translated">將選用參數新增至 '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_parameters_to_0"> <source>Add parameters to '{0}'</source> <target state="translated">將參數新增至 '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_delegating_constructor_0_1"> <source>Generate delegating constructor '{0}({1})'</source> <target state="translated">產生委派建構函式 '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_0_1"> <source>Generate constructor '{0}({1})'</source> <target state="translated">產生建構函式 '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_field_assigning_constructor_0_1"> <source>Generate field assigning constructor '{0}({1})'</source> <target state="translated">產生欄位指派建構函式 '{0}({1})'</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_and_GetHashCode"> <source>Generate Equals and GetHashCode</source> <target state="translated">產生 Equals 與 GetHashCode</target> <note /> </trans-unit> <trans-unit id="Generate_Equals_object"> <source>Generate Equals(object)</source> <target state="translated">產生 Equals(object)</target> <note /> </trans-unit> <trans-unit id="Generate_GetHashCode"> <source>Generate GetHashCode()</source> <target state="translated">產生 GetHashCode()</target> <note /> </trans-unit> <trans-unit id="Generate_constructor_in_0"> <source>Generate constructor in '{0}'</source> <target state="translated">在 '{0}' 中產生建構函式</target> <note /> </trans-unit> <trans-unit id="Generate_all"> <source>Generate all</source> <target state="translated">產生全部</target> <note /> </trans-unit> <trans-unit id="Generate_enum_member_1_0"> <source>Generate enum member '{1}.{0}'</source> <target state="translated">產生列舉成員 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constant_1_0"> <source>Generate constant '{1}.{0}'</source> <target state="translated">產生常數 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_property_1_0"> <source>Generate read-only property '{1}.{0}'</source> <target state="translated">產生唯讀屬性 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_property_1_0"> <source>Generate property '{1}.{0}'</source> <target state="translated">產生屬性 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_read_only_field_1_0"> <source>Generate read-only field '{1}.{0}'</source> <target state="translated">產生唯讀欄位 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_field_1_0"> <source>Generate field '{1}.{0}'</source> <target state="translated">產生欄位 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_local_0"> <source>Generate local '{0}'</source> <target state="translated">產生區域 '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1_in_new_file"> <source>Generate {0} '{1}' in new file</source> <target state="translated">在新檔案中產生 {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Generate_nested_0_1"> <source>Generate nested {0} '{1}'</source> <target state="translated">產生巢狀 {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Global_Namespace"> <source>Global Namespace</source> <target state="translated">全域命名空間</target> <note /> </trans-unit> <trans-unit id="Implement_interface_abstractly"> <source>Implement interface abstractly</source> <target state="translated">以抽象方式實作介面</target> <note /> </trans-unit> <trans-unit id="Implement_interface_through_0"> <source>Implement interface through '{0}'</source> <target state="translated">透過 '{0}' 實作介面</target> <note /> </trans-unit> <trans-unit id="Implement_interface"> <source>Implement interface</source> <target state="translated">實作介面</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_0"> <source>Introduce field for '{0}'</source> <target state="translated">為 '{0}' 引進欄位</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_0"> <source>Introduce local for '{0}'</source> <target state="translated">為 '{0}' 引進區域</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_0"> <source>Introduce constant for '{0}'</source> <target state="translated">為 '{0}' 引進常數</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_0"> <source>Introduce local constant for '{0}'</source> <target state="translated">為 '{0}' 引進區域常數</target> <note /> </trans-unit> <trans-unit id="Introduce_field_for_all_occurrences_of_0"> <source>Introduce field for all occurrences of '{0}'</source> <target state="translated">為所有出現 '{0}' 之處引進欄位</target> <note /> </trans-unit> <trans-unit id="Introduce_local_for_all_occurrences_of_0"> <source>Introduce local for all occurrences of '{0}'</source> <target state="translated">為所有出現 '{0}' 之處引進區域</target> <note /> </trans-unit> <trans-unit id="Introduce_constant_for_all_occurrences_of_0"> <source>Introduce constant for all occurrences of '{0}'</source> <target state="translated">為所有出現 '{0}' 之處引進常數</target> <note /> </trans-unit> <trans-unit id="Introduce_local_constant_for_all_occurrences_of_0"> <source>Introduce local constant for all occurrences of '{0}'</source> <target state="translated">為所有出現 '{0}' 之處引進區域常數</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_all_occurrences_of_0"> <source>Introduce query variable for all occurrences of '{0}'</source> <target state="translated">為所有出現 '{0}' 之處引進查詢變數</target> <note /> </trans-unit> <trans-unit id="Introduce_query_variable_for_0"> <source>Introduce query variable for '{0}'</source> <target state="translated">為 '{0}' 引進查詢變數</target> <note /> </trans-unit> <trans-unit id="Anonymous_Types_colon"> <source>Anonymous Types:</source> <target state="translated">匿名類型:</target> <note /> </trans-unit> <trans-unit id="is_"> <source>is</source> <target state="translated">是</target> <note /> </trans-unit> <trans-unit id="Represents_an_object_whose_operations_will_be_resolved_at_runtime"> <source>Represents an object whose operations will be resolved at runtime.</source> <target state="translated">表示其作業將於執行階段解決的物件。</target> <note /> </trans-unit> <trans-unit id="constant"> <source>constant</source> <target state="translated">常數</target> <note /> </trans-unit> <trans-unit id="field"> <source>field</source> <target state="translated">欄位</target> <note /> </trans-unit> <trans-unit id="local_constant"> <source>local constant</source> <target state="translated">本機常數</target> <note /> </trans-unit> <trans-unit id="local_variable"> <source>local variable</source> <target state="translated">區域變數</target> <note /> </trans-unit> <trans-unit id="label"> <source>label</source> <target state="translated">標籤</target> <note /> </trans-unit> <trans-unit id="period_era"> <source>period/era</source> <target state="translated">時期/年份</target> <note /> </trans-unit> <trans-unit id="period_era_description"> <source>The "g" or "gg" custom format specifiers (plus any number of additional "g" specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string. If the "g" format specifier is used without other custom format specifiers, it's interpreted as the "g" standard date and time format specifier.</source> <target state="translated">"g" 或 "gg" 自訂格式規範 (外加任意數目的額外 "g" 規範) 代表時期或年代 (例如西元)。若要格式化的日期沒有已建立關聯的時期或年代字串,則格式化作業就會忽略此規範。 如果使用 "g" 格式規範,而且沒有其他自訂格式規範,則會將其解譯為 "g" 標準日期和時間格式規範。</target> <note /> </trans-unit> <trans-unit id="property_accessor"> <source>property accessor</source> <target state="new">property accessor</target> <note /> </trans-unit> <trans-unit id="range_variable"> <source>range variable</source> <target state="translated">範圍變數</target> <note /> </trans-unit> <trans-unit id="parameter"> <source>parameter</source> <target state="translated">參數</target> <note /> </trans-unit> <trans-unit id="in_"> <source>in</source> <target state="translated">在...中</target> <note /> </trans-unit> <trans-unit id="Summary_colon"> <source>Summary:</source> <target state="translated">摘要:</target> <note /> </trans-unit> <trans-unit id="Locals_and_parameters"> <source>Locals and parameters</source> <target state="translated">區域變數和參數</target> <note /> </trans-unit> <trans-unit id="Type_parameters_colon"> <source>Type parameters:</source> <target state="translated">類型參數:</target> <note /> </trans-unit> <trans-unit id="Returns_colon"> <source>Returns:</source> <target state="translated">傳回:</target> <note /> </trans-unit> <trans-unit id="Exceptions_colon"> <source>Exceptions:</source> <target state="translated">例外狀況:</target> <note /> </trans-unit> <trans-unit id="Remarks_colon"> <source>Remarks:</source> <target state="translated">備註:</target> <note /> </trans-unit> <trans-unit id="generating_source_for_symbols_of_this_type_is_not_supported"> <source>generating source for symbols of this type is not supported</source> <target state="translated">不支援產生此類型之符號的來源</target> <note /> </trans-unit> <trans-unit id="Assembly"> <source>Assembly</source> <target state="translated">組件</target> <note /> </trans-unit> <trans-unit id="location_unknown"> <source>location unknown</source> <target state="translated">位置不明</target> <note /> </trans-unit> <trans-unit id="Unexpected_interface_member_kind_colon_0"> <source>Unexpected interface member kind: {0}</source> <target state="translated">未預期的介面成員種類: {0}</target> <note /> </trans-unit> <trans-unit id="Unknown_symbol_kind"> <source>Unknown symbol kind</source> <target state="translated">符號種類不明</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_property_1_0"> <source>Generate abstract property '{1}.{0}'</source> <target state="translated">產生抽象屬性 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_abstract_method_1_0"> <source>Generate abstract method '{1}.{0}'</source> <target state="translated">產生抽象方法 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_method_1_0"> <source>Generate method '{1}.{0}'</source> <target state="translated">產生方法 '{1}.{0}'</target> <note /> </trans-unit> <trans-unit id="Requested_assembly_already_loaded_from_0"> <source>Requested assembly already loaded from '{0}'.</source> <target state="translated">已從 '{0}' 載入所要求的組件。</target> <note /> </trans-unit> <trans-unit id="The_symbol_does_not_have_an_icon"> <source>The symbol does not have an icon.</source> <target state="translated">這個符號沒有圖示。</target> <note /> </trans-unit> <trans-unit id="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket"> <source>Asynchronous method cannot have ref/out parameters : [{0}]</source> <target state="translated">非同步方法不可有 ref/out 參數: [{0}]</target> <note /> </trans-unit> <trans-unit id="The_member_is_defined_in_metadata"> <source>The member is defined in metadata.</source> <target state="translated">該成員定義於中繼資料內。</target> <note /> </trans-unit> <trans-unit id="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate"> <source>You can only change the signature of a constructor, indexer, method or delegate.</source> <target state="translated">您只能變更建構函式、索引子、方法或委派的簽章。</target> <note /> </trans-unit> <trans-unit id="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue"> <source>This symbol has related definitions or references in metadata. Changing its signature may result in build errors. Do you want to continue?</source> <target state="translated">中繼資料內包含有此符號的相關定義或參考。變更其簽章可能會導致建置錯誤。 要繼續嗎?</target> <note /> </trans-unit> <trans-unit id="Change_signature"> <source>Change signature...</source> <target state="translated">變更簽章...</target> <note /> </trans-unit> <trans-unit id="Generate_new_type"> <source>Generate new type...</source> <target state="translated">產生新的類型...</target> <note /> </trans-unit> <trans-unit id="User_Diagnostic_Analyzer_Failure"> <source>User Diagnostic Analyzer Failure.</source> <target state="translated">使用者診斷分析器失敗。</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_an_exception_of_type_1_with_message_2"> <source>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</source> <target state="translated">分析器 '{0}' 擲回類型 '{1}' 的例外狀況,訊息為 '{2}'。</target> <note /> </trans-unit> <trans-unit id="Analyzer_0_threw_the_following_exception_colon_1"> <source>Analyzer '{0}' threw the following exception: '{1}'.</source> <target state="translated">分析器 '{0}' 擲回下列例外狀況: '{1}'。</target> <note /> </trans-unit> <trans-unit id="Simplify_Names"> <source>Simplify Names</source> <target state="translated">簡化名稱</target> <note /> </trans-unit> <trans-unit id="Simplify_Member_Access"> <source>Simplify Member Access</source> <target state="translated">簡化成員存取</target> <note /> </trans-unit> <trans-unit id="Remove_qualification"> <source>Remove qualification</source> <target state="translated">移除限定性條件</target> <note /> </trans-unit> <trans-unit id="Unknown_error_occurred"> <source>Unknown error occurred</source> <target state="translated">發生不明錯誤</target> <note /> </trans-unit> <trans-unit id="Available"> <source>Available</source> <target state="translated">可用</target> <note /> </trans-unit> <trans-unit id="Not_Available"> <source>Not Available ⚠</source> <target state="translated">無法使用 ⚠</target> <note /> </trans-unit> <trans-unit id="_0_1"> <source> {0} - {1}</source> <target state="translated"> {0} - {1}</target> <note /> </trans-unit> <trans-unit id="in_Source"> <source>in Source</source> <target state="translated">在原始程式檔中</target> <note /> </trans-unit> <trans-unit id="in_Suppression_File"> <source>in Suppression File</source> <target state="translated">在隱藏項目檔中</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression_0"> <source>Remove Suppression {0}</source> <target state="translated">移除隱藏項目 {0}</target> <note /> </trans-unit> <trans-unit id="Remove_Suppression"> <source>Remove Suppression</source> <target state="translated">移除隱藏項目</target> <note /> </trans-unit> <trans-unit id="Pending"> <source>&lt;Pending&gt;</source> <target state="translated">&lt;暫止&gt;</target> <note /> </trans-unit> <trans-unit id="Note_colon_Tab_twice_to_insert_the_0_snippet"> <source>Note: Tab twice to insert the '{0}' snippet.</source> <target state="translated">注意: 按兩次 Tab 鍵即可插入 '{0}' 程式碼片段。</target> <note /> </trans-unit> <trans-unit id="Implement_interface_explicitly_with_Dispose_pattern"> <source>Implement interface explicitly with Dispose pattern</source> <target state="translated">使用 Dispose 模式明確地實作介面</target> <note /> </trans-unit> <trans-unit id="Implement_interface_with_Dispose_pattern"> <source>Implement interface with Dispose pattern</source> <target state="translated">使用 Dispose 模式實作介面</target> <note /> </trans-unit> <trans-unit id="Re_triage_0_currently_1"> <source>Re-triage {0}(currently '{1}')</source> <target state="translated">重新分級 {0}(目前為 '{1}')</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_have_a_null_element"> <source>Argument cannot have a null element.</source> <target state="translated">引數不能有 null 元素。</target> <note /> </trans-unit> <trans-unit id="Argument_cannot_be_empty"> <source>Argument cannot be empty.</source> <target state="translated">引數不可為空白。</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer"> <source>Reported diagnostic with ID '{0}' is not supported by the analyzer.</source> <target state="translated">分析器不支援識別碼為 '{0}' 的回報診斷。</target> <note /> </trans-unit> <trans-unit id="Computing_fix_all_occurrences_code_fix"> <source>Computing fix all occurrences code fix...</source> <target state="translated">正在計算修正所有出現程式碼修正之處...</target> <note /> </trans-unit> <trans-unit id="Fix_all_occurrences"> <source>Fix all occurrences</source> <target state="translated">修正所有發生次數</target> <note /> </trans-unit> <trans-unit id="Document"> <source>Document</source> <target state="translated">文件</target> <note /> </trans-unit> <trans-unit id="Project"> <source>Project</source> <target state="translated">專案</target> <note /> </trans-unit> <trans-unit id="Solution"> <source>Solution</source> <target state="translated">解決方案</target> <note /> </trans-unit> <trans-unit id="TODO_colon_dispose_managed_state_managed_objects"> <source>TODO: dispose managed state (managed objects)</source> <target state="translated">TODO: 處置受控狀態 (受控物件)</target> <note /> </trans-unit> <trans-unit id="TODO_colon_set_large_fields_to_null"> <source>TODO: set large fields to null</source> <target state="translated">TODO: 將大型欄位設為 Null</target> <note /> </trans-unit> <trans-unit id="Compiler2"> <source>Compiler</source> <target state="translated">編譯器</target> <note /> </trans-unit> <trans-unit id="Live"> <source>Live</source> <target state="translated">即時</target> <note /> </trans-unit> <trans-unit id="enum_value"> <source>enum value</source> <target state="translated">enum 值</target> <note>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="const_field"> <source>const field</source> <target state="translated">const 欄位</target> <note>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</note> </trans-unit> <trans-unit id="method"> <source>method</source> <target state="translated">方法</target> <note /> </trans-unit> <trans-unit id="operator_"> <source>operator</source> <target state="translated">運算子</target> <note /> </trans-unit> <trans-unit id="constructor"> <source>constructor</source> <target state="translated">建構函式</target> <note /> </trans-unit> <trans-unit id="auto_property"> <source>auto-property</source> <target state="translated">Auto 屬性</target> <note /> </trans-unit> <trans-unit id="property_"> <source>property</source> <target state="translated">屬性</target> <note /> </trans-unit> <trans-unit id="event_accessor"> <source>event accessor</source> <target state="translated">事件存取子</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time"> <source>rfc1123 date/time</source> <target state="translated">rfc1123 日期/時間</target> <note /> </trans-unit> <trans-unit id="rfc1123_date_time_description"> <source>The "R" or "r" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.RFC1123Pattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"R" 或 "r" 標準格式規範代表由 DateTimeFormatInfo.RFC1123Pattern 屬性所定義的自訂日期和時間格式字串。此模式會反映出已定義的標準,且屬性為唯讀。因此,不管使用何種文化特性 (Culture) 或提供何種格式提供者,其始終都相同。自訂格式字串為 "ddd, dd MMM yyyy HH':'mm':'ss 'GMT'"。使用此標準格式規範時,格式化或剖析作業永遠不因文化特性而異。</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time"> <source>round-trip date/time</source> <target state="translated">來回行程日期/時間</target> <note /> </trans-unit> <trans-unit id="round_trip_date_time_description"> <source>The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601. For DateTime values, this format specifier is designed to preserve date and time values along with the DateTime.Kind property in text. The formatted string can be parsed back by using the DateTime.Parse(String, IFormatProvider, DateTimeStyles) or DateTime.ParseExact method if the styles parameter is set to DateTimeStyles.RoundtripKind. The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values. In this string, the pairs of single quotation marks that delimit individual characters, such as the hyphens, the colons, and the letter "T", indicate that the individual character is a literal that cannot be changed. The apostrophes do not appear in the output string. The "O" or "o" standard format specifier (and the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string) takes advantage of the three ways that ISO 8601 represents time zone information to preserve the Kind property of DateTime values: The time zone component of DateTimeKind.Local date and time values is an offset from UTC (for example, +01:00, -07:00). All DateTimeOffset values are also represented in this format. The time zone component of DateTimeKind.Utc date and time values uses "Z" (which stands for zero offset) to represent UTC. DateTimeKind.Unspecified date and time values have no time zone information. Because the "O" or "o" standard format specifier conforms to an international standard, the formatting or parsing operation that uses the specifier always uses the invariant culture and the Gregorian calendar. Strings that are passed to the Parse, TryParse, ParseExact, and TryParseExact methods of DateTime and DateTimeOffset can be parsed by using the "O" or "o" format specifier if they are in one of these formats. In the case of DateTime objects, the parsing overload that you call should also include a styles parameter with a value of DateTimeStyles.RoundtripKind. Note that if you call a parsing method with the custom format string that corresponds to the "O" or "o" format specifier, you won't get the same results as "O" or "o". This is because parsing methods that use a custom format string can't parse the string representation of date and time values that lack a time zone component or use "Z" to indicate UTC.</source> <target state="translated">"O" 或 "o" 標準格式規範會使用保留時區資訊並發出符合 ISO 8601 規範之結果字串的模式,來表示自訂日期和時間格式字串。對於 DateTime 值,此格式規範專用於以文字來保留日期和時間值以及 DateTime.Kind 屬性。如果樣式參數設定為 DateTimeStyles.RoundtripKind,就可以使用 DateTime.Parse(String, IFormatProvider, DateTimeStyles) 或 DateTime.ParseExact 方法來反向剖析格式化字串。 "O" 或 "o" 標準格式規範對應到 DateTime 值的 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" 自訂格式字串,以及 DateTimeOffset 值的 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" 自訂格式字串。在這個字串中,分隔個別字元 (例如連字號、冒號和字母 "T") 的成對單引號,表示個別字元為無法變更的常值。單引號則不會出現在輸出字串中。 "O" 或 "o" 標準格式規範 (以及 "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" 自訂格式字串) 會利用 ISO 8601 用來表示時區資訊的三種方式,來保留 DateTime 值的 Kind 屬性: DateTimeKind.Local 日期和時間值的時區元件為 UTC 時差 (例如,+01:00、-07:00)。所有 DateTimeOffset 值也都以這種格式表示。 DateTimeKind.Utc 日期和時間值的時區元件使用 "Z" (代表零時差) 來表示 UTC。 DateTimeKind.Unspecified 的日期和時間值沒有時區資訊。 因為 "O" 或 "o" 標準格式規範符合國際標準,所以使用該規範的格式化或剖析作業,永遠不因文化特性而異並使用西曆。 如果傳遞給 DateTime 和 DateTimeOffset 之 Parse、TryParse、ParseExact 以及 TryParseExact 方法的字串採用上述其中一種格式,則可以使用 "O" 或 "o" 格式規範進行剖析。對於 DateTime 物件,您呼叫的剖析多載也應該包含具有 DateTimeStyles.RoundtripKind 值的樣式參數。請注意,如果您使用對應到 "O" 或 "o" 格式規範的自訂格式字串來呼叫剖析方法,就不會收到與 "O" 或 "o" 相同的結果。這是因為使用自訂格式字串的剖析方法無法剖析缺少時區元件或使用 "Z" 來表示 UTC 之日期和時間值的字串表示法。</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits"> <source>second (1-2 digits)</source> <target state="translated">秒 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="second_1_2_digits_description"> <source>The "s" custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero. If the "s" format specifier is used without other custom format specifiers, it's interpreted as the "s" standard date and time format specifier.</source> <target state="translated">"s" 自訂格式規範會將秒數表示為 0 到 59 之間的數字。其結果代表自上一分鐘以來所經過的整數秒數。個位數的秒數開頭不會填補零。 如果使用 "s" 格式規範,而且沒有其他自訂格式規範,則會將其解譯為 "s" 標準日期和時間格式規範。</target> <note /> </trans-unit> <trans-unit id="second_2_digits"> <source>second (2 digits)</source> <target state="translated">秒 (2 位數)</target> <note /> </trans-unit> <trans-unit id="second_2_digits_description"> <source>The "ss" custom format specifier (plus any number of additional "s" specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.</source> <target state="translated">"ss" 自訂格式規範 (外加任意數目的額外 "s" 規範) 會將秒數表示為 00 到 59 之間的數字。其結果代表自上一分鐘以來所經過的整數秒數。個位數的秒數開頭會填補零。</target> <note /> </trans-unit> <trans-unit id="short_date"> <source>short date</source> <target state="translated">簡短日期</target> <note /> </trans-unit> <trans-unit id="short_date_description"> <source>The "d" standard format specifier represents a custom date and time format string that is defined by a specific culture's DateTimeFormatInfo.ShortDatePattern property. For example, the custom format string that is returned by the ShortDatePattern property of the invariant culture is "MM/dd/yyyy".</source> <target state="translated">"d" 標準格式規範代表由特定文化特性 (Culture) DateTimeFormatInfo.ShortDatePattern 屬性所定義的自訂日期和時間格式字串。例如,由不因文化特性而異之 ShortDatePattern 屬性所傳回的自訂格式字串為 "MM/dd/yyyy"。</target> <note /> </trans-unit> <trans-unit id="short_time"> <source>short time</source> <target state="translated">簡短時間</target> <note /> </trans-unit> <trans-unit id="short_time_description"> <source>The "t" standard format specifier represents a custom date and time format string that is defined by the current DateTimeFormatInfo.ShortTimePattern property. For example, the custom format string for the invariant culture is "HH:mm".</source> <target state="translated">"t" 標準格式規範代表由目前 DateTimeFormatInfo.ShortTimePattern 屬性所定義的自訂日期和時間格式字串。例如,不因文化特性而異的自訂格式字串為 "HH:mm"。</target> <note /> </trans-unit> <trans-unit id="sortable_date_time"> <source>sortable date/time</source> <target state="translated">可排序的日期/時間</target> <note /> </trans-unit> <trans-unit id="sortable_date_time_description"> <source>The "s" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.SortableDateTimePattern property. The pattern reflects a defined standard (ISO 8601), and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd'T'HH':'mm':'ss". The purpose of the "s" format specifier is to produce result strings that sort consistently in ascending or descending order based on date and time values. As a result, although the "s" standard format specifier represents a date and time value in a consistent format, the formatting operation does not modify the value of the date and time object that is being formatted to reflect its DateTime.Kind property or its DateTimeOffset.Offset value. For example, the result strings produced by formatting the date and time values 2014-11-15T18:32:17+00:00 and 2014-11-15T18:32:17+08:00 are identical. When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture.</source> <target state="translated">"s" 標準格式規範代表由 DateTimeFormatInfo.SortableDateTimePattern 屬性所定義的自訂日期和時間格式字串。此模式會反映出已定義的標準 (ISO 8601),且屬性為唯讀。因此,不管使用何種文化特性 (Culture) 或提供何種格式提供者,其永遠都相同。自訂格式字串為 "yyyy'-'MM'-'dd'T'HH':'mm':'ss"。 "s" 格式規範的用途為產生依日期和時間值一致地遞增或遞減排序的結果字串。因此,儘管 "s" 標準格式規範以一致的格式表示日期和時間值,但格式化作業並不會修改要格式化的日期和時間物件值,以反映其 DateTime.Kind 屬性或其 DateTimeOffset.Offset 值。例如,將日期和時間值 2014-11-15T18:32:17+00:00 和 2014-11-15T18:32:17+08:00 格式化所產生的結果字串會完全相同。 使用此標準格式規範時,格式化或剖析作業永遠不因文化特性而異。</target> <note /> </trans-unit> <trans-unit id="static_constructor"> <source>static constructor</source> <target state="translated">靜態建構函式</target> <note /> </trans-unit> <trans-unit id="symbol_cannot_be_a_namespace"> <source>'symbol' cannot be a namespace.</source> <target state="translated">'symbol' 不可為命名空間。</target> <note /> </trans-unit> <trans-unit id="time_separator"> <source>time separator</source> <target state="translated">時間分隔符號</target> <note /> </trans-unit> <trans-unit id="time_separator_description"> <source>The ":" custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture. Note: To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which "_" (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter. If the ":" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">":" 自訂格式規範代表時間分隔符號,用於區分小時、分鐘和秒。系統會從目前或指定文化特性 (Culture) 的 DateTimeFormatInfo.TimeSeparator 屬性,擷取適當的當地語系化時間分隔符號。 注意: 若要變更特定日期和時間字串的時間分隔符號,請在常值字串分隔符號內指定分隔符號字元。例如,自訂格式字串 hh'_'dd'_'ss 會產生結果字串,其中 "_" (底線) 永遠用作時間分隔符號。若要針對文化特性 (Culture) 變更所有日期的時間分隔符號,請變更目前文化特性 (Culture) 的 DateTimeFormatInfo.TimeSeparator 屬性值,或將 DateTimeFormatInfo 物件具現化,將字元指派給其 TimeSeparator 屬性,並呼叫包含 IFormatProvider 參數之格式化方法的多載。 如果使用 ":" 格式規範,而且沒有其他自訂格式規範,則會將其解譯為標準日期和時間格式規範,並擲回 FormatException。</target> <note /> </trans-unit> <trans-unit id="time_zone"> <source>time zone</source> <target state="translated">時區</target> <note /> </trans-unit> <trans-unit id="time_zone_description"> <source>The "K" custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property: For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the "zzz" specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, "-07:00". For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a "Z" character to represent a UTC date. For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty. For DateTimeOffset values, the "K" format specifier is equivalent to the "zzz" format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC. If the "K" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">"K" 自訂格式規範代表日期和時間值的時區資訊。當此格式規範與 DateTime 值一起使用時,結果字串會由 DateTime.Kind 屬性的值定義: 對於區域時區 (DateTimeKind.Local 的 DateTime.Kind 屬性值),此規範相當於 "zzz" 規範,並會產生結果字串,其包含區域時間與國際標準時間 (UTC) 的時差; 例如 "-07:00"。 對於 UTC 時間 (DateTimeKind.Utc 的 DateTime.Kind 屬性值),結果字串會包含表示 UTC 日期的 "Z" 字元。 對於未指定時區的時間 (DateTime.Kind 屬性等於 DateTimeKind.Unspecified 的時間),結果會等於 String.Empty。 對於 DateTimeOffset 值,"K" 格式規範相當於 "zzz" 格式規範,並會產生結果字串,其包含 DateTimeOffset 值的 UTC 時差。 如果使用 "K" 格式規範,而且沒有其他自訂格式規範,則會將其解譯為標準日期和時間格式規範,並擲回 FormatException。</target> <note /> </trans-unit> <trans-unit id="type"> <source>type</source> <target state="new">type</target> <note /> </trans-unit> <trans-unit id="type_constraint"> <source>type constraint</source> <target state="translated">類型條件約束</target> <note /> </trans-unit> <trans-unit id="type_parameter"> <source>type parameter</source> <target state="translated">類型參數</target> <note /> </trans-unit> <trans-unit id="attribute"> <source>attribute</source> <target state="translated">屬性</target> <note /> </trans-unit> <trans-unit id="Replace_0_and_1_with_property"> <source>Replace '{0}' and '{1}' with property</source> <target state="translated">以屬性取代 '{0}' 和 '{1}'</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_property"> <source>Replace '{0}' with property</source> <target state="translated">以屬性取代 '{0}'</target> <note /> </trans-unit> <trans-unit id="Method_referenced_implicitly"> <source>Method referenced implicitly</source> <target state="translated">隱含參考的方法</target> <note /> </trans-unit> <trans-unit id="Generate_type_0"> <source>Generate type '{0}'</source> <target state="translated">產生類型 '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_0_1"> <source>Generate {0} '{1}'</source> <target state="translated">產生 {0} '{1}'</target> <note /> </trans-unit> <trans-unit id="Change_0_to_1"> <source>Change '{0}' to '{1}'.</source> <target state="translated">將 '{0}' 變更為 '{1}'。</target> <note /> </trans-unit> <trans-unit id="Non_invoked_method_cannot_be_replaced_with_property"> <source>Non-invoked method cannot be replaced with property.</source> <target state="translated">非叫用的方法無法由屬性取代。</target> <note /> </trans-unit> <trans-unit id="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property"> <source>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</source> <target state="translated">只有具備非 out 變數宣告之單一引數的方法可以由屬性取代。</target> <note /> </trans-unit> <trans-unit id="Roslyn_HostError"> <source>Roslyn.HostError</source> <target state="translated">Roslyn.HostError</target> <note /> </trans-unit> <trans-unit id="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2"> <source>An instance of analyzer {0} cannot be created from {1}: {2}.</source> <target state="translated">無法從 {1}: {2} 建立分析器 {0} 的執行個體。</target> <note /> </trans-unit> <trans-unit id="The_assembly_0_does_not_contain_any_analyzers"> <source>The assembly {0} does not contain any analyzers.</source> <target state="translated">組件 {0} 不包含任何分析器。</target> <note /> </trans-unit> <trans-unit id="Unable_to_load_Analyzer_assembly_0_colon_1"> <source>Unable to load Analyzer assembly {0}: {1}</source> <target state="translated">無法載入分析器組件 {0}: {1}</target> <note /> </trans-unit> <trans-unit id="Make_method_synchronous"> <source>Make method synchronous</source> <target state="translated">讓方法同步</target> <note /> </trans-unit> <trans-unit id="from_0"> <source>from {0}</source> <target state="translated">來自 {0}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version"> <source>Find and install latest version</source> <target state="translated">尋找並安裝最新版本</target> <note /> </trans-unit> <trans-unit id="Use_local_version_0"> <source>Use local version '{0}'</source> <target state="translated">使用本機版本 '{0}'</target> <note /> </trans-unit> <trans-unit id="Use_locally_installed_0_version_1_This_version_used_in_colon_2"> <source>Use locally installed '{0}' version '{1}' This version used in: {2}</source> <target state="translated">使用安裝於本機的 '{0}' 版本 '{1}' 此版本用於: {2}</target> <note /> </trans-unit> <trans-unit id="Find_and_install_latest_version_of_0"> <source>Find and install latest version of '{0}'</source> <target state="translated">尋找並安裝 '{0}' 的最新版本</target> <note /> </trans-unit> <trans-unit id="Install_with_package_manager"> <source>Install with package manager...</source> <target state="translated">使用套件管理員安裝...</target> <note /> </trans-unit> <trans-unit id="Install_0_1"> <source>Install '{0} {1}'</source> <target state="translated">安裝 '{0} {1}'</target> <note /> </trans-unit> <trans-unit id="Install_version_0"> <source>Install version '{0}'</source> <target state="translated">安裝 '{0}' 版</target> <note /> </trans-unit> <trans-unit id="Generate_variable_0"> <source>Generate variable '{0}'</source> <target state="translated">產生變數 '{0}'</target> <note /> </trans-unit> <trans-unit id="Classes"> <source>Classes</source> <target state="translated">類別</target> <note /> </trans-unit> <trans-unit id="Constants"> <source>Constants</source> <target state="translated">常數</target> <note /> </trans-unit> <trans-unit id="Delegates"> <source>Delegates</source> <target state="translated">委派</target> <note /> </trans-unit> <trans-unit id="Enums"> <source>Enums</source> <target state="translated">列舉</target> <note /> </trans-unit> <trans-unit id="Events"> <source>Events</source> <target state="translated">事件</target> <note /> </trans-unit> <trans-unit id="Extension_methods"> <source>Extension methods</source> <target state="translated">擴充方法</target> <note /> </trans-unit> <trans-unit id="Fields"> <source>Fields</source> <target state="translated">欄位</target> <note /> </trans-unit> <trans-unit id="Interfaces"> <source>Interfaces</source> <target state="translated">介面</target> <note /> </trans-unit> <trans-unit id="Locals"> <source>Locals</source> <target state="translated">區域變數</target> <note /> </trans-unit> <trans-unit id="Methods"> <source>Methods</source> <target state="translated">方法</target> <note /> </trans-unit> <trans-unit id="Modules"> <source>Modules</source> <target state="translated">模組</target> <note /> </trans-unit> <trans-unit id="Namespaces"> <source>Namespaces</source> <target state="translated">命名空間</target> <note /> </trans-unit> <trans-unit id="Properties"> <source>Properties</source> <target state="translated">屬性</target> <note /> </trans-unit> <trans-unit id="Structures"> <source>Structures</source> <target state="translated">結構</target> <note /> </trans-unit> <trans-unit id="Parameters_colon"> <source>Parameters:</source> <target state="translated">參數:</target> <note /> </trans-unit> <trans-unit id="Variadic_SignatureHelpItem_must_have_at_least_one_parameter"> <source>Variadic SignatureHelpItem must have at least one parameter.</source> <target state="translated">Variadic SignatureHelpItem 至少必須要有一個參數。</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_method"> <source>Replace '{0}' with method</source> <target state="translated">以方法取代 '{0}'</target> <note /> </trans-unit> <trans-unit id="Replace_0_with_methods"> <source>Replace '{0}' with methods</source> <target state="translated">以方法取代 '{0}'</target> <note /> </trans-unit> <trans-unit id="Property_referenced_implicitly"> <source>Property referenced implicitly</source> <target state="translated">隱含參考的屬性</target> <note /> </trans-unit> <trans-unit id="Property_cannot_safely_be_replaced_with_a_method_call"> <source>Property cannot safely be replaced with a method call</source> <target state="translated">以方法呼叫取代屬性並不安全</target> <note /> </trans-unit> <trans-unit id="Convert_to_interpolated_string"> <source>Convert to interpolated string</source> <target state="translated">轉換為差補字串</target> <note /> </trans-unit> <trans-unit id="Move_type_to_0"> <source>Move type to {0}</source> <target state="translated">將類型移到 {0}</target> <note /> </trans-unit> <trans-unit id="Rename_file_to_0"> <source>Rename file to {0}</source> <target state="translated">將檔案重新命名為 {0}</target> <note /> </trans-unit> <trans-unit id="Rename_type_to_0"> <source>Rename type to {0}</source> <target state="translated">將類型重新命名為 {0}</target> <note /> </trans-unit> <trans-unit id="Remove_tag"> <source>Remove tag</source> <target state="translated">移除標記</target> <note /> </trans-unit> <trans-unit id="Add_missing_param_nodes"> <source>Add missing param nodes</source> <target state="translated">新增遺失的參數節點</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async"> <source>Make containing scope async</source> <target state="translated">讓包含範圍非同步</target> <note /> </trans-unit> <trans-unit id="Make_containing_scope_async_return_Task"> <source>Make containing scope async (return Task)</source> <target state="translated">讓包含範圍非同步 (傳回工作)</target> <note /> </trans-unit> <trans-unit id="paren_Unknown_paren"> <source>(Unknown)</source> <target state="translated">(未知)</target> <note /> </trans-unit> <trans-unit id="Use_framework_type"> <source>Use framework type</source> <target state="translated">使用架構類型</target> <note /> </trans-unit> <trans-unit id="Install_package_0"> <source>Install package '{0}'</source> <target state="translated">安裝套件 '{0}'</target> <note /> </trans-unit> <trans-unit id="project_0"> <source>project {0}</source> <target state="translated">專案 {0}</target> <note /> </trans-unit> <trans-unit id="Fully_qualify_0"> <source>Fully qualify '{0}'</source> <target state="translated">完整的 '{0}'</target> <note /> </trans-unit> <trans-unit id="Remove_reference_to_0"> <source>Remove reference to '{0}'.</source> <target state="translated">移除對 '{0}' 的參考。</target> <note /> </trans-unit> <trans-unit id="Keywords"> <source>Keywords</source> <target state="translated">關鍵字</target> <note /> </trans-unit> <trans-unit id="Snippets"> <source>Snippets</source> <target state="translated">程式碼片段</target> <note /> </trans-unit> <trans-unit id="All_lowercase"> <source>All lowercase</source> <target state="translated">允許小寫</target> <note /> </trans-unit> <trans-unit id="All_uppercase"> <source>All uppercase</source> <target state="translated">允許大寫</target> <note /> </trans-unit> <trans-unit id="First_word_capitalized"> <source>First word capitalized</source> <target state="translated">第一個字大寫</target> <note /> </trans-unit> <trans-unit id="Pascal_Case"> <source>Pascal Case</source> <target state="translated">Pascal 命名法的大小寫</target> <note /> </trans-unit> <trans-unit id="Remove_document_0"> <source>Remove document '{0}'</source> <target state="translated">移除文件 '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_document_0"> <source>Add document '{0}'</source> <target state="translated">新增文件 '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0"> <source>Add argument name '{0}'</source> <target state="translated">新增引數名稱 '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_0"> <source>Take '{0}'</source> <target state="translated">接受 '{0}'</target> <note /> </trans-unit> <trans-unit id="Take_both"> <source>Take both</source> <target state="translated">接受兩者</target> <note /> </trans-unit> <trans-unit id="Take_bottom"> <source>Take bottom</source> <target state="translated">接受底端</target> <note /> </trans-unit> <trans-unit id="Take_top"> <source>Take top</source> <target state="translated">接受頂端</target> <note /> </trans-unit> <trans-unit id="Remove_unused_variable"> <source>Remove unused variable</source> <target state="translated">移除未使用的變數</target> <note /> </trans-unit> <trans-unit id="Convert_to_binary"> <source>Convert to binary</source> <target state="translated">轉換為二進位</target> <note /> </trans-unit> <trans-unit id="Convert_to_decimal"> <source>Convert to decimal</source> <target state="translated">轉換為十進位</target> <note /> </trans-unit> <trans-unit id="Convert_to_hex"> <source>Convert to hex</source> <target state="translated">轉換為十六進位</target> <note /> </trans-unit> <trans-unit id="Separate_thousands"> <source>Separate thousands</source> <target state="translated">分隔千分位</target> <note /> </trans-unit> <trans-unit id="Separate_words"> <source>Separate words</source> <target state="translated">分隔字組</target> <note /> </trans-unit> <trans-unit id="Separate_nibbles"> <source>Separate nibbles</source> <target state="translated">分隔半位元組</target> <note /> </trans-unit> <trans-unit id="Remove_separators"> <source>Remove separators</source> <target state="translated">移除分隔符號</target> <note /> </trans-unit> <trans-unit id="Add_parameter_to_0"> <source>Add parameter to '{0}'</source> <target state="translated">將參數新增至 '{0}'</target> <note /> </trans-unit> <trans-unit id="Generate_constructor"> <source>Generate constructor...</source> <target state="translated">產生建構函式...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_as_constructor_parameters"> <source>Pick members to be used as constructor parameters</source> <target state="translated">選取要用作為建構函式參數的成員</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_be_used_in_Equals_GetHashCode"> <source>Pick members to be used in Equals/GetHashCode</source> <target state="translated">選取要用於 Equals/GetHashCode 中的成員</target> <note /> </trans-unit> <trans-unit id="Generate_overrides"> <source>Generate overrides...</source> <target state="translated">產生覆寫...</target> <note /> </trans-unit> <trans-unit id="Pick_members_to_override"> <source>Pick members to override</source> <target state="translated">選取要覆寫的成員</target> <note /> </trans-unit> <trans-unit id="Add_null_check"> <source>Add null check</source> <target state="translated">新增 null 檢查</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrEmpty_check"> <source>Add 'string.IsNullOrEmpty' check</source> <target state="translated">新增 'string.IsNullOrEmpty' 檢查</target> <note /> </trans-unit> <trans-unit id="Add_string_IsNullOrWhiteSpace_check"> <source>Add 'string.IsNullOrWhiteSpace' check</source> <target state="translated">新增 'string.IsNullOrWhiteSpace' 檢查</target> <note /> </trans-unit> <trans-unit id="Initialize_field_0"> <source>Initialize field '{0}'</source> <target state="translated">初始化欄位 '{0}'</target> <note /> </trans-unit> <trans-unit id="Initialize_property_0"> <source>Initialize property '{0}'</source> <target state="translated">初始化屬性 '{0}'</target> <note /> </trans-unit> <trans-unit id="Add_null_checks"> <source>Add null checks</source> <target state="translated">新增 null 檢查</target> <note /> </trans-unit> <trans-unit id="Generate_operators"> <source>Generate operators</source> <target state="translated">產生運算子</target> <note /> </trans-unit> <trans-unit id="Implement_0"> <source>Implement {0}</source> <target state="translated">實作 {0}</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_in_file_1_which_is_not_part_of_the_compilation_being_analyzed"> <source>Reported diagnostic '{0}' has a source location in file '{1}', which is not part of the compilation being analyzed.</source> <target state="translated">回報的診斷 '{0}' 在檔案 '{1}' 中具有來源位置,其不屬於正在進行分析的編譯。</target> <note /> </trans-unit> <trans-unit id="Reported_diagnostic_0_has_a_source_location_1_in_file_2_which_is_outside_of_the_given_file"> <source>Reported diagnostic '{0}' has a source location '{1}' in file '{2}', which is outside of the given file.</source> <target state="translated">回報之診斷 '{0}' 中的來源位置 '{1}' 位於檔案 '{2}' 內,而該檔案不在指定的檔案內。</target> <note /> </trans-unit> <trans-unit id="in_0_project_1"> <source>in {0} (project {1})</source> <target state="translated">在 {0} 中 (專案 {1})</target> <note /> </trans-unit> <trans-unit id="Add_accessibility_modifiers"> <source>Add accessibility modifiers</source> <target state="translated">新增協助工具修飾元</target> <note /> </trans-unit> <trans-unit id="Move_declaration_near_reference"> <source>Move declaration near reference</source> <target state="translated">將宣告移近參考</target> <note /> </trans-unit> <trans-unit id="Convert_to_full_property"> <source>Convert to full property</source> <target state="translated">轉換為完整屬性</target> <note /> </trans-unit> <trans-unit id="Warning_Method_overrides_symbol_from_metadata"> <source>Warning: Method overrides symbol from metadata</source> <target state="translated">警告: 方法會覆寫中繼資料的符號</target> <note /> </trans-unit> <trans-unit id="Use_0"> <source>Use {0}</source> <target state="translated">使用 {0}</target> <note /> </trans-unit> <trans-unit id="Add_argument_name_0_including_trailing_arguments"> <source>Add argument name '{0}' (including trailing arguments)</source> <target state="translated">新增引數名稱 '{0}' (包括結尾的引數)</target> <note /> </trans-unit> <trans-unit id="local_function"> <source>local function</source> <target state="translated">區域函式</target> <note /> </trans-unit> <trans-unit id="indexer_"> <source>indexer</source> <target state="translated">索引子</target> <note /> </trans-unit> <trans-unit id="Alias_ambiguous_type_0"> <source>Alias ambiguous type '{0}'</source> <target state="translated">別名不明確類型 '{0}'</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_was_modified_during_iteration"> <source>Warning: Collection was modified during iteration.</source> <target state="translated">警告: 集合已於反覆運算期間被修改</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Iteration_variable_crossed_function_boundary"> <source>Warning: Iteration variable crossed function boundary.</source> <target state="translated">警告: 反覆運算變數已跨越函式界線</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Collection_may_be_modified_during_iteration"> <source>Warning: Collection may be modified during iteration.</source> <target state="translated">警告: 集合可能於反覆運算期間被修改</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time"> <source>universal full date/time</source> <target state="translated">國際完整日期/時間</target> <note /> </trans-unit> <trans-unit id="universal_full_date_time_description"> <source>The "U" standard format specifier represents a custom date and time format string that is defined by a specified culture's DateTimeFormatInfo.FullDateTimePattern property. The pattern is the same as the "F" pattern. However, the DateTime value is automatically converted to UTC before it is formatted.</source> <target state="translated">"U" 標準格式規範代表由指定文化特性 (Culture) DateTimeFormatInfo.FullDateTimePattern 屬性所定義的自訂日期和時間格式字串。其模式與 "F" 模式相同。不過,DateTime 值會在格式化前自動轉換為 UTC。</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time"> <source>universal sortable date/time</source> <target state="translated">國際可排序的日期/時間</target> <note /> </trans-unit> <trans-unit id="universal_sortable_date_time_description"> <source>The "u" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.UniversalSortableDateTimePattern property. The pattern reflects a defined standard, and the property is read-only. Therefore, it is always the same, regardless of the culture used or the format provider supplied. The custom format string is "yyyy'-'MM'-'dd HH':'mm':'ss'Z'". When this standard format specifier is used, the formatting or parsing operation always uses the invariant culture. Although the result string should express a time as Coordinated Universal Time (UTC), no conversion of the original DateTime value is performed during the formatting operation. Therefore, you must convert a DateTime value to UTC by calling the DateTime.ToUniversalTime method before formatting it.</source> <target state="translated">"u" 標準格式規範代表由 DateTimeFormatInfo.UniversalSortableDateTimePattern 屬性所定義的自訂日期和時間格式字串。此模式會反映出已定義的標準,且屬性為唯讀。因此,不管使用何種文化特性 (Culture) 或提供何種格式提供者,其永遠都相同。自訂格式字串為 "yyyy'-'MM'-'dd HH':'mm':'ss'Z'"。使用此標準格式規範時,格式化或剖析作業永遠不因文化特性而異。 雖然結果字串應以國際標準時間 (UTC) 表示時間,但在格式化作業期間,不會執行原始 DateTime 值的轉換。因此,您必須先呼叫 DateTime.ToUniversalTime 方法,將 DateTime 值轉換為 UTC,再將其格式化。</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_member"> <source>updating usages in containing member</source> <target state="translated">正在更新包含成員中的使用方式</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_project"> <source>updating usages in containing project</source> <target state="translated">正在更新包含專案中的使用方式</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_containing_type"> <source>updating usages in containing type</source> <target state="translated">正在更新包含類型中的使用方式</target> <note /> </trans-unit> <trans-unit id="updating_usages_in_dependent_projects"> <source>updating usages in dependent projects</source> <target state="translated">正在更新相依專案中的使用方式</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset"> <source>utc hour and minute offset</source> <target state="translated">utc 小時和分鐘時差</target> <note /> </trans-unit> <trans-unit id="utc_hour_and_minute_offset_description"> <source>With DateTime values, the "zzz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zzz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">使用 DateTime 值時,"zzz" 自訂格式規範代表區域作業系統時區與 UTC 的帶正負號時差 (以小時與分鐘為單位),且不會反映出執行個體的 DateTime.Kind 屬性值。因此,建議不要搭配 DateTime 值使用 "zzz" 格式規範。 對 DateTimeOffset 值而言,這個格式規範代表 DateTimeOffset 值的 UTC 時差 (以小時與分鐘為單位)。 時差的開頭永遠會顯示正負號。正號 (+) 表示早於 UTC 的小時數,負號 (-) 則表示晚於 UTC 的小時數。個位數的時差開頭會填補零。</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits"> <source>utc hour offset (1-2 digits)</source> <target state="translated">utc 小時時差 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_1_2_digits_description"> <source>With DateTime values, the "z" custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "z" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero. If the "z" format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException.</source> <target state="translated">使用 DateTime 值時,"z" 自訂格式規範代表區域作業系統時區與國際標準時間 (UTC) 的帶正負號時差 (以小時為單位),且不會反映出執行個體的 DateTime.Kind 屬性值。因此,建議不要搭配 DateTime 值使用 "z" 格式規範。 對 DateTimeOffset 值而言,這個格式規範代表 DateTimeOffset 值的 UTC 時差 (以小時為單位)。 時差的開頭永遠會顯示正負號。正號 (+) 表示早於 UTC 的小時數,負號 (-) 則表示晚於 UTC 的小時數。個位數的時差開頭不會填補零。 如果使用 "z" 格式規範,而且沒有其他自訂格式規範,則會將其解譯為標準日期和時間格式規範,並擲回 FormatException。</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits"> <source>utc hour offset (2 digits)</source> <target state="translated">utc 小時時差 (2 位數)</target> <note /> </trans-unit> <trans-unit id="utc_hour_offset_2_digits_description"> <source>With DateTime values, the "zz" custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the "zz" format specifier is not recommended for use with DateTime values. With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours. The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.</source> <target state="translated">使用 DateTime 值時,"zz" 自訂格式規範代表區域作業系統時區與 UTC 的帶正負號時差 (以小時為單位),且不會反映出執行個體的 DateTime.Kind 屬性值。因此,建議不要搭配 DateTime 值使用 "zz" 格式規範。 對 DateTimeOffset 值而言,這個格式規範代表 DateTimeOffset 值的 UTC 時差 (以小時為單位)。 時差的開頭永遠會顯示正負號。正號 (+) 表示早於 UTC 的小時數,負號 (-) 則表示晚於 UTC 的小時數。個位數的時差開頭會填補零。</target> <note /> </trans-unit> <trans-unit id="x_y_range_in_reverse_order"> <source>[x-y] range in reverse order</source> <target state="translated">反向排序的 [x-y] 範圍</target> <note>This is an error message shown to the user when they write an invalid Regular Expression. Example: [b-a]</note> </trans-unit> <trans-unit id="year_1_2_digits"> <source>year (1-2 digits)</source> <target state="translated">年份 (1-2 位數)</target> <note /> </trans-unit> <trans-unit id="year_1_2_digits_description"> <source>The "y" custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero. If the "y" format specifier is used without other custom format specifiers, it's interpreted as the "y" standard date and time format specifier.</source> <target state="translated">"y" 自訂格式規範會將年份表示為個位數或雙位數數字。如果該年份超過雙位數,則結果只會顯示到十位數。如果雙位數年份的第一個位數開頭為零 (例如 2008),則該數字開頭不會填補零。 如果使用 "y" 格式規範,而且沒有其他自訂格式規範,則會將其解譯為 "y" 標準日期和時間格式規範。</target> <note /> </trans-unit> <trans-unit id="year_2_digits"> <source>year (2 digits)</source> <target state="translated">年份 (2 位數)</target> <note /> </trans-unit> <trans-unit id="year_2_digits_description"> <source>The "yy" custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits. In a parsing operation, a two-digit year that is parsed using the "yy" custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.</source> <target state="translated">"yy" 自訂格式規範會將年份表示為雙位數數字。如果該年份超過雙位數,則結果只會顯示到十位數。如果雙位數年份的有效位數少於兩個,則會在該數字開頭填補零,以產生雙位數。 在剖析作業中,使用 "yy" 自訂格式規範剖析的雙位數年份,會依據格式提供者目前行事曆的 Calendar.TwoDigitYearMax 屬性來解譯。下列範例會使用 en-US 文化特性 (Culture) 的預設西曆,來剖析包含雙位數年份之日期的字串表示法,在此例中,en-US 文化特性 (Culture) 為目前的文化特性 (Culture)。接著會將目前文化特性 (Culture) 的 CultureInfo 物件,變更為使用已修改 TwoDigitYearMax 屬性的 GregorianCalendar 物件。</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits"> <source>year (3-4 digits)</source> <target state="translated">年份 (3-4 位數)</target> <note /> </trans-unit> <trans-unit id="year_3_4_digits_description"> <source>The "yyy" custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.</source> <target state="translated">"yyy" 自訂格式規範代表最少三位數的年份。如果該年份有三個以上的有效位數,則這些位數會包含在結果字串中。如果年份少於三位數,則會在該數字開頭填補零,以產生三位數。</target> <note /> </trans-unit> <trans-unit id="year_4_digits"> <source>year (4 digits)</source> <target state="translated">年份 (4 位數)</target> <note /> </trans-unit> <trans-unit id="year_4_digits_description"> <source>The "yyyy" custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.</source> <target state="translated">"yyyy" 自訂格式規範代表最少四位數的年份。如果該年份有四個以上的有效位數,則這些位數會包含在結果字串中。如果年份少於四位數,則會在該數字開頭填補零,以產生四位數。</target> <note /> </trans-unit> <trans-unit id="year_5_digits"> <source>year (5 digits)</source> <target state="translated">年份 (5 位數)</target> <note /> </trans-unit> <trans-unit id="year_5_digits_description"> <source>The "yyyyy" custom format specifier (plus any number of additional "y" specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits. If there are additional "y" specifiers, the number is padded with as many leading zeros as necessary to produce the number of "y" specifiers.</source> <target state="translated">"yyyyy" 自訂格式規範 (外加任意數目的額外 "y" 規範) 代表最少五位數的年份。如果該年份有五個以上的有效位數,則這些位數會包含在結果字串中。如果年份少於五位數,則會在該數字開頭填補零,以產生五位數。 如果有額外的 "y" 規範,則會在該數字開頭視所需數目填補零,以產生該數目之多的 "y" 規範。</target> <note /> </trans-unit> <trans-unit id="year_month"> <source>year month</source> <target state="translated">年份月份</target> <note /> </trans-unit> <trans-unit id="year_month_description"> <source>The "Y" or "y" standard format specifier represents a custom date and time format string that is defined by the DateTimeFormatInfo.YearMonthPattern property of a specified culture. For example, the custom format string for the invariant culture is "yyyy MMMM".</source> <target state="translated">"Y" 或 "y" 標準格式規範代表由指定文化特性 (Culture) DateTimeFormatInfo.YearMonthPattern 屬性所定義的自訂日期和時間格式字串。例如,不因文化特性而異的自訂格式字串為 "yyyy MMMM"。</target> <note /> </trans-unit> </body> </file> </xliff>
1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/CSharp/Portable/SignatureHelp/AbstractCSharpSignatureHelpProvider.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using Microsoft.CodeAnalysis.DocumentationComments; using Microsoft.CodeAnalysis.Shared.Extensions; using Microsoft.CodeAnalysis.SignatureHelp; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.CSharp.SignatureHelp { internal abstract class AbstractCSharpSignatureHelpProvider : AbstractSignatureHelpProvider { private static readonly SymbolDisplayFormat s_allowDefaultLiteralFormat = SymbolDisplayFormat.MinimallyQualifiedFormat .AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral); protected AbstractCSharpSignatureHelpProvider() { } protected static SymbolDisplayPart Keyword(SyntaxKind kind) => new SymbolDisplayPart(SymbolDisplayPartKind.Keyword, null, SyntaxFacts.GetText(kind)); protected static SymbolDisplayPart Operator(SyntaxKind kind) => new SymbolDisplayPart(SymbolDisplayPartKind.Operator, null, SyntaxFacts.GetText(kind)); protected static SymbolDisplayPart Punctuation(SyntaxKind kind) => new SymbolDisplayPart(SymbolDisplayPartKind.Punctuation, null, SyntaxFacts.GetText(kind)); protected static SymbolDisplayPart Text(string text) => new SymbolDisplayPart(SymbolDisplayPartKind.Text, null, text); protected static SymbolDisplayPart Space() => new SymbolDisplayPart(SymbolDisplayPartKind.Space, null, " "); protected static SymbolDisplayPart NewLine() => new SymbolDisplayPart(SymbolDisplayPartKind.LineBreak, null, "\r\n"); private static readonly IList<SymbolDisplayPart> _separatorParts = new List<SymbolDisplayPart> { Punctuation(SyntaxKind.CommaToken), Space() }; protected static IList<SymbolDisplayPart> GetSeparatorParts() => _separatorParts; protected static SignatureHelpSymbolParameter Convert( IParameterSymbol parameter, SemanticModel semanticModel, int position, IDocumentationCommentFormattingService formatter) { return new SignatureHelpSymbolParameter( parameter.Name, parameter.IsOptional, parameter.GetDocumentationPartsFactory(semanticModel, position, formatter), parameter.ToMinimalDisplayParts(semanticModel, position, s_allowDefaultLiteralFormat)); } /// <summary> /// We no longer show awaitable usage text in SignatureHelp, but IntelliCode expects this /// method to exist. /// </summary> [Obsolete("Expected to exist by IntelliCode. This can be removed once their unnecessary use of this is removed.")] #pragma warning disable CA1822 // Mark members as static - see obsolete message above. protected IList<TaggedText> GetAwaitableUsage(IMethodSymbol method, SemanticModel semanticModel, int position) #pragma warning restore CA1822 // Mark members as static => SpecializedCollections.EmptyList<TaggedText>(); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using Microsoft.CodeAnalysis.DocumentationComments; using Microsoft.CodeAnalysis.Shared.Extensions; using Microsoft.CodeAnalysis.SignatureHelp; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.CSharp.SignatureHelp { internal abstract class AbstractCSharpSignatureHelpProvider : AbstractSignatureHelpProvider { private static readonly SymbolDisplayFormat s_allowDefaultLiteralFormat = SymbolDisplayFormat.MinimallyQualifiedFormat .AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral); protected AbstractCSharpSignatureHelpProvider() { } protected static SymbolDisplayPart Keyword(SyntaxKind kind) => new SymbolDisplayPart(SymbolDisplayPartKind.Keyword, null, SyntaxFacts.GetText(kind)); protected static SymbolDisplayPart Operator(SyntaxKind kind) => new SymbolDisplayPart(SymbolDisplayPartKind.Operator, null, SyntaxFacts.GetText(kind)); protected static SymbolDisplayPart Punctuation(SyntaxKind kind) => new SymbolDisplayPart(SymbolDisplayPartKind.Punctuation, null, SyntaxFacts.GetText(kind)); protected static SymbolDisplayPart Text(string text) => new SymbolDisplayPart(SymbolDisplayPartKind.Text, null, text); protected static SymbolDisplayPart Space() => new SymbolDisplayPart(SymbolDisplayPartKind.Space, null, " "); protected static SymbolDisplayPart NewLine() => new SymbolDisplayPart(SymbolDisplayPartKind.LineBreak, null, "\r\n"); private static readonly IList<SymbolDisplayPart> _separatorParts = new List<SymbolDisplayPart> { Punctuation(SyntaxKind.CommaToken), Space() }; protected static IList<SymbolDisplayPart> GetSeparatorParts() => _separatorParts; protected static SignatureHelpSymbolParameter Convert( IParameterSymbol parameter, SemanticModel semanticModel, int position, IDocumentationCommentFormattingService formatter) { return new SignatureHelpSymbolParameter( parameter.Name, parameter.IsOptional, parameter.GetDocumentationPartsFactory(semanticModel, position, formatter), parameter.ToMinimalDisplayParts(semanticModel, position, s_allowDefaultLiteralFormat)); } /// <summary> /// We no longer show awaitable usage text in SignatureHelp, but IntelliCode expects this /// method to exist. /// </summary> [Obsolete("Expected to exist by IntelliCode. This can be removed once their unnecessary use of this is removed.")] #pragma warning disable CA1822 // Mark members as static - see obsolete message above. protected IList<TaggedText> GetAwaitableUsage(IMethodSymbol method, SemanticModel semanticModel, int position) #pragma warning restore CA1822 // Mark members as static => SpecializedCollections.EmptyList<TaggedText>(); } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Analyzers/CSharp/CodeFixes/xlf/CSharpCodeFixesResources.it.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="it" original="../CSharpCodeFixesResources.resx"> <body> <trans-unit id="Add_this"> <source>Add 'this.'</source> <target state="translated">Aggiungi 'this.'</target> <note /> </trans-unit> <trans-unit id="Convert_typeof_to_nameof"> <source>Convert 'typeof' to 'nameof'</source> <target state="translated">Convertire 'typeof' in 'nameof'</target> <note /> </trans-unit> <trans-unit id="Pass_in_captured_variables_as_arguments"> <source>Pass in captured variables as arguments</source> <target state="translated">Passa le variabili catturate come argomenti</target> <note /> </trans-unit> <trans-unit id="Place_colon_on_following_line"> <source>Place colon on following line</source> <target state="translated">Inserisci due punti nella riga seguente</target> <note /> </trans-unit> <trans-unit id="Place_statement_on_following_line"> <source>Place statement on following line</source> <target state="translated">Inserire l'istruzione nella riga seguente</target> <note /> </trans-unit> <trans-unit id="Remove_Unnecessary_Usings"> <source>Remove Unnecessary Usings</source> <target state="translated">Rimuovi istruzioni using non necessarie</target> <note /> </trans-unit> <trans-unit id="Remove_blank_lines_between_braces"> <source>Remove blank line between braces</source> <target state="translated">Rimuovi la riga vuota tra parentesi graffe</target> <note /> </trans-unit> <trans-unit id="Remove_unreachable_code"> <source>Remove unreachable code</source> <target state="translated">Rimuovi il codice non eseguibile</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Adding_parameters_to_local_function_declaration_may_produce_invalid_code"> <source>Warning: Adding parameters to local function declaration may produce invalid code.</source> <target state="translated">Avviso: l'aggiunta di parametri alla dichiarazione di funzione locale potrebbe produrre codice non valido.</target> <note /> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="it" original="../CSharpCodeFixesResources.resx"> <body> <trans-unit id="Add_this"> <source>Add 'this.'</source> <target state="translated">Aggiungi 'this.'</target> <note /> </trans-unit> <trans-unit id="Convert_typeof_to_nameof"> <source>Convert 'typeof' to 'nameof'</source> <target state="translated">Convertire 'typeof' in 'nameof'</target> <note /> </trans-unit> <trans-unit id="Pass_in_captured_variables_as_arguments"> <source>Pass in captured variables as arguments</source> <target state="translated">Passa le variabili catturate come argomenti</target> <note /> </trans-unit> <trans-unit id="Place_colon_on_following_line"> <source>Place colon on following line</source> <target state="translated">Inserisci due punti nella riga seguente</target> <note /> </trans-unit> <trans-unit id="Place_statement_on_following_line"> <source>Place statement on following line</source> <target state="translated">Inserire l'istruzione nella riga seguente</target> <note /> </trans-unit> <trans-unit id="Remove_Unnecessary_Usings"> <source>Remove Unnecessary Usings</source> <target state="translated">Rimuovi istruzioni using non necessarie</target> <note /> </trans-unit> <trans-unit id="Remove_blank_lines_between_braces"> <source>Remove blank line between braces</source> <target state="translated">Rimuovi la riga vuota tra parentesi graffe</target> <note /> </trans-unit> <trans-unit id="Remove_unreachable_code"> <source>Remove unreachable code</source> <target state="translated">Rimuovi il codice non eseguibile</target> <note /> </trans-unit> <trans-unit id="Warning_colon_Adding_parameters_to_local_function_declaration_may_produce_invalid_code"> <source>Warning: Adding parameters to local function declaration may produce invalid code.</source> <target state="translated">Avviso: l'aggiunta di parametri alla dichiarazione di funzione locale potrebbe produrre codice non valido.</target> <note /> </trans-unit> </body> </file> </xliff>
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/CodeStyle/VisualBasic/Analyzers/xlf/VBCodeStyleResources.it.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="it" original="../VBCodeStyleResources.resx"> <body> <trans-unit id="EmptyResource"> <source>Remove this value when another is added.</source> <target state="translated">Rimuovere questo valore quando ne viene aggiunto un altro.</target> <note>https://github.com/Microsoft/msbuild/issues/1661</note> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="it" original="../VBCodeStyleResources.resx"> <body> <trans-unit id="EmptyResource"> <source>Remove this value when another is added.</source> <target state="translated">Rimuovere questo valore quando ne viene aggiunto un altro.</target> <note>https://github.com/Microsoft/msbuild/issues/1661</note> </trans-unit> </body> </file> </xliff>
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/NavigateTo/INavigateToSearchResult.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Immutable; using Microsoft.CodeAnalysis.Navigation; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.NavigateTo { internal interface INavigateToSearchResult { string AdditionalInformation { get; } string Kind { get; } NavigateToMatchKind MatchKind { get; } bool IsCaseSensitive { get; } string Name { get; } ImmutableArray<TextSpan> NameMatchSpans { get; } string SecondarySort { get; } string Summary { get; } INavigableItem NavigableItem { get; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Immutable; using Microsoft.CodeAnalysis.Navigation; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.NavigateTo { internal interface INavigateToSearchResult { string AdditionalInformation { get; } string Kind { get; } NavigateToMatchKind MatchKind { get; } bool IsCaseSensitive { get; } string Name { get; } ImmutableArray<TextSpan> NameMatchSpans { get; } string SecondarySort { get; } string Summary { get; } INavigableItem NavigableItem { get; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/CSharp/Test/Symbol/Symbols/Metadata/MetadataTypeTests.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Linq; using Microsoft.CodeAnalysis.CSharp.Symbols; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.CSharp.Test.Utilities; using Microsoft.CodeAnalysis.PooledObjects; using Microsoft.CodeAnalysis.Test.Utilities; using Microsoft.CodeAnalysis.Text; using Roslyn.Test.Utilities; using Xunit; namespace Microsoft.CodeAnalysis.CSharp.UnitTests { public class MetadataTypeTests : CSharpTestBase { [Fact] public void MetadataNamespaceSymbol01() { var text = "public class A {}"; var compilation = CreateEmptyCompilation(text, new[] { MscorlibRef }); var mscorlib = compilation.ExternalReferences[0]; var mscorNS = compilation.GetReferencedAssemblySymbol(mscorlib); Assert.Equal("mscorlib", mscorNS.Name); Assert.Equal(SymbolKind.Assembly, mscorNS.Kind); var ns1 = mscorNS.GlobalNamespace.GetMembers("System").Single() as NamespaceSymbol; var ns2 = ns1.GetMembers("Runtime").Single() as NamespaceSymbol; var ns = ns2.GetMembers("Serialization").Single() as NamespaceSymbol; Assert.Equal(mscorNS, ns.ContainingAssembly); Assert.Equal(ns2, ns.ContainingSymbol); Assert.Equal(ns2, ns.ContainingNamespace); Assert.True(ns.IsDefinition); // ? Assert.True(ns.IsNamespace); Assert.False(ns.IsType); Assert.Equal(SymbolKind.Namespace, ns.Kind); // bug 1995 Assert.Equal(Accessibility.Public, ns.DeclaredAccessibility); Assert.True(ns.IsStatic); Assert.False(ns.IsAbstract); Assert.False(ns.IsSealed); Assert.False(ns.IsVirtual); Assert.False(ns.IsOverride); // 47 types, 1 namespace (Formatters); Assert.Equal(48, ns.GetMembers().Length); Assert.Equal(47, ns.GetTypeMembers().Length); var fullName = "System.Runtime.Serialization"; Assert.Equal(fullName, ns.ToTestDisplayString()); Assert.Empty(compilation.GetDeclarationDiagnostics()); } [Fact] public void MetadataTypeSymbolClass01() { var text = "public class A {}"; var compilation = CreateEmptyCompilation(text, new[] { MscorlibRef }); var mscorlib = compilation.ExternalReferences[0]; var mscorNS = compilation.GetReferencedAssemblySymbol(mscorlib); Assert.Equal("mscorlib", mscorNS.Name); var ns1 = mscorNS.GlobalNamespace.GetMembers("Microsoft").Single() as NamespaceSymbol; var ns2 = ns1.GetMembers("Runtime").Single() as NamespaceSymbol; var ns3 = ns2.GetMembers("Hosting").Single() as NamespaceSymbol; var class1 = ns3.GetTypeMembers("StrongNameHelpers").First() as NamedTypeSymbol; // internal static class Assert.Equal(0, class1.Arity); Assert.Equal(mscorNS, class1.ContainingAssembly); Assert.Equal(ns3, class1.ContainingSymbol); Assert.Equal(ns3, class1.ContainingNamespace); Assert.True(class1.IsDefinition); Assert.False(class1.IsNamespace); Assert.True(class1.IsType); Assert.True(class1.IsReferenceType); Assert.False(class1.IsValueType); Assert.Equal(SymbolKind.NamedType, class1.Kind); Assert.Equal(TypeKind.Class, class1.TypeKind); Assert.Equal(Accessibility.Internal, class1.DeclaredAccessibility); Assert.True(class1.IsStatic); Assert.False(class1.IsAbstract); Assert.False(class1.IsAbstract); Assert.False(class1.IsExtern); Assert.False(class1.IsSealed); Assert.False(class1.IsVirtual); Assert.False(class1.IsOverride); // 18 members Assert.Equal(18, class1.GetMembers().Length); Assert.Equal(0, class1.GetTypeMembers().Length); Assert.Equal(0, class1.Interfaces().Length); var fullName = "Microsoft.Runtime.Hosting.StrongNameHelpers"; // Internal: Assert.Equal(fullName, class1.GetFullNameWithoutGenericArgs()); Assert.Equal(fullName, class1.ToTestDisplayString()); Assert.Equal(0, class1.TypeArguments().Length); Assert.Equal(0, class1.TypeParameters.Length); Assert.Empty(compilation.GetDeclarationDiagnostics()); } [Fact] public void MetadataTypeSymbolGenClass02() { var text = "public class A {}"; var compilation = CreateEmptyCompilation(text, new[] { MscorlibRef }, options: TestOptions.ReleaseDll.WithMetadataImportOptions(MetadataImportOptions.Internal)); var mscorlib = compilation.ExternalReferences[0]; var mscorNS = compilation.GetReferencedAssemblySymbol(mscorlib); Assert.Equal("mscorlib", mscorNS.Name); Assert.Equal(SymbolKind.Assembly, mscorNS.Kind); var ns1 = (mscorNS.GlobalNamespace.GetMembers("System").Single() as NamespaceSymbol).GetMembers("Collections").Single() as NamespaceSymbol; var ns2 = ns1.GetMembers("Generic").Single() as NamespaceSymbol; var type1 = ns2.GetTypeMembers("Dictionary").First() as NamedTypeSymbol; // public generic class Assert.Equal(2, type1.Arity); Assert.Equal(mscorNS, type1.ContainingAssembly); Assert.Equal(ns2, type1.ContainingSymbol); Assert.Equal(ns2, type1.ContainingNamespace); Assert.True(type1.IsDefinition); Assert.False(type1.IsNamespace); Assert.True(type1.IsType); Assert.True(type1.IsReferenceType); Assert.False(type1.IsValueType); Assert.Equal(SymbolKind.NamedType, type1.Kind); Assert.Equal(TypeKind.Class, type1.TypeKind); Assert.Equal(Accessibility.Public, type1.DeclaredAccessibility); Assert.False(type1.IsStatic); Assert.False(type1.IsAbstract); Assert.False(type1.IsSealed); Assert.False(type1.IsVirtual); Assert.False(type1.IsOverride); // 4 nested types, 67 members overall Assert.Equal(67, type1.GetMembers().Length); Assert.Equal(3, type1.GetTypeMembers().Length); // IDictionary<TKey, TValue>, ICollection<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>, // IDictionary, ICollection, IEnumerable, ISerializable, IDeserializationCallback Assert.Equal(10, type1.Interfaces().Length); var fullName = "System.Collections.Generic.Dictionary<TKey, TValue>"; // Internal Assert.Equal(fullName, class1.GetFullNameWithoutGenericArgs()); Assert.Equal(fullName, type1.ToTestDisplayString()); Assert.Equal(2, type1.TypeArguments().Length); Assert.Equal(2, type1.TypeParameters.Length); Assert.Empty(compilation.GetDeclarationDiagnostics()); } [Fact] public void MetadataTypeSymbolGenInterface01() { var text = "public class A {}"; var compilation = CreateCompilation(text); var mscorlib = compilation.ExternalReferences[0]; var mscorNS = compilation.GetReferencedAssemblySymbol(mscorlib); var ns1 = (mscorNS.GlobalNamespace.GetMembers("System").Single() as NamespaceSymbol).GetMembers("Collections").Single() as NamespaceSymbol; var ns2 = ns1.GetMembers("Generic").Single() as NamespaceSymbol; var type1 = ns2.GetTypeMembers("IList").First() as NamedTypeSymbol; // public generic interface Assert.Equal(1, type1.Arity); Assert.Equal(mscorNS, type1.ContainingAssembly); Assert.Equal(ns2, type1.ContainingSymbol); Assert.Equal(ns2, type1.ContainingNamespace); Assert.True(type1.IsDefinition); Assert.False(type1.IsNamespace); Assert.True(type1.IsType); Assert.True(type1.IsReferenceType); Assert.False(type1.IsValueType); Assert.Equal(SymbolKind.NamedType, type1.Kind); Assert.Equal(TypeKind.Interface, type1.TypeKind); Assert.Equal(Accessibility.Public, type1.DeclaredAccessibility); Assert.False(type1.IsStatic); Assert.True(type1.IsAbstract); Assert.False(type1.IsSealed); Assert.False(type1.IsVirtual); Assert.False(type1.IsOverride); Assert.False(type1.IsExtern); // 3 method, 2 get|set_<Prop> method, 1 Properties Assert.Equal(6, type1.GetMembers().Length); Assert.Equal(0, type1.GetTypeMembers().Length); // ICollection<T>, IEnumerable<T>, IEnumerable Assert.Equal(3, type1.Interfaces().Length); var fullName = "System.Collections.Generic.IList<T>"; // Internal Assert.Equal(fullName, class1.GetFullNameWithoutGenericArgs()); Assert.Equal(fullName, type1.ToTestDisplayString()); Assert.Equal(1, type1.TypeArguments().Length); Assert.Equal(1, type1.TypeParameters.Length); Assert.Empty(compilation.GetDeclarationDiagnostics()); } [Fact] public void MetadataTypeSymbolStruct01() { var text = "public class A {}"; var compilation = CreateEmptyCompilation(text, new[] { MscorlibRef }, options: TestOptions.ReleaseDll.WithMetadataImportOptions(MetadataImportOptions.Internal)); var mscorlib = compilation.ExternalReferences[0]; var mscorNS = compilation.GetReferencedAssemblySymbol(mscorlib); Assert.Equal("mscorlib", mscorNS.Name); var ns1 = mscorNS.GlobalNamespace.GetMembers("System").Single() as NamespaceSymbol; var ns2 = ns1.GetMembers("Runtime").Single() as NamespaceSymbol; var ns3 = ns2.GetMembers("Serialization").Single() as NamespaceSymbol; var type1 = ns3.GetTypeMembers("StreamingContext").First() as NamedTypeSymbol; Assert.Equal(mscorNS, type1.ContainingAssembly); Assert.Equal(ns3, type1.ContainingSymbol); Assert.Equal(ns3, type1.ContainingNamespace); Assert.True(type1.IsDefinition); Assert.False(type1.IsNamespace); Assert.True(type1.IsType); Assert.False(type1.IsReferenceType); Assert.True(type1.IsValueType); Assert.Equal(SymbolKind.NamedType, type1.Kind); Assert.Equal(TypeKind.Struct, type1.TypeKind); Assert.Equal(Accessibility.Public, type1.DeclaredAccessibility); Assert.False(type1.IsStatic); Assert.False(type1.IsAbstract); Assert.True(type1.IsSealed); Assert.False(type1.IsVirtual); Assert.False(type1.IsOverride); // 4 method + 1 synthesized ctor, 2 get_<Prop> method, 2 Properties, 2 fields Assert.Equal(11, type1.GetMembers().Length); Assert.Equal(0, type1.GetTypeMembers().Length); Assert.Equal(0, type1.Interfaces().Length); var fullName = "System.Runtime.Serialization.StreamingContext"; // Internal Assert.Equal(fullName, class1.GetFullNameWithoutGenericArgs()); Assert.Equal(fullName, type1.ToTestDisplayString()); Assert.Equal(0, type1.TypeArguments().Length); Assert.Equal(0, type1.TypeParameters.Length); Assert.Empty(compilation.GetDeclarationDiagnostics()); } [Fact] public void MetadataArrayTypeSymbol01() { // This is a copy of the EventProviderBase type which existed in a beta of .NET framework // 4.5. Replicating the structure of the type to maintain the test validation. var source1 = @" namespace System.Diagnostics.Eventing { internal class EventProviderBase { internal struct EventData { } internal EventData[] m_eventData = null; protected void WriteTransferEventHelper(int eventId, Guid relatedActivityId, params object[] args) { } } } "; var compilation1 = CreateEmptyCompilation(source1, new[] { TestMetadata.Net40.mscorlib, TestMetadata.Net40.SystemCore }); compilation1.VerifyDiagnostics(); var source2 = "public class A {}"; var compilation2 = CreateEmptyCompilation(source2, new MetadataReference[] { TestMetadata.Net40.mscorlib, TestMetadata.Net40.SystemCore, compilation1.EmitToImageReference() }, options: TestOptions.ReleaseDll.WithMetadataImportOptions(MetadataImportOptions.Internal)); var compilation1Lib = compilation2.ExternalReferences[2]; var systemCoreNS = compilation2.GetReferencedAssemblySymbol(compilation1Lib); var ns1 = systemCoreNS.GlobalNamespace.GetMembers("System").Single() as NamespaceSymbol; var ns2 = ns1.GetMembers("Diagnostics").Single() as NamespaceSymbol; var ns3 = ns2.GetMembers("Eventing").Single() as NamespaceSymbol; var type1 = ns3.GetTypeMembers("EventProviderBase").Single() as NamedTypeSymbol; // EventData[] var type2 = (type1.GetMembers("m_eventData").Single() as FieldSymbol).Type as ArrayTypeSymbol; var member2 = type1.GetMembers("WriteTransferEventHelper").Single() as MethodSymbol; Assert.Equal(3, member2.Parameters.Length); // params object[] var type3 = (member2.Parameters[2] as ParameterSymbol).Type as ArrayTypeSymbol; Assert.Equal(SymbolKind.ArrayType, type2.Kind); Assert.Equal(SymbolKind.ArrayType, type3.Kind); Assert.Equal(Accessibility.NotApplicable, type2.DeclaredAccessibility); Assert.Equal(Accessibility.NotApplicable, type3.DeclaredAccessibility); Assert.True(type2.IsSZArray); Assert.True(type3.IsSZArray); Assert.Equal(TypeKind.Array, type2.TypeKind); Assert.Equal(TypeKind.Array, type3.TypeKind); Assert.Equal("EventData", type2.ElementType.Name); Assert.Equal("Array", type2.BaseType().Name); Assert.Equal("Object", type3.ElementType.Name); Assert.Equal("System.Diagnostics.Eventing.EventProviderBase.EventData[]", type2.ToTestDisplayString()); Assert.Equal("System.Object[]", type3.ToTestDisplayString()); Assert.Equal(1, type2.Interfaces().Length); Assert.Equal(1, type3.Interfaces().Length); // bug // Assert.False(type2.IsDefinition); Assert.False(type2.IsNamespace); Assert.True(type3.IsType); Assert.True(type2.IsReferenceType); Assert.True(type2.ElementType.IsValueType); Assert.True(type3.IsReferenceType); Assert.False(type3.IsValueType); Assert.False(type2.IsStatic); Assert.False(type2.IsAbstract); Assert.False(type2.IsSealed); Assert.False(type3.IsVirtual); Assert.False(type3.IsOverride); Assert.Equal(0, type2.GetMembers().Length); Assert.Equal(0, type3.GetMembers(String.Empty).Length); Assert.Equal(0, type3.GetTypeMembers().Length); Assert.Equal(0, type2.GetTypeMembers(String.Empty).Length); Assert.Equal(0, type3.GetTypeMembers(String.Empty, 0).Length); Assert.Empty(compilation2.GetDeclarationDiagnostics()); } [Fact, WorkItem(531619, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/531619"), WorkItem(531619, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/531619")] public void InheritFromNetModuleMetadata01() { var modRef = TestReferences.MetadataTests.NetModule01.ModuleCS00; var text1 = @" class Test : StaticModClass {"; var text2 = @" public static int Main() { r"; var tree = SyntaxFactory.ParseSyntaxTree(String.Empty); var comp = CreateCompilation(source: tree, references: new[] { modRef }); var currComp = comp; var oldTree = comp.SyntaxTrees.First(); var oldIText = oldTree.GetText(); var span = new TextSpan(oldIText.Length, 0); var change = new TextChange(span, text1); var newIText = oldIText.WithChanges(change); var newTree = oldTree.WithChangedText(newIText); currComp = currComp.ReplaceSyntaxTree(oldTree, newTree); var model = currComp.GetSemanticModel(newTree); var id = newTree.GetRoot().DescendantNodes().OfType<IdentifierNameSyntax>().Where(s => s.ToString() == "StaticModClass").First(); // NRE is thrown later but this one has to be called first var symInfo = model.GetSymbolInfo(id); Assert.NotNull(symInfo.Symbol); oldTree = newTree; oldIText = oldTree.GetText(); span = new TextSpan(oldIText.Length, 0); change = new TextChange(span, text2); newIText = oldIText.WithChanges(change); newTree = oldTree.WithChangedText(newIText); currComp = currComp.ReplaceSyntaxTree(oldTree, newTree); model = currComp.GetSemanticModel(newTree); id = newTree.GetRoot().DescendantNodes().OfType<IdentifierNameSyntax>().Where(s => s.ToString() == "StaticModClass").First(); symInfo = model.GetSymbolInfo(id); Assert.NotNull(symInfo.Symbol); } [WorkItem(1066489, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1066489")] [Fact] public void InstanceIterator_ExplicitInterfaceImplementation_OldName() { var ilSource = @" .class interface public abstract auto ansi I`1<T> { .method public hidebysig newslot abstract virtual instance class [mscorlib]System.Collections.IEnumerable F() cil managed { } // end of method I`1::F } // end of class I`1 .class public auto ansi beforefieldinit C extends [mscorlib]System.Object implements class I`1<int32> { .class auto ansi sealed nested private beforefieldinit '<I<System.Int32>'.'F>d__0' extends [mscorlib]System.Object implements class [mscorlib]System.Collections.Generic.IEnumerable`1<object>, [mscorlib]System.Collections.IEnumerable, class [mscorlib]System.Collections.Generic.IEnumerator`1<object>, [mscorlib]System.Collections.IEnumerator, [mscorlib]System.IDisposable { .field private object '<>2__current' .field private int32 '<>1__state' .field private int32 '<>l__initialThreadId' .field public class C '<>4__this' .method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.Generic.IEnumerator`1<object> 'System.Collections.Generic.IEnumerable<System.Object>.GetEnumerator'() cil managed { ldnull throw } .method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() cil managed { ldnull throw } .method private hidebysig newslot virtual final instance bool MoveNext() cil managed { ldnull throw } .method private hidebysig newslot specialname virtual final instance object 'System.Collections.Generic.IEnumerator<System.Object>.get_Current'() cil managed { ldnull throw } .method private hidebysig newslot virtual final instance void System.Collections.IEnumerator.Reset() cil managed { ldnull throw } .method private hidebysig newslot virtual final instance void System.IDisposable.Dispose() cil managed { ldnull throw } .method private hidebysig newslot specialname virtual final instance object System.Collections.IEnumerator.get_Current() cil managed { ldnull throw } .method public hidebysig specialname rtspecialname instance void .ctor(int32 '<>1__state') cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } .property instance object 'System.Collections.Generic.IEnumerator<System.Object>.Current'() { .get instance object C/'<I<System.Int32>'.'F>d__0'::'System.Collections.Generic.IEnumerator<System.Object>.get_Current'() } .property instance object System.Collections.IEnumerator.Current() { .get instance object C/'<I<System.Int32>'.'F>d__0'::System.Collections.IEnumerator.get_Current() } } // end of class '<I<System.Int32>'.'F>d__0' .method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.IEnumerable 'I<System.Int32>.F'() cil managed { ldnull throw } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } // end of class C "; var comp = CreateCompilationWithILAndMscorlib40("", ilSource); var stateMachineClass = comp.GlobalNamespace.GetMember<NamedTypeSymbol>("C").GetMembers().OfType<NamedTypeSymbol>().Single(); Assert.Equal("<I<System.Int32>.F>d__0", stateMachineClass.Name); // The name has been reconstructed correctly. Assert.Equal("C.<I<System.Int32>.F>d__0", stateMachineClass.ToTestDisplayString()); // SymbolDisplay works. Assert.Equal(stateMachineClass, comp.GetTypeByMetadataName("C+<I<System.Int32>.F>d__0")); // GetTypeByMetadataName works. } [ConditionalFact(typeof(ClrOnly))] [WorkItem(23761, "https://github.com/dotnet/roslyn/issues/23761")] // reason for skipping mono public void EmptyNamespaceNames() { var ilSource = @".class public A { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } .namespace '.N' { .class public B { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } } .namespace '.' { .class public C { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } } .namespace '..' { .class public D { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } } .namespace '..N' { .class public E { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } } .namespace N.M { .class public F { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } } .namespace 'N.M.' { .class public G { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } } .namespace 'N.M..' { .class public H { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } }"; var comp = CreateCompilationWithILAndMscorlib40("", ilSource); comp.VerifyDiagnostics(); var builder = ArrayBuilder<string>.GetInstance(); var module = comp.GetMember<NamedTypeSymbol>("A").ContainingModule; GetAllNamespaceNames(builder, module.GlobalNamespace); Assert.Equal(new[] { "<global namespace>", "", ".", "..N", ".N", "N", "N.M", "N.M." }, builder); builder.Free(); } private static void GetAllNamespaceNames(ArrayBuilder<string> builder, NamespaceSymbol @namespace) { builder.Add(@namespace.ToTestDisplayString()); foreach (var member in @namespace.GetMembers()) { if (member.Kind != SymbolKind.Namespace) { continue; } GetAllNamespaceNames(builder, (NamespaceSymbol)member); } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Linq; using Microsoft.CodeAnalysis.CSharp.Symbols; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.CSharp.Test.Utilities; using Microsoft.CodeAnalysis.PooledObjects; using Microsoft.CodeAnalysis.Test.Utilities; using Microsoft.CodeAnalysis.Text; using Roslyn.Test.Utilities; using Xunit; namespace Microsoft.CodeAnalysis.CSharp.UnitTests { public class MetadataTypeTests : CSharpTestBase { [Fact] public void MetadataNamespaceSymbol01() { var text = "public class A {}"; var compilation = CreateEmptyCompilation(text, new[] { MscorlibRef }); var mscorlib = compilation.ExternalReferences[0]; var mscorNS = compilation.GetReferencedAssemblySymbol(mscorlib); Assert.Equal("mscorlib", mscorNS.Name); Assert.Equal(SymbolKind.Assembly, mscorNS.Kind); var ns1 = mscorNS.GlobalNamespace.GetMembers("System").Single() as NamespaceSymbol; var ns2 = ns1.GetMembers("Runtime").Single() as NamespaceSymbol; var ns = ns2.GetMembers("Serialization").Single() as NamespaceSymbol; Assert.Equal(mscorNS, ns.ContainingAssembly); Assert.Equal(ns2, ns.ContainingSymbol); Assert.Equal(ns2, ns.ContainingNamespace); Assert.True(ns.IsDefinition); // ? Assert.True(ns.IsNamespace); Assert.False(ns.IsType); Assert.Equal(SymbolKind.Namespace, ns.Kind); // bug 1995 Assert.Equal(Accessibility.Public, ns.DeclaredAccessibility); Assert.True(ns.IsStatic); Assert.False(ns.IsAbstract); Assert.False(ns.IsSealed); Assert.False(ns.IsVirtual); Assert.False(ns.IsOverride); // 47 types, 1 namespace (Formatters); Assert.Equal(48, ns.GetMembers().Length); Assert.Equal(47, ns.GetTypeMembers().Length); var fullName = "System.Runtime.Serialization"; Assert.Equal(fullName, ns.ToTestDisplayString()); Assert.Empty(compilation.GetDeclarationDiagnostics()); } [Fact] public void MetadataTypeSymbolClass01() { var text = "public class A {}"; var compilation = CreateEmptyCompilation(text, new[] { MscorlibRef }); var mscorlib = compilation.ExternalReferences[0]; var mscorNS = compilation.GetReferencedAssemblySymbol(mscorlib); Assert.Equal("mscorlib", mscorNS.Name); var ns1 = mscorNS.GlobalNamespace.GetMembers("Microsoft").Single() as NamespaceSymbol; var ns2 = ns1.GetMembers("Runtime").Single() as NamespaceSymbol; var ns3 = ns2.GetMembers("Hosting").Single() as NamespaceSymbol; var class1 = ns3.GetTypeMembers("StrongNameHelpers").First() as NamedTypeSymbol; // internal static class Assert.Equal(0, class1.Arity); Assert.Equal(mscorNS, class1.ContainingAssembly); Assert.Equal(ns3, class1.ContainingSymbol); Assert.Equal(ns3, class1.ContainingNamespace); Assert.True(class1.IsDefinition); Assert.False(class1.IsNamespace); Assert.True(class1.IsType); Assert.True(class1.IsReferenceType); Assert.False(class1.IsValueType); Assert.Equal(SymbolKind.NamedType, class1.Kind); Assert.Equal(TypeKind.Class, class1.TypeKind); Assert.Equal(Accessibility.Internal, class1.DeclaredAccessibility); Assert.True(class1.IsStatic); Assert.False(class1.IsAbstract); Assert.False(class1.IsAbstract); Assert.False(class1.IsExtern); Assert.False(class1.IsSealed); Assert.False(class1.IsVirtual); Assert.False(class1.IsOverride); // 18 members Assert.Equal(18, class1.GetMembers().Length); Assert.Equal(0, class1.GetTypeMembers().Length); Assert.Equal(0, class1.Interfaces().Length); var fullName = "Microsoft.Runtime.Hosting.StrongNameHelpers"; // Internal: Assert.Equal(fullName, class1.GetFullNameWithoutGenericArgs()); Assert.Equal(fullName, class1.ToTestDisplayString()); Assert.Equal(0, class1.TypeArguments().Length); Assert.Equal(0, class1.TypeParameters.Length); Assert.Empty(compilation.GetDeclarationDiagnostics()); } [Fact] public void MetadataTypeSymbolGenClass02() { var text = "public class A {}"; var compilation = CreateEmptyCompilation(text, new[] { MscorlibRef }, options: TestOptions.ReleaseDll.WithMetadataImportOptions(MetadataImportOptions.Internal)); var mscorlib = compilation.ExternalReferences[0]; var mscorNS = compilation.GetReferencedAssemblySymbol(mscorlib); Assert.Equal("mscorlib", mscorNS.Name); Assert.Equal(SymbolKind.Assembly, mscorNS.Kind); var ns1 = (mscorNS.GlobalNamespace.GetMembers("System").Single() as NamespaceSymbol).GetMembers("Collections").Single() as NamespaceSymbol; var ns2 = ns1.GetMembers("Generic").Single() as NamespaceSymbol; var type1 = ns2.GetTypeMembers("Dictionary").First() as NamedTypeSymbol; // public generic class Assert.Equal(2, type1.Arity); Assert.Equal(mscorNS, type1.ContainingAssembly); Assert.Equal(ns2, type1.ContainingSymbol); Assert.Equal(ns2, type1.ContainingNamespace); Assert.True(type1.IsDefinition); Assert.False(type1.IsNamespace); Assert.True(type1.IsType); Assert.True(type1.IsReferenceType); Assert.False(type1.IsValueType); Assert.Equal(SymbolKind.NamedType, type1.Kind); Assert.Equal(TypeKind.Class, type1.TypeKind); Assert.Equal(Accessibility.Public, type1.DeclaredAccessibility); Assert.False(type1.IsStatic); Assert.False(type1.IsAbstract); Assert.False(type1.IsSealed); Assert.False(type1.IsVirtual); Assert.False(type1.IsOverride); // 4 nested types, 67 members overall Assert.Equal(67, type1.GetMembers().Length); Assert.Equal(3, type1.GetTypeMembers().Length); // IDictionary<TKey, TValue>, ICollection<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>, // IDictionary, ICollection, IEnumerable, ISerializable, IDeserializationCallback Assert.Equal(10, type1.Interfaces().Length); var fullName = "System.Collections.Generic.Dictionary<TKey, TValue>"; // Internal Assert.Equal(fullName, class1.GetFullNameWithoutGenericArgs()); Assert.Equal(fullName, type1.ToTestDisplayString()); Assert.Equal(2, type1.TypeArguments().Length); Assert.Equal(2, type1.TypeParameters.Length); Assert.Empty(compilation.GetDeclarationDiagnostics()); } [Fact] public void MetadataTypeSymbolGenInterface01() { var text = "public class A {}"; var compilation = CreateCompilation(text); var mscorlib = compilation.ExternalReferences[0]; var mscorNS = compilation.GetReferencedAssemblySymbol(mscorlib); var ns1 = (mscorNS.GlobalNamespace.GetMembers("System").Single() as NamespaceSymbol).GetMembers("Collections").Single() as NamespaceSymbol; var ns2 = ns1.GetMembers("Generic").Single() as NamespaceSymbol; var type1 = ns2.GetTypeMembers("IList").First() as NamedTypeSymbol; // public generic interface Assert.Equal(1, type1.Arity); Assert.Equal(mscorNS, type1.ContainingAssembly); Assert.Equal(ns2, type1.ContainingSymbol); Assert.Equal(ns2, type1.ContainingNamespace); Assert.True(type1.IsDefinition); Assert.False(type1.IsNamespace); Assert.True(type1.IsType); Assert.True(type1.IsReferenceType); Assert.False(type1.IsValueType); Assert.Equal(SymbolKind.NamedType, type1.Kind); Assert.Equal(TypeKind.Interface, type1.TypeKind); Assert.Equal(Accessibility.Public, type1.DeclaredAccessibility); Assert.False(type1.IsStatic); Assert.True(type1.IsAbstract); Assert.False(type1.IsSealed); Assert.False(type1.IsVirtual); Assert.False(type1.IsOverride); Assert.False(type1.IsExtern); // 3 method, 2 get|set_<Prop> method, 1 Properties Assert.Equal(6, type1.GetMembers().Length); Assert.Equal(0, type1.GetTypeMembers().Length); // ICollection<T>, IEnumerable<T>, IEnumerable Assert.Equal(3, type1.Interfaces().Length); var fullName = "System.Collections.Generic.IList<T>"; // Internal Assert.Equal(fullName, class1.GetFullNameWithoutGenericArgs()); Assert.Equal(fullName, type1.ToTestDisplayString()); Assert.Equal(1, type1.TypeArguments().Length); Assert.Equal(1, type1.TypeParameters.Length); Assert.Empty(compilation.GetDeclarationDiagnostics()); } [Fact] public void MetadataTypeSymbolStruct01() { var text = "public class A {}"; var compilation = CreateEmptyCompilation(text, new[] { MscorlibRef }, options: TestOptions.ReleaseDll.WithMetadataImportOptions(MetadataImportOptions.Internal)); var mscorlib = compilation.ExternalReferences[0]; var mscorNS = compilation.GetReferencedAssemblySymbol(mscorlib); Assert.Equal("mscorlib", mscorNS.Name); var ns1 = mscorNS.GlobalNamespace.GetMembers("System").Single() as NamespaceSymbol; var ns2 = ns1.GetMembers("Runtime").Single() as NamespaceSymbol; var ns3 = ns2.GetMembers("Serialization").Single() as NamespaceSymbol; var type1 = ns3.GetTypeMembers("StreamingContext").First() as NamedTypeSymbol; Assert.Equal(mscorNS, type1.ContainingAssembly); Assert.Equal(ns3, type1.ContainingSymbol); Assert.Equal(ns3, type1.ContainingNamespace); Assert.True(type1.IsDefinition); Assert.False(type1.IsNamespace); Assert.True(type1.IsType); Assert.False(type1.IsReferenceType); Assert.True(type1.IsValueType); Assert.Equal(SymbolKind.NamedType, type1.Kind); Assert.Equal(TypeKind.Struct, type1.TypeKind); Assert.Equal(Accessibility.Public, type1.DeclaredAccessibility); Assert.False(type1.IsStatic); Assert.False(type1.IsAbstract); Assert.True(type1.IsSealed); Assert.False(type1.IsVirtual); Assert.False(type1.IsOverride); // 4 method + 1 synthesized ctor, 2 get_<Prop> method, 2 Properties, 2 fields Assert.Equal(11, type1.GetMembers().Length); Assert.Equal(0, type1.GetTypeMembers().Length); Assert.Equal(0, type1.Interfaces().Length); var fullName = "System.Runtime.Serialization.StreamingContext"; // Internal Assert.Equal(fullName, class1.GetFullNameWithoutGenericArgs()); Assert.Equal(fullName, type1.ToTestDisplayString()); Assert.Equal(0, type1.TypeArguments().Length); Assert.Equal(0, type1.TypeParameters.Length); Assert.Empty(compilation.GetDeclarationDiagnostics()); } [Fact] public void MetadataArrayTypeSymbol01() { // This is a copy of the EventProviderBase type which existed in a beta of .NET framework // 4.5. Replicating the structure of the type to maintain the test validation. var source1 = @" namespace System.Diagnostics.Eventing { internal class EventProviderBase { internal struct EventData { } internal EventData[] m_eventData = null; protected void WriteTransferEventHelper(int eventId, Guid relatedActivityId, params object[] args) { } } } "; var compilation1 = CreateEmptyCompilation(source1, new[] { TestMetadata.Net40.mscorlib, TestMetadata.Net40.SystemCore }); compilation1.VerifyDiagnostics(); var source2 = "public class A {}"; var compilation2 = CreateEmptyCompilation(source2, new MetadataReference[] { TestMetadata.Net40.mscorlib, TestMetadata.Net40.SystemCore, compilation1.EmitToImageReference() }, options: TestOptions.ReleaseDll.WithMetadataImportOptions(MetadataImportOptions.Internal)); var compilation1Lib = compilation2.ExternalReferences[2]; var systemCoreNS = compilation2.GetReferencedAssemblySymbol(compilation1Lib); var ns1 = systemCoreNS.GlobalNamespace.GetMembers("System").Single() as NamespaceSymbol; var ns2 = ns1.GetMembers("Diagnostics").Single() as NamespaceSymbol; var ns3 = ns2.GetMembers("Eventing").Single() as NamespaceSymbol; var type1 = ns3.GetTypeMembers("EventProviderBase").Single() as NamedTypeSymbol; // EventData[] var type2 = (type1.GetMembers("m_eventData").Single() as FieldSymbol).Type as ArrayTypeSymbol; var member2 = type1.GetMembers("WriteTransferEventHelper").Single() as MethodSymbol; Assert.Equal(3, member2.Parameters.Length); // params object[] var type3 = (member2.Parameters[2] as ParameterSymbol).Type as ArrayTypeSymbol; Assert.Equal(SymbolKind.ArrayType, type2.Kind); Assert.Equal(SymbolKind.ArrayType, type3.Kind); Assert.Equal(Accessibility.NotApplicable, type2.DeclaredAccessibility); Assert.Equal(Accessibility.NotApplicable, type3.DeclaredAccessibility); Assert.True(type2.IsSZArray); Assert.True(type3.IsSZArray); Assert.Equal(TypeKind.Array, type2.TypeKind); Assert.Equal(TypeKind.Array, type3.TypeKind); Assert.Equal("EventData", type2.ElementType.Name); Assert.Equal("Array", type2.BaseType().Name); Assert.Equal("Object", type3.ElementType.Name); Assert.Equal("System.Diagnostics.Eventing.EventProviderBase.EventData[]", type2.ToTestDisplayString()); Assert.Equal("System.Object[]", type3.ToTestDisplayString()); Assert.Equal(1, type2.Interfaces().Length); Assert.Equal(1, type3.Interfaces().Length); // bug // Assert.False(type2.IsDefinition); Assert.False(type2.IsNamespace); Assert.True(type3.IsType); Assert.True(type2.IsReferenceType); Assert.True(type2.ElementType.IsValueType); Assert.True(type3.IsReferenceType); Assert.False(type3.IsValueType); Assert.False(type2.IsStatic); Assert.False(type2.IsAbstract); Assert.False(type2.IsSealed); Assert.False(type3.IsVirtual); Assert.False(type3.IsOverride); Assert.Equal(0, type2.GetMembers().Length); Assert.Equal(0, type3.GetMembers(String.Empty).Length); Assert.Equal(0, type3.GetTypeMembers().Length); Assert.Equal(0, type2.GetTypeMembers(String.Empty).Length); Assert.Equal(0, type3.GetTypeMembers(String.Empty, 0).Length); Assert.Empty(compilation2.GetDeclarationDiagnostics()); } [Fact, WorkItem(531619, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/531619"), WorkItem(531619, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/531619")] public void InheritFromNetModuleMetadata01() { var modRef = TestReferences.MetadataTests.NetModule01.ModuleCS00; var text1 = @" class Test : StaticModClass {"; var text2 = @" public static int Main() { r"; var tree = SyntaxFactory.ParseSyntaxTree(String.Empty); var comp = CreateCompilation(source: tree, references: new[] { modRef }); var currComp = comp; var oldTree = comp.SyntaxTrees.First(); var oldIText = oldTree.GetText(); var span = new TextSpan(oldIText.Length, 0); var change = new TextChange(span, text1); var newIText = oldIText.WithChanges(change); var newTree = oldTree.WithChangedText(newIText); currComp = currComp.ReplaceSyntaxTree(oldTree, newTree); var model = currComp.GetSemanticModel(newTree); var id = newTree.GetRoot().DescendantNodes().OfType<IdentifierNameSyntax>().Where(s => s.ToString() == "StaticModClass").First(); // NRE is thrown later but this one has to be called first var symInfo = model.GetSymbolInfo(id); Assert.NotNull(symInfo.Symbol); oldTree = newTree; oldIText = oldTree.GetText(); span = new TextSpan(oldIText.Length, 0); change = new TextChange(span, text2); newIText = oldIText.WithChanges(change); newTree = oldTree.WithChangedText(newIText); currComp = currComp.ReplaceSyntaxTree(oldTree, newTree); model = currComp.GetSemanticModel(newTree); id = newTree.GetRoot().DescendantNodes().OfType<IdentifierNameSyntax>().Where(s => s.ToString() == "StaticModClass").First(); symInfo = model.GetSymbolInfo(id); Assert.NotNull(symInfo.Symbol); } [WorkItem(1066489, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1066489")] [Fact] public void InstanceIterator_ExplicitInterfaceImplementation_OldName() { var ilSource = @" .class interface public abstract auto ansi I`1<T> { .method public hidebysig newslot abstract virtual instance class [mscorlib]System.Collections.IEnumerable F() cil managed { } // end of method I`1::F } // end of class I`1 .class public auto ansi beforefieldinit C extends [mscorlib]System.Object implements class I`1<int32> { .class auto ansi sealed nested private beforefieldinit '<I<System.Int32>'.'F>d__0' extends [mscorlib]System.Object implements class [mscorlib]System.Collections.Generic.IEnumerable`1<object>, [mscorlib]System.Collections.IEnumerable, class [mscorlib]System.Collections.Generic.IEnumerator`1<object>, [mscorlib]System.Collections.IEnumerator, [mscorlib]System.IDisposable { .field private object '<>2__current' .field private int32 '<>1__state' .field private int32 '<>l__initialThreadId' .field public class C '<>4__this' .method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.Generic.IEnumerator`1<object> 'System.Collections.Generic.IEnumerable<System.Object>.GetEnumerator'() cil managed { ldnull throw } .method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() cil managed { ldnull throw } .method private hidebysig newslot virtual final instance bool MoveNext() cil managed { ldnull throw } .method private hidebysig newslot specialname virtual final instance object 'System.Collections.Generic.IEnumerator<System.Object>.get_Current'() cil managed { ldnull throw } .method private hidebysig newslot virtual final instance void System.Collections.IEnumerator.Reset() cil managed { ldnull throw } .method private hidebysig newslot virtual final instance void System.IDisposable.Dispose() cil managed { ldnull throw } .method private hidebysig newslot specialname virtual final instance object System.Collections.IEnumerator.get_Current() cil managed { ldnull throw } .method public hidebysig specialname rtspecialname instance void .ctor(int32 '<>1__state') cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } .property instance object 'System.Collections.Generic.IEnumerator<System.Object>.Current'() { .get instance object C/'<I<System.Int32>'.'F>d__0'::'System.Collections.Generic.IEnumerator<System.Object>.get_Current'() } .property instance object System.Collections.IEnumerator.Current() { .get instance object C/'<I<System.Int32>'.'F>d__0'::System.Collections.IEnumerator.get_Current() } } // end of class '<I<System.Int32>'.'F>d__0' .method private hidebysig newslot virtual final instance class [mscorlib]System.Collections.IEnumerable 'I<System.Int32>.F'() cil managed { ldnull throw } .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } // end of class C "; var comp = CreateCompilationWithILAndMscorlib40("", ilSource); var stateMachineClass = comp.GlobalNamespace.GetMember<NamedTypeSymbol>("C").GetMembers().OfType<NamedTypeSymbol>().Single(); Assert.Equal("<I<System.Int32>.F>d__0", stateMachineClass.Name); // The name has been reconstructed correctly. Assert.Equal("C.<I<System.Int32>.F>d__0", stateMachineClass.ToTestDisplayString()); // SymbolDisplay works. Assert.Equal(stateMachineClass, comp.GetTypeByMetadataName("C+<I<System.Int32>.F>d__0")); // GetTypeByMetadataName works. } [ConditionalFact(typeof(ClrOnly))] [WorkItem(23761, "https://github.com/dotnet/roslyn/issues/23761")] // reason for skipping mono public void EmptyNamespaceNames() { var ilSource = @".class public A { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } .namespace '.N' { .class public B { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } } .namespace '.' { .class public C { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } } .namespace '..' { .class public D { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } } .namespace '..N' { .class public E { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } } .namespace N.M { .class public F { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } } .namespace 'N.M.' { .class public G { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } } .namespace 'N.M..' { .class public H { .method public hidebysig specialname rtspecialname instance void .ctor() { ret } } }"; var comp = CreateCompilationWithILAndMscorlib40("", ilSource); comp.VerifyDiagnostics(); var builder = ArrayBuilder<string>.GetInstance(); var module = comp.GetMember<NamedTypeSymbol>("A").ContainingModule; GetAllNamespaceNames(builder, module.GlobalNamespace); Assert.Equal(new[] { "<global namespace>", "", ".", "..N", ".N", "N", "N.M", "N.M." }, builder); builder.Free(); } private static void GetAllNamespaceNames(ArrayBuilder<string> builder, NamespaceSymbol @namespace) { builder.Add(@namespace.ToTestDisplayString()); foreach (var member in @namespace.GetMembers()) { if (member.Kind != SymbolKind.Namespace) { continue; } GetAllNamespaceNames(builder, (NamespaceSymbol)member); } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/VisualStudio/Core/Def/Implementation/CommonControls/NewTypeDestinationSelection.xaml.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Windows; using System.Windows.Controls; using System.Windows.Input; namespace Microsoft.VisualStudio.LanguageServices.Implementation.CommonControls { /// <summary> /// Interaction logic for NewTypeDestinationSelection.xaml /// </summary> internal partial class NewTypeDestinationSelection : UserControl { // This allows for binding of the ViewModel as a property in XAML // which can be useful if control is being hosted public static readonly DependencyProperty ViewModelProperty = DependencyProperty.Register( nameof(ViewModel), typeof(NewTypeDestinationSelectionViewModel), typeof(NewTypeDestinationSelection), new PropertyMetadata((s, a) => { var control = (NewTypeDestinationSelection)s; control.DataContext = a.NewValue; }) ); public NewTypeDestinationSelectionViewModel ViewModel { get => (NewTypeDestinationSelectionViewModel)GetValue(ViewModelProperty); set => SetValue(ViewModelProperty, value); } public string GeneratedName => ServicesVSResources.Generated_name_colon; public string SelectDestinationFile => ServicesVSResources.Select_destination; public string SelectCurrentFileAsDestination => ServicesVSResources.Add_to_current_file; public string SelectNewFileAsDestination => ServicesVSResources.New_file_name_colon; public string NewTypeName => ServicesVSResources.New_Type_Name_colon; public NewTypeDestinationSelection() { ViewModel = NewTypeDestinationSelectionViewModel.Default; DataContext = ViewModel; InitializeComponent(); } private void SelectAllInTextBox(object sender, RoutedEventArgs e) { if (sender is TextBox textbox && Mouse.LeftButton == MouseButtonState.Released) { textbox.SelectAll(); } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Windows; using System.Windows.Controls; using System.Windows.Input; namespace Microsoft.VisualStudio.LanguageServices.Implementation.CommonControls { /// <summary> /// Interaction logic for NewTypeDestinationSelection.xaml /// </summary> internal partial class NewTypeDestinationSelection : UserControl { // This allows for binding of the ViewModel as a property in XAML // which can be useful if control is being hosted public static readonly DependencyProperty ViewModelProperty = DependencyProperty.Register( nameof(ViewModel), typeof(NewTypeDestinationSelectionViewModel), typeof(NewTypeDestinationSelection), new PropertyMetadata((s, a) => { var control = (NewTypeDestinationSelection)s; control.DataContext = a.NewValue; }) ); public NewTypeDestinationSelectionViewModel ViewModel { get => (NewTypeDestinationSelectionViewModel)GetValue(ViewModelProperty); set => SetValue(ViewModelProperty, value); } public string GeneratedName => ServicesVSResources.Generated_name_colon; public string SelectDestinationFile => ServicesVSResources.Select_destination; public string SelectCurrentFileAsDestination => ServicesVSResources.Add_to_current_file; public string SelectNewFileAsDestination => ServicesVSResources.New_file_name_colon; public string NewTypeName => ServicesVSResources.New_Type_Name_colon; public NewTypeDestinationSelection() { ViewModel = NewTypeDestinationSelectionViewModel.Default; DataContext = ViewModel; InitializeComponent(); } private void SelectAllInTextBox(object sender, RoutedEventArgs e) { if (sender is TextBox textbox && Mouse.LeftButton == MouseButtonState.Released) { textbox.SelectAll(); } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/SolutionCrawler/WorkCoordinator.IncrementalAnalyzerProcessor.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Diagnostics.EngineV2; using Microsoft.CodeAnalysis.ErrorReporting; using Microsoft.CodeAnalysis.Host; using Microsoft.CodeAnalysis.Internal.Log; using Microsoft.CodeAnalysis.LanguageServices; using Microsoft.CodeAnalysis.Notification; using Microsoft.CodeAnalysis.Options; using Microsoft.CodeAnalysis.Shared.Extensions; using Microsoft.CodeAnalysis.Shared.TestHooks; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.SolutionCrawler { internal partial class SolutionCrawlerRegistrationService { internal partial class WorkCoordinator { private partial class IncrementalAnalyzerProcessor { private static readonly Func<int, object, bool, string> s_enqueueLogger = EnqueueLogger; private readonly Registration _registration; private readonly IAsynchronousOperationListener _listener; private readonly IDocumentTrackingService _documentTracker; private readonly IProjectCacheService? _cacheService; private readonly HighPriorityProcessor _highPriorityProcessor; private readonly NormalPriorityProcessor _normalPriorityProcessor; private readonly LowPriorityProcessor _lowPriorityProcessor; // NOTE: IDiagnosticAnalyzerService can be null in test environment. private readonly Lazy<IDiagnosticAnalyzerService?> _lazyDiagnosticAnalyzerService; private LogAggregator _logAggregator; public IncrementalAnalyzerProcessor( IAsynchronousOperationListener listener, IEnumerable<Lazy<IIncrementalAnalyzerProvider, IncrementalAnalyzerProviderMetadata>> analyzerProviders, bool initializeLazily, Registration registration, TimeSpan highBackOffTimeSpan, TimeSpan normalBackOffTimeSpan, TimeSpan lowBackOffTimeSpan, CancellationToken shutdownToken) { _logAggregator = new LogAggregator(); _listener = listener; _registration = registration; _cacheService = registration.Workspace.Services.GetService<IProjectCacheService>(); _lazyDiagnosticAnalyzerService = new Lazy<IDiagnosticAnalyzerService?>(() => GetDiagnosticAnalyzerService(analyzerProviders)); var analyzersGetter = new AnalyzersGetter(analyzerProviders); // create analyzers lazily. var lazyActiveFileAnalyzers = new Lazy<ImmutableArray<IIncrementalAnalyzer>>(() => GetIncrementalAnalyzers(_registration, analyzersGetter, onlyHighPriorityAnalyzer: true)); var lazyAllAnalyzers = new Lazy<ImmutableArray<IIncrementalAnalyzer>>(() => GetIncrementalAnalyzers(_registration, analyzersGetter, onlyHighPriorityAnalyzer: false)); if (!initializeLazily) { // realize all analyzer right away _ = lazyActiveFileAnalyzers.Value; _ = lazyAllAnalyzers.Value; } // event and worker queues _documentTracker = _registration.Workspace.Services.GetRequiredService<IDocumentTrackingService>(); var globalNotificationService = _registration.Workspace.Services.GetRequiredService<IGlobalOperationNotificationService>(); _highPriorityProcessor = new HighPriorityProcessor(listener, this, lazyActiveFileAnalyzers, highBackOffTimeSpan, shutdownToken); _normalPriorityProcessor = new NormalPriorityProcessor(listener, this, lazyAllAnalyzers, globalNotificationService, normalBackOffTimeSpan, shutdownToken); _lowPriorityProcessor = new LowPriorityProcessor(listener, this, lazyAllAnalyzers, globalNotificationService, lowBackOffTimeSpan, shutdownToken); } private static IDiagnosticAnalyzerService? GetDiagnosticAnalyzerService(IEnumerable<Lazy<IIncrementalAnalyzerProvider, IncrementalAnalyzerProviderMetadata>> analyzerProviders) { // alternatively, we could just MEF import IDiagnosticAnalyzerService directly // this can be null in test env. return (IDiagnosticAnalyzerService?)analyzerProviders.Where(p => p.Value is IDiagnosticAnalyzerService).SingleOrDefault()?.Value; } private static ImmutableArray<IIncrementalAnalyzer> GetIncrementalAnalyzers(Registration registration, AnalyzersGetter analyzersGetter, bool onlyHighPriorityAnalyzer) { var orderedAnalyzers = analyzersGetter.GetOrderedAnalyzers(registration.Workspace, onlyHighPriorityAnalyzer); SolutionCrawlerLogger.LogAnalyzers(registration.CorrelationId, registration.Workspace, orderedAnalyzers, onlyHighPriorityAnalyzer); return orderedAnalyzers; } public void Enqueue(WorkItem item) { Contract.ThrowIfNull(item.DocumentId); _highPriorityProcessor.Enqueue(item); _normalPriorityProcessor.Enqueue(item); _lowPriorityProcessor.Enqueue(item); ReportPendingWorkItemCount(); } public void AddAnalyzer(IIncrementalAnalyzer analyzer, bool highPriorityForActiveFile) { if (highPriorityForActiveFile) { _highPriorityProcessor.AddAnalyzer(analyzer); } _normalPriorityProcessor.AddAnalyzer(analyzer); _lowPriorityProcessor.AddAnalyzer(analyzer); } public void Shutdown() { _highPriorityProcessor.Shutdown(); _normalPriorityProcessor.Shutdown(); _lowPriorityProcessor.Shutdown(); } public ImmutableArray<IIncrementalAnalyzer> Analyzers => _normalPriorityProcessor.Analyzers; private ProjectDependencyGraph DependencyGraph => _registration.GetSolutionToAnalyze().GetProjectDependencyGraph(); private IDiagnosticAnalyzerService? DiagnosticAnalyzerService => _lazyDiagnosticAnalyzerService?.Value; public Task AsyncProcessorTask { get { return Task.WhenAll( _highPriorityProcessor.AsyncProcessorTask, _normalPriorityProcessor.AsyncProcessorTask, _lowPriorityProcessor.AsyncProcessorTask); } } private IDisposable EnableCaching(ProjectId projectId) => _cacheService?.EnableCaching(projectId) ?? NullDisposable.Instance; private IEnumerable<DocumentId> GetOpenDocumentIds() => _registration.Workspace.GetOpenDocumentIds(); private void ResetLogAggregator() => _logAggregator = new LogAggregator(); private void ReportPendingWorkItemCount() { var pendingItemCount = _highPriorityProcessor.WorkItemCount + _normalPriorityProcessor.WorkItemCount + _lowPriorityProcessor.WorkItemCount; _registration.ProgressReporter.UpdatePendingItemCount(pendingItemCount); } private async Task ProcessDocumentAnalyzersAsync( TextDocument textDocument, ImmutableArray<IIncrementalAnalyzer> analyzers, WorkItem workItem, CancellationToken cancellationToken) { // process all analyzers for each categories in this order - syntax, body, document var reasons = workItem.InvocationReasons; if (workItem.MustRefresh || reasons.Contains(PredefinedInvocationReasons.SyntaxChanged)) { await RunAnalyzersAsync(analyzers, textDocument, workItem, (a, d, c) => AnalyzeSyntaxAsync(a, d, reasons, c), cancellationToken).ConfigureAwait(false); } if (textDocument is not Document document) { // Semantic analysis is not supported for non-source documents. return; } if (workItem.MustRefresh || reasons.Contains(PredefinedInvocationReasons.SemanticChanged)) { await RunAnalyzersAsync(analyzers, document, workItem, (a, d, c) => a.AnalyzeDocumentAsync(d, null, reasons, c), cancellationToken).ConfigureAwait(false); } else { // if we don't need to re-analyze whole body, see whether we need to at least re-analyze one method. await RunBodyAnalyzersAsync(analyzers, workItem, document, cancellationToken).ConfigureAwait(false); } return; static async Task AnalyzeSyntaxAsync(IIncrementalAnalyzer analyzer, TextDocument textDocument, InvocationReasons reasons, CancellationToken cancellationToken) { if (textDocument is Document document) { await analyzer.AnalyzeSyntaxAsync(document, reasons, cancellationToken).ConfigureAwait(false); } else if (analyzer is IIncrementalAnalyzer2 analyzer2) { await analyzer2.AnalyzeNonSourceDocumentAsync(textDocument, reasons, cancellationToken).ConfigureAwait(false); } } } private async Task RunAnalyzersAsync<T>( ImmutableArray<IIncrementalAnalyzer> analyzers, T value, WorkItem workItem, Func<IIncrementalAnalyzer, T, CancellationToken, Task> runnerAsync, CancellationToken cancellationToken) { using var evaluating = _registration.ProgressReporter.GetEvaluatingScope(); ReportPendingWorkItemCount(); // Check if the work item is specific to some incremental analyzer(s). var analyzersToExecute = workItem.GetApplicableAnalyzers(analyzers) ?? analyzers; foreach (var analyzer in analyzersToExecute) { if (cancellationToken.IsCancellationRequested) { return; } var local = analyzer; if (local == null) { return; } await GetOrDefaultAsync(value, async (v, c) => { await runnerAsync(local, v, c).ConfigureAwait(false); return (object?)null; }, cancellationToken).ConfigureAwait(false); } } private async Task RunBodyAnalyzersAsync(ImmutableArray<IIncrementalAnalyzer> analyzers, WorkItem workItem, Document document, CancellationToken cancellationToken) { try { var root = await GetOrDefaultAsync(document, (d, c) => d.GetSyntaxRootAsync(c), cancellationToken).ConfigureAwait(false); var syntaxFactsService = document.GetLanguageService<ISyntaxFactsService>(); var reasons = workItem.InvocationReasons; if (root == null || syntaxFactsService == null) { // as a fallback mechanism, if we can't run one method body due to some missing service, run whole document analyzer. await RunAnalyzersAsync(analyzers, document, workItem, (a, d, c) => a.AnalyzeDocumentAsync(d, null, reasons, c), cancellationToken).ConfigureAwait(false); return; } // check whether we know what body has changed. currently, this is an optimization toward typing case. if there are more than one body changes // it will be considered as semantic change and whole document analyzer will take care of that case. var activeMember = GetMemberNode(syntaxFactsService, root, workItem.ActiveMember); if (activeMember == null) { // no active member means, change is out side of a method body, but it didn't affect semantics (such as change in comment) // in that case, we update whole document (just this document) so that we can have updated locations. await RunAnalyzersAsync(analyzers, document, workItem, (a, d, c) => a.AnalyzeDocumentAsync(d, null, reasons, c), cancellationToken).ConfigureAwait(false); return; } // re-run just the body await RunAnalyzersAsync(analyzers, document, workItem, (a, d, c) => a.AnalyzeDocumentAsync(d, activeMember, reasons, c), cancellationToken).ConfigureAwait(false); } catch (Exception e) when (FatalError.ReportAndPropagateUnlessCanceled(e, cancellationToken)) { throw ExceptionUtilities.Unreachable; } } private static async Task<TResult?> GetOrDefaultAsync<TData, TResult>(TData value, Func<TData, CancellationToken, Task<TResult?>> funcAsync, CancellationToken cancellationToken) where TResult : class { try { return await funcAsync(value, cancellationToken).ConfigureAwait(false); } catch (OperationCanceledException) { return null; } catch (AggregateException e) when (ReportWithoutCrashUnlessAllCanceledAndPropagate(e)) { return null; } catch (Exception e) when (FatalError.ReportAndPropagate(e)) { // TODO: manage bad workers like what code actions does now throw ExceptionUtilities.Unreachable; } static bool ReportWithoutCrashUnlessAllCanceledAndPropagate(AggregateException aggregate) { var flattened = aggregate.Flatten(); if (flattened.InnerExceptions.All(e => e is OperationCanceledException)) { return true; } return FatalError.ReportAndPropagate(flattened); } } private static SyntaxNode? GetMemberNode(ISyntaxFactsService service, SyntaxNode? root, SyntaxPath? memberPath) { if (root == null || memberPath == null) { return null; } if (!memberPath.TryResolve(root, out SyntaxNode? memberNode)) { return null; } return service.IsMethodLevelMember(memberNode) ? memberNode : null; } private static string EnqueueLogger(int tick, object documentOrProjectId, bool replaced) { if (documentOrProjectId is DocumentId documentId) { return $"Tick:{tick}, {documentId}, {documentId.ProjectId}, Replaced:{replaced}"; } return $"Tick:{tick}, {documentOrProjectId}, Replaced:{replaced}"; } internal TestAccessor GetTestAccessor() { return new TestAccessor(this); } internal readonly struct TestAccessor { private readonly IncrementalAnalyzerProcessor _incrementalAnalyzerProcessor; internal TestAccessor(IncrementalAnalyzerProcessor incrementalAnalyzerProcessor) { _incrementalAnalyzerProcessor = incrementalAnalyzerProcessor; } internal void WaitUntilCompletion(ImmutableArray<IIncrementalAnalyzer> analyzers, List<WorkItem> items) { _incrementalAnalyzerProcessor._normalPriorityProcessor.GetTestAccessor().WaitUntilCompletion(analyzers, items); var projectItems = items.Select(i => i.ToProjectWorkItem(EmptyAsyncToken.Instance)); _incrementalAnalyzerProcessor._lowPriorityProcessor.GetTestAccessor().WaitUntilCompletion(analyzers, items); } internal void WaitUntilCompletion() { _incrementalAnalyzerProcessor._normalPriorityProcessor.GetTestAccessor().WaitUntilCompletion(); _incrementalAnalyzerProcessor._lowPriorityProcessor.GetTestAccessor().WaitUntilCompletion(); } } private class NullDisposable : IDisposable { public static readonly IDisposable Instance = new NullDisposable(); public void Dispose() { } } private class AnalyzersGetter { private readonly List<Lazy<IIncrementalAnalyzerProvider, IncrementalAnalyzerProviderMetadata>> _analyzerProviders; private readonly Dictionary<Workspace, ImmutableArray<(IIncrementalAnalyzer analyzer, bool highPriorityForActiveFile)>> _analyzerMap; public AnalyzersGetter(IEnumerable<Lazy<IIncrementalAnalyzerProvider, IncrementalAnalyzerProviderMetadata>> analyzerProviders) { _analyzerMap = new Dictionary<Workspace, ImmutableArray<(IIncrementalAnalyzer analyzer, bool highPriorityForActiveFile)>>(); _analyzerProviders = analyzerProviders.ToList(); } public ImmutableArray<IIncrementalAnalyzer> GetOrderedAnalyzers(Workspace workspace, bool onlyHighPriorityAnalyzer) { lock (_analyzerMap) { if (!_analyzerMap.TryGetValue(workspace, out var analyzers)) { // Sort list so DiagnosticIncrementalAnalyzers (if any) come first. OrderBy orders 'false' keys before 'true'. analyzers = _analyzerProviders.Select(p => (analyzer: p.Value.CreateIncrementalAnalyzer(workspace), highPriorityForActiveFile: p.Metadata.HighPriorityForActiveFile)) .Where(t => t.analyzer != null) .OrderBy(t => t.analyzer is not DiagnosticIncrementalAnalyzer) .ToImmutableArray()!; _analyzerMap[workspace] = analyzers; } if (onlyHighPriorityAnalyzer) { // include only high priority analyzer for active file return analyzers.SelectAsArray(t => t.highPriorityForActiveFile, t => t.analyzer); } // return all analyzers return analyzers.Select(t => t.analyzer).ToImmutableArray(); } } } } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Diagnostics.EngineV2; using Microsoft.CodeAnalysis.ErrorReporting; using Microsoft.CodeAnalysis.Host; using Microsoft.CodeAnalysis.Internal.Log; using Microsoft.CodeAnalysis.LanguageServices; using Microsoft.CodeAnalysis.Notification; using Microsoft.CodeAnalysis.Options; using Microsoft.CodeAnalysis.Shared.Extensions; using Microsoft.CodeAnalysis.Shared.TestHooks; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.SolutionCrawler { internal partial class SolutionCrawlerRegistrationService { internal partial class WorkCoordinator { private partial class IncrementalAnalyzerProcessor { private static readonly Func<int, object, bool, string> s_enqueueLogger = EnqueueLogger; private readonly Registration _registration; private readonly IAsynchronousOperationListener _listener; private readonly IDocumentTrackingService _documentTracker; private readonly IProjectCacheService? _cacheService; private readonly HighPriorityProcessor _highPriorityProcessor; private readonly NormalPriorityProcessor _normalPriorityProcessor; private readonly LowPriorityProcessor _lowPriorityProcessor; // NOTE: IDiagnosticAnalyzerService can be null in test environment. private readonly Lazy<IDiagnosticAnalyzerService?> _lazyDiagnosticAnalyzerService; private LogAggregator _logAggregator; public IncrementalAnalyzerProcessor( IAsynchronousOperationListener listener, IEnumerable<Lazy<IIncrementalAnalyzerProvider, IncrementalAnalyzerProviderMetadata>> analyzerProviders, bool initializeLazily, Registration registration, TimeSpan highBackOffTimeSpan, TimeSpan normalBackOffTimeSpan, TimeSpan lowBackOffTimeSpan, CancellationToken shutdownToken) { _logAggregator = new LogAggregator(); _listener = listener; _registration = registration; _cacheService = registration.Workspace.Services.GetService<IProjectCacheService>(); _lazyDiagnosticAnalyzerService = new Lazy<IDiagnosticAnalyzerService?>(() => GetDiagnosticAnalyzerService(analyzerProviders)); var analyzersGetter = new AnalyzersGetter(analyzerProviders); // create analyzers lazily. var lazyActiveFileAnalyzers = new Lazy<ImmutableArray<IIncrementalAnalyzer>>(() => GetIncrementalAnalyzers(_registration, analyzersGetter, onlyHighPriorityAnalyzer: true)); var lazyAllAnalyzers = new Lazy<ImmutableArray<IIncrementalAnalyzer>>(() => GetIncrementalAnalyzers(_registration, analyzersGetter, onlyHighPriorityAnalyzer: false)); if (!initializeLazily) { // realize all analyzer right away _ = lazyActiveFileAnalyzers.Value; _ = lazyAllAnalyzers.Value; } // event and worker queues _documentTracker = _registration.Workspace.Services.GetRequiredService<IDocumentTrackingService>(); var globalNotificationService = _registration.Workspace.Services.GetRequiredService<IGlobalOperationNotificationService>(); _highPriorityProcessor = new HighPriorityProcessor(listener, this, lazyActiveFileAnalyzers, highBackOffTimeSpan, shutdownToken); _normalPriorityProcessor = new NormalPriorityProcessor(listener, this, lazyAllAnalyzers, globalNotificationService, normalBackOffTimeSpan, shutdownToken); _lowPriorityProcessor = new LowPriorityProcessor(listener, this, lazyAllAnalyzers, globalNotificationService, lowBackOffTimeSpan, shutdownToken); } private static IDiagnosticAnalyzerService? GetDiagnosticAnalyzerService(IEnumerable<Lazy<IIncrementalAnalyzerProvider, IncrementalAnalyzerProviderMetadata>> analyzerProviders) { // alternatively, we could just MEF import IDiagnosticAnalyzerService directly // this can be null in test env. return (IDiagnosticAnalyzerService?)analyzerProviders.Where(p => p.Value is IDiagnosticAnalyzerService).SingleOrDefault()?.Value; } private static ImmutableArray<IIncrementalAnalyzer> GetIncrementalAnalyzers(Registration registration, AnalyzersGetter analyzersGetter, bool onlyHighPriorityAnalyzer) { var orderedAnalyzers = analyzersGetter.GetOrderedAnalyzers(registration.Workspace, onlyHighPriorityAnalyzer); SolutionCrawlerLogger.LogAnalyzers(registration.CorrelationId, registration.Workspace, orderedAnalyzers, onlyHighPriorityAnalyzer); return orderedAnalyzers; } public void Enqueue(WorkItem item) { Contract.ThrowIfNull(item.DocumentId); _highPriorityProcessor.Enqueue(item); _normalPriorityProcessor.Enqueue(item); _lowPriorityProcessor.Enqueue(item); ReportPendingWorkItemCount(); } public void AddAnalyzer(IIncrementalAnalyzer analyzer, bool highPriorityForActiveFile) { if (highPriorityForActiveFile) { _highPriorityProcessor.AddAnalyzer(analyzer); } _normalPriorityProcessor.AddAnalyzer(analyzer); _lowPriorityProcessor.AddAnalyzer(analyzer); } public void Shutdown() { _highPriorityProcessor.Shutdown(); _normalPriorityProcessor.Shutdown(); _lowPriorityProcessor.Shutdown(); } public ImmutableArray<IIncrementalAnalyzer> Analyzers => _normalPriorityProcessor.Analyzers; private ProjectDependencyGraph DependencyGraph => _registration.GetSolutionToAnalyze().GetProjectDependencyGraph(); private IDiagnosticAnalyzerService? DiagnosticAnalyzerService => _lazyDiagnosticAnalyzerService?.Value; public Task AsyncProcessorTask { get { return Task.WhenAll( _highPriorityProcessor.AsyncProcessorTask, _normalPriorityProcessor.AsyncProcessorTask, _lowPriorityProcessor.AsyncProcessorTask); } } private IDisposable EnableCaching(ProjectId projectId) => _cacheService?.EnableCaching(projectId) ?? NullDisposable.Instance; private IEnumerable<DocumentId> GetOpenDocumentIds() => _registration.Workspace.GetOpenDocumentIds(); private void ResetLogAggregator() => _logAggregator = new LogAggregator(); private void ReportPendingWorkItemCount() { var pendingItemCount = _highPriorityProcessor.WorkItemCount + _normalPriorityProcessor.WorkItemCount + _lowPriorityProcessor.WorkItemCount; _registration.ProgressReporter.UpdatePendingItemCount(pendingItemCount); } private async Task ProcessDocumentAnalyzersAsync( TextDocument textDocument, ImmutableArray<IIncrementalAnalyzer> analyzers, WorkItem workItem, CancellationToken cancellationToken) { // process all analyzers for each categories in this order - syntax, body, document var reasons = workItem.InvocationReasons; if (workItem.MustRefresh || reasons.Contains(PredefinedInvocationReasons.SyntaxChanged)) { await RunAnalyzersAsync(analyzers, textDocument, workItem, (a, d, c) => AnalyzeSyntaxAsync(a, d, reasons, c), cancellationToken).ConfigureAwait(false); } if (textDocument is not Document document) { // Semantic analysis is not supported for non-source documents. return; } if (workItem.MustRefresh || reasons.Contains(PredefinedInvocationReasons.SemanticChanged)) { await RunAnalyzersAsync(analyzers, document, workItem, (a, d, c) => a.AnalyzeDocumentAsync(d, null, reasons, c), cancellationToken).ConfigureAwait(false); } else { // if we don't need to re-analyze whole body, see whether we need to at least re-analyze one method. await RunBodyAnalyzersAsync(analyzers, workItem, document, cancellationToken).ConfigureAwait(false); } return; static async Task AnalyzeSyntaxAsync(IIncrementalAnalyzer analyzer, TextDocument textDocument, InvocationReasons reasons, CancellationToken cancellationToken) { if (textDocument is Document document) { await analyzer.AnalyzeSyntaxAsync(document, reasons, cancellationToken).ConfigureAwait(false); } else if (analyzer is IIncrementalAnalyzer2 analyzer2) { await analyzer2.AnalyzeNonSourceDocumentAsync(textDocument, reasons, cancellationToken).ConfigureAwait(false); } } } private async Task RunAnalyzersAsync<T>( ImmutableArray<IIncrementalAnalyzer> analyzers, T value, WorkItem workItem, Func<IIncrementalAnalyzer, T, CancellationToken, Task> runnerAsync, CancellationToken cancellationToken) { using var evaluating = _registration.ProgressReporter.GetEvaluatingScope(); ReportPendingWorkItemCount(); // Check if the work item is specific to some incremental analyzer(s). var analyzersToExecute = workItem.GetApplicableAnalyzers(analyzers) ?? analyzers; foreach (var analyzer in analyzersToExecute) { if (cancellationToken.IsCancellationRequested) { return; } var local = analyzer; if (local == null) { return; } await GetOrDefaultAsync(value, async (v, c) => { await runnerAsync(local, v, c).ConfigureAwait(false); return (object?)null; }, cancellationToken).ConfigureAwait(false); } } private async Task RunBodyAnalyzersAsync(ImmutableArray<IIncrementalAnalyzer> analyzers, WorkItem workItem, Document document, CancellationToken cancellationToken) { try { var root = await GetOrDefaultAsync(document, (d, c) => d.GetSyntaxRootAsync(c), cancellationToken).ConfigureAwait(false); var syntaxFactsService = document.GetLanguageService<ISyntaxFactsService>(); var reasons = workItem.InvocationReasons; if (root == null || syntaxFactsService == null) { // as a fallback mechanism, if we can't run one method body due to some missing service, run whole document analyzer. await RunAnalyzersAsync(analyzers, document, workItem, (a, d, c) => a.AnalyzeDocumentAsync(d, null, reasons, c), cancellationToken).ConfigureAwait(false); return; } // check whether we know what body has changed. currently, this is an optimization toward typing case. if there are more than one body changes // it will be considered as semantic change and whole document analyzer will take care of that case. var activeMember = GetMemberNode(syntaxFactsService, root, workItem.ActiveMember); if (activeMember == null) { // no active member means, change is out side of a method body, but it didn't affect semantics (such as change in comment) // in that case, we update whole document (just this document) so that we can have updated locations. await RunAnalyzersAsync(analyzers, document, workItem, (a, d, c) => a.AnalyzeDocumentAsync(d, null, reasons, c), cancellationToken).ConfigureAwait(false); return; } // re-run just the body await RunAnalyzersAsync(analyzers, document, workItem, (a, d, c) => a.AnalyzeDocumentAsync(d, activeMember, reasons, c), cancellationToken).ConfigureAwait(false); } catch (Exception e) when (FatalError.ReportAndPropagateUnlessCanceled(e, cancellationToken)) { throw ExceptionUtilities.Unreachable; } } private static async Task<TResult?> GetOrDefaultAsync<TData, TResult>(TData value, Func<TData, CancellationToken, Task<TResult?>> funcAsync, CancellationToken cancellationToken) where TResult : class { try { return await funcAsync(value, cancellationToken).ConfigureAwait(false); } catch (OperationCanceledException) { return null; } catch (AggregateException e) when (ReportWithoutCrashUnlessAllCanceledAndPropagate(e)) { return null; } catch (Exception e) when (FatalError.ReportAndPropagate(e)) { // TODO: manage bad workers like what code actions does now throw ExceptionUtilities.Unreachable; } static bool ReportWithoutCrashUnlessAllCanceledAndPropagate(AggregateException aggregate) { var flattened = aggregate.Flatten(); if (flattened.InnerExceptions.All(e => e is OperationCanceledException)) { return true; } return FatalError.ReportAndPropagate(flattened); } } private static SyntaxNode? GetMemberNode(ISyntaxFactsService service, SyntaxNode? root, SyntaxPath? memberPath) { if (root == null || memberPath == null) { return null; } if (!memberPath.TryResolve(root, out SyntaxNode? memberNode)) { return null; } return service.IsMethodLevelMember(memberNode) ? memberNode : null; } private static string EnqueueLogger(int tick, object documentOrProjectId, bool replaced) { if (documentOrProjectId is DocumentId documentId) { return $"Tick:{tick}, {documentId}, {documentId.ProjectId}, Replaced:{replaced}"; } return $"Tick:{tick}, {documentOrProjectId}, Replaced:{replaced}"; } internal TestAccessor GetTestAccessor() { return new TestAccessor(this); } internal readonly struct TestAccessor { private readonly IncrementalAnalyzerProcessor _incrementalAnalyzerProcessor; internal TestAccessor(IncrementalAnalyzerProcessor incrementalAnalyzerProcessor) { _incrementalAnalyzerProcessor = incrementalAnalyzerProcessor; } internal void WaitUntilCompletion(ImmutableArray<IIncrementalAnalyzer> analyzers, List<WorkItem> items) { _incrementalAnalyzerProcessor._normalPriorityProcessor.GetTestAccessor().WaitUntilCompletion(analyzers, items); var projectItems = items.Select(i => i.ToProjectWorkItem(EmptyAsyncToken.Instance)); _incrementalAnalyzerProcessor._lowPriorityProcessor.GetTestAccessor().WaitUntilCompletion(analyzers, items); } internal void WaitUntilCompletion() { _incrementalAnalyzerProcessor._normalPriorityProcessor.GetTestAccessor().WaitUntilCompletion(); _incrementalAnalyzerProcessor._lowPriorityProcessor.GetTestAccessor().WaitUntilCompletion(); } } private class NullDisposable : IDisposable { public static readonly IDisposable Instance = new NullDisposable(); public void Dispose() { } } private class AnalyzersGetter { private readonly List<Lazy<IIncrementalAnalyzerProvider, IncrementalAnalyzerProviderMetadata>> _analyzerProviders; private readonly Dictionary<Workspace, ImmutableArray<(IIncrementalAnalyzer analyzer, bool highPriorityForActiveFile)>> _analyzerMap; public AnalyzersGetter(IEnumerable<Lazy<IIncrementalAnalyzerProvider, IncrementalAnalyzerProviderMetadata>> analyzerProviders) { _analyzerMap = new Dictionary<Workspace, ImmutableArray<(IIncrementalAnalyzer analyzer, bool highPriorityForActiveFile)>>(); _analyzerProviders = analyzerProviders.ToList(); } public ImmutableArray<IIncrementalAnalyzer> GetOrderedAnalyzers(Workspace workspace, bool onlyHighPriorityAnalyzer) { lock (_analyzerMap) { if (!_analyzerMap.TryGetValue(workspace, out var analyzers)) { // Sort list so DiagnosticIncrementalAnalyzers (if any) come first. OrderBy orders 'false' keys before 'true'. analyzers = _analyzerProviders.Select(p => (analyzer: p.Value.CreateIncrementalAnalyzer(workspace), highPriorityForActiveFile: p.Metadata.HighPriorityForActiveFile)) .Where(t => t.analyzer != null) .OrderBy(t => t.analyzer is not DiagnosticIncrementalAnalyzer) .ToImmutableArray()!; _analyzerMap[workspace] = analyzers; } if (onlyHighPriorityAnalyzer) { // include only high priority analyzer for active file return analyzers.SelectAsArray(t => t.highPriorityForActiveFile, t => t.analyzer); } // return all analyzers return analyzers.Select(t => t.analyzer).ToImmutableArray(); } } } } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/Core/AnalyzerDriver/DeclarationInfo.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Immutable; using System.Diagnostics; namespace Microsoft.CodeAnalysis { /// <summary> /// Struct containing information about a source declaration. /// </summary> internal readonly struct DeclarationInfo { internal DeclarationInfo(SyntaxNode declaredNode, ImmutableArray<SyntaxNode> executableCodeBlocks, ISymbol? declaredSymbol) { Debug.Assert(declaredNode != null); Debug.Assert(!executableCodeBlocks.IsDefault); // TODO: Below assert has been commented out as is not true for VB field decls where multiple variables can share same initializer. // Declared node is the identifier, which doesn't contain the initializer. Can we tweak the assert somehow to handle this case? // Debug.Assert(executableCodeBlocks.All(n => n.Ancestors().Contains(declaredNode))); DeclaredNode = declaredNode; ExecutableCodeBlocks = executableCodeBlocks; DeclaredSymbol = declaredSymbol; } /// <summary> /// Topmost syntax node for this declaration. /// </summary> public SyntaxNode DeclaredNode { get; } /// <summary> /// Syntax nodes for executable code blocks (method body, initializers, etc.) associated with this declaration. /// </summary> public ImmutableArray<SyntaxNode> ExecutableCodeBlocks { get; } /// <summary> /// Symbol declared by this declaration. /// </summary> public ISymbol? DeclaredSymbol { get; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Immutable; using System.Diagnostics; namespace Microsoft.CodeAnalysis { /// <summary> /// Struct containing information about a source declaration. /// </summary> internal readonly struct DeclarationInfo { internal DeclarationInfo(SyntaxNode declaredNode, ImmutableArray<SyntaxNode> executableCodeBlocks, ISymbol? declaredSymbol) { Debug.Assert(declaredNode != null); Debug.Assert(!executableCodeBlocks.IsDefault); // TODO: Below assert has been commented out as is not true for VB field decls where multiple variables can share same initializer. // Declared node is the identifier, which doesn't contain the initializer. Can we tweak the assert somehow to handle this case? // Debug.Assert(executableCodeBlocks.All(n => n.Ancestors().Contains(declaredNode))); DeclaredNode = declaredNode; ExecutableCodeBlocks = executableCodeBlocks; DeclaredSymbol = declaredSymbol; } /// <summary> /// Topmost syntax node for this declaration. /// </summary> public SyntaxNode DeclaredNode { get; } /// <summary> /// Syntax nodes for executable code blocks (method body, initializers, etc.) associated with this declaration. /// </summary> public ImmutableArray<SyntaxNode> ExecutableCodeBlocks { get; } /// <summary> /// Symbol declared by this declaration. /// </summary> public ISymbol? DeclaredSymbol { get; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/Diagnostics/DiagnosticArguments.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Diagnostics; using System.Runtime.Serialization; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.Diagnostics { /// <summary> /// helper type to package diagnostic arguments to pass around between remote hosts /// </summary> [DataContract] internal class DiagnosticArguments { /// <summary> /// Flag indicating if suppressed diagnostics should be returned. /// </summary> [DataMember(Order = 0)] public bool ReportSuppressedDiagnostics; /// <summary> /// Flag indicating if analyzer performance info, such as analyzer execution times, /// should be logged as performance telemetry. /// </summary> [DataMember(Order = 1)] public bool LogPerformanceInfo; /// <summary> /// Flag indicating if the analyzer telemety info, such as registered analyzer action counts /// and analyzer execution times, should be included in the computed result. /// </summary> [DataMember(Order = 2)] public bool GetTelemetryInfo; /// <summary> /// Optional document ID, if computing diagnostics for a specific document. /// For example, diagnostic computation for open file analysis. /// </summary> [DataMember(Order = 3)] public DocumentId? DocumentId; /// <summary> /// Optional document text span, if computing diagnostics for a specific span for a document. /// For example, diagnostic computation for light bulb invocation for a specific line in active document. /// </summary> [DataMember(Order = 4)] public TextSpan? DocumentSpan; /// <summary> /// Optional <see cref="AnalysisKind"/>, if computing specific kind of diagnostics for a document request, /// i.e. <see cref="DocumentId"/> must be non-null for a non-null analysis kind. /// Only supported non-null values are <see cref="AnalysisKind.Syntax"/> and <see cref="AnalysisKind.Semantic"/>. /// </summary> [DataMember(Order = 5)] public AnalysisKind? DocumentAnalysisKind; /// <summary> /// Project ID for the document or project for which diagnostics need to be computed. /// </summary> [DataMember(Order = 6)] public ProjectId ProjectId; /// <summary> /// Array of analyzer IDs for analyzers that need to be executed for computing diagnostics. /// </summary> [DataMember(Order = 7)] public string[] AnalyzerIds; public DiagnosticArguments( bool reportSuppressedDiagnostics, bool logPerformanceInfo, bool getTelemetryInfo, DocumentId? documentId, TextSpan? documentSpan, AnalysisKind? documentAnalysisKind, ProjectId projectId, string[] analyzerIds) { Debug.Assert(documentId != null || documentSpan == null); Debug.Assert(documentId != null || documentAnalysisKind == null); Debug.Assert(documentAnalysisKind is null or (AnalysisKind?)AnalysisKind.Syntax or (AnalysisKind?)AnalysisKind.Semantic); Debug.Assert(analyzerIds.Length > 0); ReportSuppressedDiagnostics = reportSuppressedDiagnostics; LogPerformanceInfo = logPerformanceInfo; GetTelemetryInfo = getTelemetryInfo; DocumentId = documentId; DocumentSpan = documentSpan; DocumentAnalysisKind = documentAnalysisKind; ProjectId = projectId; AnalyzerIds = analyzerIds; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Diagnostics; using System.Runtime.Serialization; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.Diagnostics { /// <summary> /// helper type to package diagnostic arguments to pass around between remote hosts /// </summary> [DataContract] internal class DiagnosticArguments { /// <summary> /// Flag indicating if suppressed diagnostics should be returned. /// </summary> [DataMember(Order = 0)] public bool ReportSuppressedDiagnostics; /// <summary> /// Flag indicating if analyzer performance info, such as analyzer execution times, /// should be logged as performance telemetry. /// </summary> [DataMember(Order = 1)] public bool LogPerformanceInfo; /// <summary> /// Flag indicating if the analyzer telemety info, such as registered analyzer action counts /// and analyzer execution times, should be included in the computed result. /// </summary> [DataMember(Order = 2)] public bool GetTelemetryInfo; /// <summary> /// Optional document ID, if computing diagnostics for a specific document. /// For example, diagnostic computation for open file analysis. /// </summary> [DataMember(Order = 3)] public DocumentId? DocumentId; /// <summary> /// Optional document text span, if computing diagnostics for a specific span for a document. /// For example, diagnostic computation for light bulb invocation for a specific line in active document. /// </summary> [DataMember(Order = 4)] public TextSpan? DocumentSpan; /// <summary> /// Optional <see cref="AnalysisKind"/>, if computing specific kind of diagnostics for a document request, /// i.e. <see cref="DocumentId"/> must be non-null for a non-null analysis kind. /// Only supported non-null values are <see cref="AnalysisKind.Syntax"/> and <see cref="AnalysisKind.Semantic"/>. /// </summary> [DataMember(Order = 5)] public AnalysisKind? DocumentAnalysisKind; /// <summary> /// Project ID for the document or project for which diagnostics need to be computed. /// </summary> [DataMember(Order = 6)] public ProjectId ProjectId; /// <summary> /// Array of analyzer IDs for analyzers that need to be executed for computing diagnostics. /// </summary> [DataMember(Order = 7)] public string[] AnalyzerIds; public DiagnosticArguments( bool reportSuppressedDiagnostics, bool logPerformanceInfo, bool getTelemetryInfo, DocumentId? documentId, TextSpan? documentSpan, AnalysisKind? documentAnalysisKind, ProjectId projectId, string[] analyzerIds) { Debug.Assert(documentId != null || documentSpan == null); Debug.Assert(documentId != null || documentAnalysisKind == null); Debug.Assert(documentAnalysisKind is null or (AnalysisKind?)AnalysisKind.Syntax or (AnalysisKind?)AnalysisKind.Semantic); Debug.Assert(analyzerIds.Length > 0); ReportSuppressedDiagnostics = reportSuppressedDiagnostics; LogPerformanceInfo = logPerformanceInfo; GetTelemetryInfo = getTelemetryInfo; DocumentId = documentId; DocumentSpan = documentSpan; DocumentAnalysisKind = documentAnalysisKind; ProjectId = projectId; AnalyzerIds = analyzerIds; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/CodeFixes/FixAllOccurrences/IFixAllGetFixesService.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Immutable; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeActions; using Microsoft.CodeAnalysis.Host; namespace Microsoft.CodeAnalysis.CodeFixes { internal interface IFixAllGetFixesService : IWorkspaceService { /// <summary> /// Computes the fix all occurrences code fix, brings up the preview changes dialog for the fix and /// returns the code action operations corresponding to the fix. /// </summary> Task<ImmutableArray<CodeActionOperation>> GetFixAllOperationsAsync(FixAllContext fixAllContext, bool showPreviewChangesDialog); /// <summary> /// Computes the fix all occurrences code fix and returns the changed solution. /// </summary> Task<Solution> GetFixAllChangedSolutionAsync(FixAllContext fixAllContext); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Immutable; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeActions; using Microsoft.CodeAnalysis.Host; namespace Microsoft.CodeAnalysis.CodeFixes { internal interface IFixAllGetFixesService : IWorkspaceService { /// <summary> /// Computes the fix all occurrences code fix, brings up the preview changes dialog for the fix and /// returns the code action operations corresponding to the fix. /// </summary> Task<ImmutableArray<CodeActionOperation>> GetFixAllOperationsAsync(FixAllContext fixAllContext, bool showPreviewChangesDialog); /// <summary> /// Computes the fix all occurrences code fix and returns the changed solution. /// </summary> Task<Solution> GetFixAllChangedSolutionAsync(FixAllContext fixAllContext); } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/VisualStudio/Core/Def/Implementation/Utilities/VisualStudioCommandHandlerHelpers.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.ComponentModel.Design; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Runtime.InteropServices; using Microsoft.VisualStudio.Shell; using Microsoft.VisualStudio.Shell.Interop; namespace Microsoft.VisualStudio.LanguageServices.Implementation.Utilities { internal static class VisualStudioCommandHandlerHelpers { public static OleMenuCommand AddCommand( IMenuCommandService menuCommandService, int commandId, Guid commandGroup, EventHandler invokeHandler, EventHandler beforeQueryStatus) { var commandIdWithGroupId = new CommandID(commandGroup, commandId); var command = new OleMenuCommand(invokeHandler, delegate { }, beforeQueryStatus, commandIdWithGroupId); menuCommandService.AddCommand(command); return command; } public static bool TryGetSelectedProjectHierarchy(IServiceProvider? serviceProvider, [NotNullWhen(returnValue: true)] out IVsHierarchy? hierarchy) { hierarchy = null; // Get the DTE service and make sure there is an open solution if (serviceProvider?.GetService(typeof(EnvDTE.DTE)) is not EnvDTE.DTE dte || dte.Solution == null) { return false; } var selectionHierarchy = IntPtr.Zero; var selectionContainer = IntPtr.Zero; // Get the current selection in the shell if (serviceProvider.GetService(typeof(SVsShellMonitorSelection)) is IVsMonitorSelection monitorSelection) { try { monitorSelection.GetCurrentSelection(out selectionHierarchy, out var itemId, out var multiSelect, out selectionContainer); if (selectionHierarchy != IntPtr.Zero) { hierarchy = Marshal.GetObjectForIUnknown(selectionHierarchy) as IVsHierarchy; Debug.Assert(hierarchy != null); return hierarchy != null; } } catch (Exception) { // If anything went wrong, just ignore it } finally { // Make sure we release the COM pointers in any case if (selectionHierarchy != IntPtr.Zero) { Marshal.Release(selectionHierarchy); } if (selectionContainer != IntPtr.Zero) { Marshal.Release(selectionContainer); } } } return false; } public static bool IsBuildActive() => KnownUIContexts.SolutionBuildingContext.IsActive; } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.ComponentModel.Design; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Runtime.InteropServices; using Microsoft.VisualStudio.Shell; using Microsoft.VisualStudio.Shell.Interop; namespace Microsoft.VisualStudio.LanguageServices.Implementation.Utilities { internal static class VisualStudioCommandHandlerHelpers { public static OleMenuCommand AddCommand( IMenuCommandService menuCommandService, int commandId, Guid commandGroup, EventHandler invokeHandler, EventHandler beforeQueryStatus) { var commandIdWithGroupId = new CommandID(commandGroup, commandId); var command = new OleMenuCommand(invokeHandler, delegate { }, beforeQueryStatus, commandIdWithGroupId); menuCommandService.AddCommand(command); return command; } public static bool TryGetSelectedProjectHierarchy(IServiceProvider? serviceProvider, [NotNullWhen(returnValue: true)] out IVsHierarchy? hierarchy) { hierarchy = null; // Get the DTE service and make sure there is an open solution if (serviceProvider?.GetService(typeof(EnvDTE.DTE)) is not EnvDTE.DTE dte || dte.Solution == null) { return false; } var selectionHierarchy = IntPtr.Zero; var selectionContainer = IntPtr.Zero; // Get the current selection in the shell if (serviceProvider.GetService(typeof(SVsShellMonitorSelection)) is IVsMonitorSelection monitorSelection) { try { monitorSelection.GetCurrentSelection(out selectionHierarchy, out var itemId, out var multiSelect, out selectionContainer); if (selectionHierarchy != IntPtr.Zero) { hierarchy = Marshal.GetObjectForIUnknown(selectionHierarchy) as IVsHierarchy; Debug.Assert(hierarchy != null); return hierarchy != null; } } catch (Exception) { // If anything went wrong, just ignore it } finally { // Make sure we release the COM pointers in any case if (selectionHierarchy != IntPtr.Zero) { Marshal.Release(selectionHierarchy); } if (selectionContainer != IntPtr.Zero) { Marshal.Release(selectionContainer); } } } return false; } public static bool IsBuildActive() => KnownUIContexts.SolutionBuildingContext.IsActive; } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Tools/ExternalAccess/FSharp/Editor/IFSharpNavigationBarItemService.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace Microsoft.CodeAnalysis.ExternalAccess.FSharp.Editor { internal interface IFSharpNavigationBarItemService { Task<IList<FSharpNavigationBarItem>> GetItemsAsync(Document document, CancellationToken cancellationToken); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace Microsoft.CodeAnalysis.ExternalAccess.FSharp.Editor { internal interface IFSharpNavigationBarItemService { Task<IList<FSharpNavigationBarItem>> GetItemsAsync(Document document, CancellationToken cancellationToken); } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Analyzers/Core/CodeFixes/MakeFieldReadonly/AbstractMakeFieldReadonlyCodeFixProvider.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeActions; using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Editing; using Microsoft.CodeAnalysis.Formatting; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.MakeFieldReadonly { internal abstract class AbstractMakeFieldReadonlyCodeFixProvider<TSymbolSyntax, TFieldDeclarationSyntax> : SyntaxEditorBasedCodeFixProvider where TSymbolSyntax : SyntaxNode where TFieldDeclarationSyntax : SyntaxNode { public override ImmutableArray<string> FixableDiagnosticIds => ImmutableArray.Create(IDEDiagnosticIds.MakeFieldReadonlyDiagnosticId); internal sealed override CodeFixCategory CodeFixCategory => CodeFixCategory.CodeQuality; protected abstract SyntaxNode GetInitializerNode(TSymbolSyntax declaration); protected abstract ImmutableList<TSymbolSyntax> GetVariableDeclarators(TFieldDeclarationSyntax declaration); public override Task RegisterCodeFixesAsync(CodeFixContext context) { context.RegisterCodeFix(new MyCodeAction( c => FixAsync(context.Document, context.Diagnostics[0], c)), context.Diagnostics); return Task.CompletedTask; } protected override async Task FixAllAsync( Document document, ImmutableArray<Diagnostic> diagnostics, SyntaxEditor editor, CancellationToken cancellationToken) { var declarators = new List<TSymbolSyntax>(); var root = await document.GetSyntaxRootAsync(cancellationToken).ConfigureAwait(false); foreach (var diagnostic in diagnostics) { var diagnosticSpan = diagnostic.Location.SourceSpan; declarators.Add(root.FindNode(diagnosticSpan, getInnermostNodeForTie: true).FirstAncestorOrSelf<TSymbolSyntax>()); } await MakeFieldReadonlyAsync(document, editor, declarators).ConfigureAwait(false); } private async Task MakeFieldReadonlyAsync(Document document, SyntaxEditor editor, List<TSymbolSyntax> declarators) { var declaratorsByField = declarators.GroupBy(g => g.FirstAncestorOrSelf<TFieldDeclarationSyntax>()); foreach (var fieldDeclarators in declaratorsByField) { var declarationDeclarators = GetVariableDeclarators(fieldDeclarators.Key); if (declarationDeclarators.Count == fieldDeclarators.Count()) { var modifiers = WithReadOnly(editor.Generator.GetModifiers(fieldDeclarators.Key)); editor.SetModifiers(fieldDeclarators.Key, modifiers); } else { var model = await document.GetSemanticModelAsync().ConfigureAwait(false); var generator = editor.Generator; foreach (var declarator in declarationDeclarators.Reverse()) { var symbol = (IFieldSymbol)model.GetDeclaredSymbol(declarator); var modifiers = generator.GetModifiers(fieldDeclarators.Key); var newDeclaration = generator.FieldDeclaration(symbol.Name, generator.TypeExpression(symbol.Type), Accessibility.Private, fieldDeclarators.Contains(declarator) ? WithReadOnly(modifiers) : modifiers, GetInitializerNode(declarator)) .WithAdditionalAnnotations(Formatter.Annotation); editor.InsertAfter(fieldDeclarators.Key, newDeclaration); } editor.RemoveNode(fieldDeclarators.Key, SyntaxRemoveOptions.KeepLeadingTrivia); } } } private static DeclarationModifiers WithReadOnly(DeclarationModifiers modifiers) => (modifiers - DeclarationModifiers.Volatile) | DeclarationModifiers.ReadOnly; private class MyCodeAction : CustomCodeActions.DocumentChangeAction { public MyCodeAction(Func<CancellationToken, Task<Document>> createChangedDocument) : base(AnalyzersResources.Add_readonly_modifier, createChangedDocument, nameof(AnalyzersResources.Add_readonly_modifier)) { } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeActions; using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Editing; using Microsoft.CodeAnalysis.Formatting; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.MakeFieldReadonly { internal abstract class AbstractMakeFieldReadonlyCodeFixProvider<TSymbolSyntax, TFieldDeclarationSyntax> : SyntaxEditorBasedCodeFixProvider where TSymbolSyntax : SyntaxNode where TFieldDeclarationSyntax : SyntaxNode { public override ImmutableArray<string> FixableDiagnosticIds => ImmutableArray.Create(IDEDiagnosticIds.MakeFieldReadonlyDiagnosticId); internal sealed override CodeFixCategory CodeFixCategory => CodeFixCategory.CodeQuality; protected abstract SyntaxNode GetInitializerNode(TSymbolSyntax declaration); protected abstract ImmutableList<TSymbolSyntax> GetVariableDeclarators(TFieldDeclarationSyntax declaration); public override Task RegisterCodeFixesAsync(CodeFixContext context) { context.RegisterCodeFix(new MyCodeAction( c => FixAsync(context.Document, context.Diagnostics[0], c)), context.Diagnostics); return Task.CompletedTask; } protected override async Task FixAllAsync( Document document, ImmutableArray<Diagnostic> diagnostics, SyntaxEditor editor, CancellationToken cancellationToken) { var declarators = new List<TSymbolSyntax>(); var root = await document.GetSyntaxRootAsync(cancellationToken).ConfigureAwait(false); foreach (var diagnostic in diagnostics) { var diagnosticSpan = diagnostic.Location.SourceSpan; declarators.Add(root.FindNode(diagnosticSpan, getInnermostNodeForTie: true).FirstAncestorOrSelf<TSymbolSyntax>()); } await MakeFieldReadonlyAsync(document, editor, declarators).ConfigureAwait(false); } private async Task MakeFieldReadonlyAsync(Document document, SyntaxEditor editor, List<TSymbolSyntax> declarators) { var declaratorsByField = declarators.GroupBy(g => g.FirstAncestorOrSelf<TFieldDeclarationSyntax>()); foreach (var fieldDeclarators in declaratorsByField) { var declarationDeclarators = GetVariableDeclarators(fieldDeclarators.Key); if (declarationDeclarators.Count == fieldDeclarators.Count()) { var modifiers = WithReadOnly(editor.Generator.GetModifiers(fieldDeclarators.Key)); editor.SetModifiers(fieldDeclarators.Key, modifiers); } else { var model = await document.GetSemanticModelAsync().ConfigureAwait(false); var generator = editor.Generator; foreach (var declarator in declarationDeclarators.Reverse()) { var symbol = (IFieldSymbol)model.GetDeclaredSymbol(declarator); var modifiers = generator.GetModifiers(fieldDeclarators.Key); var newDeclaration = generator.FieldDeclaration(symbol.Name, generator.TypeExpression(symbol.Type), Accessibility.Private, fieldDeclarators.Contains(declarator) ? WithReadOnly(modifiers) : modifiers, GetInitializerNode(declarator)) .WithAdditionalAnnotations(Formatter.Annotation); editor.InsertAfter(fieldDeclarators.Key, newDeclaration); } editor.RemoveNode(fieldDeclarators.Key, SyntaxRemoveOptions.KeepLeadingTrivia); } } } private static DeclarationModifiers WithReadOnly(DeclarationModifiers modifiers) => (modifiers - DeclarationModifiers.Volatile) | DeclarationModifiers.ReadOnly; private class MyCodeAction : CustomCodeActions.DocumentChangeAction { public MyCodeAction(Func<CancellationToken, Task<Document>> createChangedDocument) : base(AnalyzersResources.Add_readonly_modifier, createChangedDocument, nameof(AnalyzersResources.Add_readonly_modifier)) { } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/SharedUtilitiesAndExtensions/Workspace/Core/Helpers/SimplificationHelpers.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Linq; using Microsoft.CodeAnalysis.CodeStyle; using Microsoft.CodeAnalysis.Shared.Extensions; using Roslyn.Utilities; #if CODE_STYLE using OptionSet = Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptions; #else using OptionSet = Microsoft.CodeAnalysis.Options.OptionSet; #endif namespace Microsoft.CodeAnalysis.Simplification { internal static class SimplificationHelpers { public static readonly SyntaxAnnotation DontSimplifyAnnotation = new(); public static readonly SyntaxAnnotation SimplifyModuleNameAnnotation = new(); public static TNode CopyAnnotations<TNode>(SyntaxNode from, TNode to) where TNode : SyntaxNode { // Because we are removing a node that may have annotations (i.e. formatting), we need // to copy those annotations to the new node. However, we can only copy all annotations // which will mean that the new node will include a ParenthesesSimplification annotation, // even if didn't have one before. That results in potentially removing parentheses that // weren't annotated by the user. To address this, we add *another* annotation to indicate // that the new node shouldn't be simplified. This is to work around the // fact that there is no way to remove an annotation from a node in the current API. If // that gets added, we can clean this up. var dontSimplifyResult = !to.HasAnnotation(Simplifier.Annotation); to = from.CopyAnnotationsTo(to); if (dontSimplifyResult) { to = to.WithAdditionalAnnotations(DontSimplifyAnnotation); } return to; } public static SyntaxToken CopyAnnotations(SyntaxToken from, SyntaxToken to) { // Because we are removing a node that may have annotations (i.e. formatting), we need // to copy those annotations to the new node. However, we can only copy all annotations // which will mean that the new node will include a ParenthesesSimplification annotation, // even if didn't have one before. That results in potentially removing parentheses that // weren't annotated by the user. To address this, we add *another* annotation to indicate // that the new node shouldn't be simplified. This is to work around the // fact that there is no way to remove an annotation from a node in the current API. If // that gets added, we can clean this up. var dontSimplifyResult = !to.HasAnnotation(Simplifier.Annotation); to = from.CopyAnnotationsTo(to); if (dontSimplifyResult) { to = to.WithAdditionalAnnotations(DontSimplifyAnnotation); } return to; } internal static ISymbol GetOriginalSymbolInfo(SemanticModel semanticModel, SyntaxNode expression) { Contract.ThrowIfNull(expression); var annotation1 = expression.GetAnnotations(SymbolAnnotation.Kind).FirstOrDefault(); if (annotation1 != null) { var typeSymbol = SymbolAnnotation.GetSymbol(annotation1, semanticModel.Compilation); if (IsValidSymbolInfo(typeSymbol)) { return typeSymbol; } } var annotation2 = expression.GetAnnotations(SpecialTypeAnnotation.Kind).FirstOrDefault(); if (annotation2 != null) { var specialType = SpecialTypeAnnotation.GetSpecialType(annotation2); if (specialType != SpecialType.None) { var typeSymbol = semanticModel.Compilation.GetSpecialType(specialType); if (IsValidSymbolInfo(typeSymbol)) { return typeSymbol; } } } var symbolInfo = semanticModel.GetSymbolInfo(expression); if (!IsValidSymbolInfo(symbolInfo.Symbol)) { return null; } return symbolInfo.Symbol; } internal static bool IsValidSymbolInfo(ISymbol symbol) { // name bound to only one symbol is valid return symbol != null && !symbol.IsErrorType(); } internal static bool ShouldSimplifyThisOrMeMemberAccessExpression( SemanticModel semanticModel, OptionSet optionSet, ISymbol symbol) { // If we're accessing a static member off of this/me then we should always consider this // simplifiable. Note: in C# this isn't even legal to access a static off of `this`, // but in VB it is legal to access a static off of `me`. if (symbol.IsStatic) return true; if ((symbol.IsKind(SymbolKind.Field) && optionSet.GetOption(CodeStyleOptions2.QualifyFieldAccess, semanticModel.Language).Value || (symbol.IsKind(SymbolKind.Property) && optionSet.GetOption(CodeStyleOptions2.QualifyPropertyAccess, semanticModel.Language).Value) || (symbol.IsKind(SymbolKind.Method) && optionSet.GetOption(CodeStyleOptions2.QualifyMethodAccess, semanticModel.Language).Value) || (symbol.IsKind(SymbolKind.Event) && optionSet.GetOption(CodeStyleOptions2.QualifyEventAccess, semanticModel.Language).Value))) { return false; } return true; } internal static bool PreferPredefinedTypeKeywordInDeclarations(OptionSet optionSet, string language) => optionSet.GetOption(CodeStyleOptions2.PreferIntrinsicPredefinedTypeKeywordInDeclaration, language).Value; internal static bool PreferPredefinedTypeKeywordInMemberAccess(OptionSet optionSet, string language) => optionSet.GetOption(CodeStyleOptions2.PreferIntrinsicPredefinedTypeKeywordInMemberAccess, language).Value; } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Linq; using Microsoft.CodeAnalysis.CodeStyle; using Microsoft.CodeAnalysis.Shared.Extensions; using Roslyn.Utilities; #if CODE_STYLE using OptionSet = Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptions; #else using OptionSet = Microsoft.CodeAnalysis.Options.OptionSet; #endif namespace Microsoft.CodeAnalysis.Simplification { internal static class SimplificationHelpers { public static readonly SyntaxAnnotation DontSimplifyAnnotation = new(); public static readonly SyntaxAnnotation SimplifyModuleNameAnnotation = new(); public static TNode CopyAnnotations<TNode>(SyntaxNode from, TNode to) where TNode : SyntaxNode { // Because we are removing a node that may have annotations (i.e. formatting), we need // to copy those annotations to the new node. However, we can only copy all annotations // which will mean that the new node will include a ParenthesesSimplification annotation, // even if didn't have one before. That results in potentially removing parentheses that // weren't annotated by the user. To address this, we add *another* annotation to indicate // that the new node shouldn't be simplified. This is to work around the // fact that there is no way to remove an annotation from a node in the current API. If // that gets added, we can clean this up. var dontSimplifyResult = !to.HasAnnotation(Simplifier.Annotation); to = from.CopyAnnotationsTo(to); if (dontSimplifyResult) { to = to.WithAdditionalAnnotations(DontSimplifyAnnotation); } return to; } public static SyntaxToken CopyAnnotations(SyntaxToken from, SyntaxToken to) { // Because we are removing a node that may have annotations (i.e. formatting), we need // to copy those annotations to the new node. However, we can only copy all annotations // which will mean that the new node will include a ParenthesesSimplification annotation, // even if didn't have one before. That results in potentially removing parentheses that // weren't annotated by the user. To address this, we add *another* annotation to indicate // that the new node shouldn't be simplified. This is to work around the // fact that there is no way to remove an annotation from a node in the current API. If // that gets added, we can clean this up. var dontSimplifyResult = !to.HasAnnotation(Simplifier.Annotation); to = from.CopyAnnotationsTo(to); if (dontSimplifyResult) { to = to.WithAdditionalAnnotations(DontSimplifyAnnotation); } return to; } internal static ISymbol GetOriginalSymbolInfo(SemanticModel semanticModel, SyntaxNode expression) { Contract.ThrowIfNull(expression); var annotation1 = expression.GetAnnotations(SymbolAnnotation.Kind).FirstOrDefault(); if (annotation1 != null) { var typeSymbol = SymbolAnnotation.GetSymbol(annotation1, semanticModel.Compilation); if (IsValidSymbolInfo(typeSymbol)) { return typeSymbol; } } var annotation2 = expression.GetAnnotations(SpecialTypeAnnotation.Kind).FirstOrDefault(); if (annotation2 != null) { var specialType = SpecialTypeAnnotation.GetSpecialType(annotation2); if (specialType != SpecialType.None) { var typeSymbol = semanticModel.Compilation.GetSpecialType(specialType); if (IsValidSymbolInfo(typeSymbol)) { return typeSymbol; } } } var symbolInfo = semanticModel.GetSymbolInfo(expression); if (!IsValidSymbolInfo(symbolInfo.Symbol)) { return null; } return symbolInfo.Symbol; } internal static bool IsValidSymbolInfo(ISymbol symbol) { // name bound to only one symbol is valid return symbol != null && !symbol.IsErrorType(); } internal static bool ShouldSimplifyThisOrMeMemberAccessExpression( SemanticModel semanticModel, OptionSet optionSet, ISymbol symbol) { // If we're accessing a static member off of this/me then we should always consider this // simplifiable. Note: in C# this isn't even legal to access a static off of `this`, // but in VB it is legal to access a static off of `me`. if (symbol.IsStatic) return true; if ((symbol.IsKind(SymbolKind.Field) && optionSet.GetOption(CodeStyleOptions2.QualifyFieldAccess, semanticModel.Language).Value || (symbol.IsKind(SymbolKind.Property) && optionSet.GetOption(CodeStyleOptions2.QualifyPropertyAccess, semanticModel.Language).Value) || (symbol.IsKind(SymbolKind.Method) && optionSet.GetOption(CodeStyleOptions2.QualifyMethodAccess, semanticModel.Language).Value) || (symbol.IsKind(SymbolKind.Event) && optionSet.GetOption(CodeStyleOptions2.QualifyEventAccess, semanticModel.Language).Value))) { return false; } return true; } internal static bool PreferPredefinedTypeKeywordInDeclarations(OptionSet optionSet, string language) => optionSet.GetOption(CodeStyleOptions2.PreferIntrinsicPredefinedTypeKeywordInDeclaration, language).Value; internal static bool PreferPredefinedTypeKeywordInMemberAccess(OptionSet optionSet, string language) => optionSet.GetOption(CodeStyleOptions2.PreferIntrinsicPredefinedTypeKeywordInMemberAccess, language).Value; } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/Test/Resources/Core/SymbolsTests/TypeForwarders/TypeForwarder3.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. [assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(Base))] [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(GenericBase<>))] public class Derived : Base { }; public class GenericDerived<S> : GenericBase<S> { }; public class GenericDerived1<S1, S2> : GenericBase<S1>.NestedGenericBase<S2> { };
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. [assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(Base))] [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(GenericBase<>))] public class Derived : Base { }; public class GenericDerived<S> : GenericBase<S> { }; public class GenericDerived1<S1, S2> : GenericBase<S1>.NestedGenericBase<S2> { };
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/Core/Portable/FindSymbols/SymbolTree/SymbolTreeInfo.FirstEntityHandleProvider.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Immutable; using System.Reflection.Metadata; using System.Reflection.Metadata.Ecma335; namespace Microsoft.CodeAnalysis.FindSymbols { internal partial class SymbolTreeInfo { /// <summary> /// Used to produce the simple-full-name components of a type from metadata. /// The name is 'simple' in that it does not contain things like backticks, /// generic arguments, or nested type + separators. Instead just hte name /// of the type, any containing types, and the component parts of its namespace /// are added. For example, for the type "X.Y.O`1.I`2, we will produce [X, Y, O, I] /// /// </summary> private class FirstEntityHandleProvider : ISignatureTypeProvider<EntityHandle, object> { public static readonly FirstEntityHandleProvider Instance = new(); public EntityHandle GetTypeFromSpecification(MetadataReader reader, TypeSpecificationHandle handle) { // Create a decoder to process the type specification (which happens with // instantiated generics). It will call back into us to get the first handle // for the type def or type ref that the specification starts with. var sigReader = reader.GetBlobReader(reader.GetTypeSpecification(handle).Signature); return new SignatureDecoder<EntityHandle, object>(this, reader, genericContext: null).DecodeType(ref sigReader); } public EntityHandle GetTypeFromSpecification(MetadataReader reader, object genericContext, TypeSpecificationHandle handle, byte rawTypeKind) => GetTypeFromSpecification(reader, handle); public EntityHandle GetTypeFromDefinition(MetadataReader reader, TypeDefinitionHandle handle, byte rawTypeKind) => handle; public EntityHandle GetTypeFromReference(MetadataReader reader, TypeReferenceHandle handle, byte rawTypeKind) => handle; // We want the first handle as is, without any handles for the generic args. public EntityHandle GetGenericInstantiation(EntityHandle genericType, ImmutableArray<EntityHandle> typeArguments) => genericType; // All the signature elements that would normally augment the passed in type will // just pass it along unchanged. public EntityHandle GetModifiedType(EntityHandle modifier, EntityHandle unmodifiedType, bool isRequired) => unmodifiedType; public EntityHandle GetPinnedType(EntityHandle elementType) => elementType; public EntityHandle GetArrayType(EntityHandle elementType, ArrayShape shape) => elementType; public EntityHandle GetByReferenceType(EntityHandle elementType) => elementType; public EntityHandle GetPointerType(EntityHandle elementType) => elementType; public EntityHandle GetSZArrayType(EntityHandle elementType) => elementType; // We'll never get function pointer types in any types we care about, so we can // just return the empty string. Similarly, as we never construct generics, // there is no need to provide anything for the generic parameter names. public EntityHandle GetFunctionPointerType(MethodSignature<EntityHandle> signature) => default; public EntityHandle GetGenericMethodParameter(object genericContext, int index) => default; public EntityHandle GetGenericTypeParameter(object genericContext, int index) => default; public EntityHandle GetPrimitiveType(PrimitiveTypeCode typeCode) => default; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Immutable; using System.Reflection.Metadata; using System.Reflection.Metadata.Ecma335; namespace Microsoft.CodeAnalysis.FindSymbols { internal partial class SymbolTreeInfo { /// <summary> /// Used to produce the simple-full-name components of a type from metadata. /// The name is 'simple' in that it does not contain things like backticks, /// generic arguments, or nested type + separators. Instead just hte name /// of the type, any containing types, and the component parts of its namespace /// are added. For example, for the type "X.Y.O`1.I`2, we will produce [X, Y, O, I] /// /// </summary> private class FirstEntityHandleProvider : ISignatureTypeProvider<EntityHandle, object> { public static readonly FirstEntityHandleProvider Instance = new(); public EntityHandle GetTypeFromSpecification(MetadataReader reader, TypeSpecificationHandle handle) { // Create a decoder to process the type specification (which happens with // instantiated generics). It will call back into us to get the first handle // for the type def or type ref that the specification starts with. var sigReader = reader.GetBlobReader(reader.GetTypeSpecification(handle).Signature); return new SignatureDecoder<EntityHandle, object>(this, reader, genericContext: null).DecodeType(ref sigReader); } public EntityHandle GetTypeFromSpecification(MetadataReader reader, object genericContext, TypeSpecificationHandle handle, byte rawTypeKind) => GetTypeFromSpecification(reader, handle); public EntityHandle GetTypeFromDefinition(MetadataReader reader, TypeDefinitionHandle handle, byte rawTypeKind) => handle; public EntityHandle GetTypeFromReference(MetadataReader reader, TypeReferenceHandle handle, byte rawTypeKind) => handle; // We want the first handle as is, without any handles for the generic args. public EntityHandle GetGenericInstantiation(EntityHandle genericType, ImmutableArray<EntityHandle> typeArguments) => genericType; // All the signature elements that would normally augment the passed in type will // just pass it along unchanged. public EntityHandle GetModifiedType(EntityHandle modifier, EntityHandle unmodifiedType, bool isRequired) => unmodifiedType; public EntityHandle GetPinnedType(EntityHandle elementType) => elementType; public EntityHandle GetArrayType(EntityHandle elementType, ArrayShape shape) => elementType; public EntityHandle GetByReferenceType(EntityHandle elementType) => elementType; public EntityHandle GetPointerType(EntityHandle elementType) => elementType; public EntityHandle GetSZArrayType(EntityHandle elementType) => elementType; // We'll never get function pointer types in any types we care about, so we can // just return the empty string. Similarly, as we never construct generics, // there is no need to provide anything for the generic parameter names. public EntityHandle GetFunctionPointerType(MethodSignature<EntityHandle> signature) => default; public EntityHandle GetGenericMethodParameter(object genericContext, int index) => default; public EntityHandle GetGenericTypeParameter(object genericContext, int index) => default; public EntityHandle GetPrimitiveType(PrimitiveTypeCode typeCode) => default; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/EditorFeatures/CSharpTest2/Recommendations/EnableKeywordRecommenderTests.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Threading.Tasks; using Microsoft.CodeAnalysis.Test.Utilities; using Roslyn.Test.Utilities; using Xunit; namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.Recommendations { [Trait(Traits.Feature, Traits.Features.KeywordRecommending)] public class EnableKeywordRecommenderTests : KeywordRecommenderTests { [Fact] [WorkItem(31130, "https://github.com/dotnet/roslyn/issues/31130")] public async Task TestAfterNullable() => await VerifyKeywordAsync(@"#nullable $$"); [Fact] [WorkItem(31130, "https://github.com/dotnet/roslyn/issues/31130")] public async Task TestNotAfterNullableAndNewline() { await VerifyAbsenceAsync(@" #nullable $$ "); } [Fact] [WorkItem(31130, "https://github.com/dotnet/roslyn/issues/31130")] public async Task TestNotAfterHash() => await VerifyAbsenceAsync(@"#$$"); [Fact] public async Task TestNotAtRoot_Interactive() => await VerifyAbsenceAsync(SourceCodeKind.Script, @"$$"); [Fact] public async Task TestNotAfterClass_Interactive() { await VerifyAbsenceAsync(SourceCodeKind.Script, @"class C { } $$"); } [Fact] public async Task TestNotAfterGlobalStatement_Interactive() { await VerifyAbsenceAsync(SourceCodeKind.Script, @"System.Console.WriteLine(); $$"); } [Fact] public async Task TestNotAfterGlobalVariableDeclaration_Interactive() { await VerifyAbsenceAsync(SourceCodeKind.Script, @"int i = 0; $$"); } [Fact] public async Task TestNotInUsingAlias() => await VerifyAbsenceAsync(@"using Goo = $$"); [Fact] public async Task TestNotInGlobalUsingAlias() => await VerifyAbsenceAsync(@"global using Goo = $$"); [Fact] public async Task TestNotInEmptyStatement() => await VerifyAbsenceAsync(AddInsideMethod(@"$$")); [Fact] public async Task TestNotAfterPragma() => await VerifyAbsenceAsync(@"#pragma $$"); [Fact] public async Task TestAfterPragmaWarning() => await VerifyKeywordAsync(@"#pragma warning $$"); [Fact] public async Task TestNotAfterPragmaWarningEnable() => await VerifyAbsenceAsync(@"#pragma warning enable $$"); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Threading.Tasks; using Microsoft.CodeAnalysis.Test.Utilities; using Roslyn.Test.Utilities; using Xunit; namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.Recommendations { [Trait(Traits.Feature, Traits.Features.KeywordRecommending)] public class EnableKeywordRecommenderTests : KeywordRecommenderTests { [Fact] [WorkItem(31130, "https://github.com/dotnet/roslyn/issues/31130")] public async Task TestAfterNullable() => await VerifyKeywordAsync(@"#nullable $$"); [Fact] [WorkItem(31130, "https://github.com/dotnet/roslyn/issues/31130")] public async Task TestNotAfterNullableAndNewline() { await VerifyAbsenceAsync(@" #nullable $$ "); } [Fact] [WorkItem(31130, "https://github.com/dotnet/roslyn/issues/31130")] public async Task TestNotAfterHash() => await VerifyAbsenceAsync(@"#$$"); [Fact] public async Task TestNotAtRoot_Interactive() => await VerifyAbsenceAsync(SourceCodeKind.Script, @"$$"); [Fact] public async Task TestNotAfterClass_Interactive() { await VerifyAbsenceAsync(SourceCodeKind.Script, @"class C { } $$"); } [Fact] public async Task TestNotAfterGlobalStatement_Interactive() { await VerifyAbsenceAsync(SourceCodeKind.Script, @"System.Console.WriteLine(); $$"); } [Fact] public async Task TestNotAfterGlobalVariableDeclaration_Interactive() { await VerifyAbsenceAsync(SourceCodeKind.Script, @"int i = 0; $$"); } [Fact] public async Task TestNotInUsingAlias() => await VerifyAbsenceAsync(@"using Goo = $$"); [Fact] public async Task TestNotInGlobalUsingAlias() => await VerifyAbsenceAsync(@"global using Goo = $$"); [Fact] public async Task TestNotInEmptyStatement() => await VerifyAbsenceAsync(AddInsideMethod(@"$$")); [Fact] public async Task TestNotAfterPragma() => await VerifyAbsenceAsync(@"#pragma $$"); [Fact] public async Task TestAfterPragmaWarning() => await VerifyKeywordAsync(@"#pragma warning $$"); [Fact] public async Task TestNotAfterPragmaWarningEnable() => await VerifyAbsenceAsync(@"#pragma warning enable $$"); } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/Core/CodeAnalysisTest/Text/StringText_LineTest.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using Microsoft.CodeAnalysis.Text; using Xunit; namespace Microsoft.CodeAnalysis.UnitTests { public class StringText_LineTest { [Fact] public void FromSpanNotIncludingBreaks() { string newLine = Environment.NewLine; var text = SourceText.From("goo" + newLine); var span = new TextSpan(0, 3); var line = TextLine.FromSpan(text, span); Assert.Equal(span, line.Span); Assert.Equal(3 + newLine.Length, line.EndIncludingLineBreak); Assert.Equal(0, line.LineNumber); } [Fact] public void FromSpanIncludingBreaksAtEnd() { var text = SourceText.From("goo" + Environment.NewLine); var span = TextSpan.FromBounds(0, text.Length); var line = TextLine.FromSpan(text, span); Assert.Equal(span, line.SpanIncludingLineBreak); Assert.Equal(3, line.End); Assert.Equal(0, line.LineNumber); } [Fact] public void FromSpanIncludingBreaks() { var text = SourceText.From("goo" + Environment.NewLine + "bar"); var span = TextSpan.FromBounds(0, text.Length); var line = TextLine.FromSpan(text, span); Assert.Equal(span, line.SpanIncludingLineBreak); Assert.Equal(text.Length, line.End); Assert.Equal(0, line.LineNumber); } [Fact] public void FromSpanNoBreaksBeforeOrAfter() { var text = SourceText.From("goo"); var line = TextLine.FromSpan(text, new TextSpan(0, 3)); Assert.Equal("goo", line.ToString()); Assert.Equal(0, line.LineNumber); } [Fact] public void FromSpanZeroLengthNotEndOfLineThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentOutOfRangeException>(() => TextLine.FromSpan(text, new TextSpan(0, 0))); } [Fact] public void FromSpanNotEndOfLineThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentOutOfRangeException>(() => TextLine.FromSpan(text, new TextSpan(0, 3))); } [Fact] public void FromSpanNotStartOfLineThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentOutOfRangeException>(() => TextLine.FromSpan(text, new TextSpan(1, 5))); } [Fact] public void FromSpanZeroLengthAtEnd() { var text = SourceText.From("goo" + Environment.NewLine); var start = text.Length; var line = TextLine.FromSpan(text, new TextSpan(start, 0)); Assert.Equal("", line.ToString()); Assert.Equal(0, line.Span.Length); Assert.Equal(0, line.SpanIncludingLineBreak.Length); Assert.Equal(start, line.Start); Assert.Equal(start, line.Span.Start); Assert.Equal(start, line.SpanIncludingLineBreak.Start); Assert.Equal(1, line.LineNumber); } [Fact] public void FromSpanZeroLengthWithLineBreak() { var text = SourceText.From(Environment.NewLine); var line = TextLine.FromSpan(text, new TextSpan(0, 0)); Assert.Equal("", line.ToString()); Assert.Equal(Environment.NewLine.Length, line.SpanIncludingLineBreak.Length); } [Fact] public void FromSpanLengthGreaterThanTextThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentOutOfRangeException>(() => TextLine.FromSpan(text, new TextSpan(1, 10))); } [Fact] public void FromSpanStartsBeforeZeroThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentOutOfRangeException>(() => TextLine.FromSpan(text, new TextSpan(-1, 2))); } [Fact] public void FromSpanZeroLengthBeyondEndThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentOutOfRangeException>(() => TextLine.FromSpan(text, new TextSpan(7, 0))); } [Fact] public void FromSpanTextNullThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentNullException>(() => TextLine.FromSpan(null, new TextSpan(0, 2))); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using Microsoft.CodeAnalysis.Text; using Xunit; namespace Microsoft.CodeAnalysis.UnitTests { public class StringText_LineTest { [Fact] public void FromSpanNotIncludingBreaks() { string newLine = Environment.NewLine; var text = SourceText.From("goo" + newLine); var span = new TextSpan(0, 3); var line = TextLine.FromSpan(text, span); Assert.Equal(span, line.Span); Assert.Equal(3 + newLine.Length, line.EndIncludingLineBreak); Assert.Equal(0, line.LineNumber); } [Fact] public void FromSpanIncludingBreaksAtEnd() { var text = SourceText.From("goo" + Environment.NewLine); var span = TextSpan.FromBounds(0, text.Length); var line = TextLine.FromSpan(text, span); Assert.Equal(span, line.SpanIncludingLineBreak); Assert.Equal(3, line.End); Assert.Equal(0, line.LineNumber); } [Fact] public void FromSpanIncludingBreaks() { var text = SourceText.From("goo" + Environment.NewLine + "bar"); var span = TextSpan.FromBounds(0, text.Length); var line = TextLine.FromSpan(text, span); Assert.Equal(span, line.SpanIncludingLineBreak); Assert.Equal(text.Length, line.End); Assert.Equal(0, line.LineNumber); } [Fact] public void FromSpanNoBreaksBeforeOrAfter() { var text = SourceText.From("goo"); var line = TextLine.FromSpan(text, new TextSpan(0, 3)); Assert.Equal("goo", line.ToString()); Assert.Equal(0, line.LineNumber); } [Fact] public void FromSpanZeroLengthNotEndOfLineThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentOutOfRangeException>(() => TextLine.FromSpan(text, new TextSpan(0, 0))); } [Fact] public void FromSpanNotEndOfLineThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentOutOfRangeException>(() => TextLine.FromSpan(text, new TextSpan(0, 3))); } [Fact] public void FromSpanNotStartOfLineThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentOutOfRangeException>(() => TextLine.FromSpan(text, new TextSpan(1, 5))); } [Fact] public void FromSpanZeroLengthAtEnd() { var text = SourceText.From("goo" + Environment.NewLine); var start = text.Length; var line = TextLine.FromSpan(text, new TextSpan(start, 0)); Assert.Equal("", line.ToString()); Assert.Equal(0, line.Span.Length); Assert.Equal(0, line.SpanIncludingLineBreak.Length); Assert.Equal(start, line.Start); Assert.Equal(start, line.Span.Start); Assert.Equal(start, line.SpanIncludingLineBreak.Start); Assert.Equal(1, line.LineNumber); } [Fact] public void FromSpanZeroLengthWithLineBreak() { var text = SourceText.From(Environment.NewLine); var line = TextLine.FromSpan(text, new TextSpan(0, 0)); Assert.Equal("", line.ToString()); Assert.Equal(Environment.NewLine.Length, line.SpanIncludingLineBreak.Length); } [Fact] public void FromSpanLengthGreaterThanTextThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentOutOfRangeException>(() => TextLine.FromSpan(text, new TextSpan(1, 10))); } [Fact] public void FromSpanStartsBeforeZeroThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentOutOfRangeException>(() => TextLine.FromSpan(text, new TextSpan(-1, 2))); } [Fact] public void FromSpanZeroLengthBeyondEndThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentOutOfRangeException>(() => TextLine.FromSpan(text, new TextSpan(7, 0))); } [Fact] public void FromSpanTextNullThrows() { var text = SourceText.From("abcdef"); Assert.Throws<ArgumentNullException>(() => TextLine.FromSpan(null, new TextSpan(0, 2))); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/SharedUtilitiesAndExtensions/Workspace/VisualBasic/xlf/VisualBasicWorkspaceExtensionsResources.ko.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="ko" original="../VisualBasicWorkspaceExtensionsResources.resx"> <body> <trans-unit id="EmptyResource"> <source>Remove this value when another is added.</source> <target state="translated">다른 값을 추가할 때 이 값을 제거하세요.</target> <note>https://github.com/Microsoft/msbuild/issues/1661</note> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="ko" original="../VisualBasicWorkspaceExtensionsResources.resx"> <body> <trans-unit id="EmptyResource"> <source>Remove this value when another is added.</source> <target state="translated">다른 값을 추가할 때 이 값을 제거하세요.</target> <note>https://github.com/Microsoft/msbuild/issues/1661</note> </trans-unit> </body> </file> </xliff>
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/CSharp/Portable/Structure/Providers/InterpolatedStringExpressionStructureProvider.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Threading; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Shared.Collections; using Microsoft.CodeAnalysis.Structure; namespace Microsoft.CodeAnalysis.CSharp.Structure { internal sealed class InterpolatedStringExpressionStructureProvider : AbstractSyntaxNodeStructureProvider<InterpolatedStringExpressionSyntax> { protected override void CollectBlockSpans( SyntaxToken previousToken, InterpolatedStringExpressionSyntax node, ref TemporaryArray<BlockSpan> spans, BlockStructureOptionProvider optionProvider, CancellationToken cancellationToken) { if (node.StringStartToken.IsMissing || node.StringEndToken.IsMissing) { return; } spans.Add(new BlockSpan( isCollapsible: true, textSpan: node.Span, hintSpan: node.Span, type: BlockTypes.Expression, autoCollapse: true, isDefaultCollapsed: false)); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Threading; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Shared.Collections; using Microsoft.CodeAnalysis.Structure; namespace Microsoft.CodeAnalysis.CSharp.Structure { internal sealed class InterpolatedStringExpressionStructureProvider : AbstractSyntaxNodeStructureProvider<InterpolatedStringExpressionSyntax> { protected override void CollectBlockSpans( SyntaxToken previousToken, InterpolatedStringExpressionSyntax node, ref TemporaryArray<BlockSpan> spans, BlockStructureOptionProvider optionProvider, CancellationToken cancellationToken) { if (node.StringStartToken.IsMissing || node.StringEndToken.IsMissing) { return; } spans.Add(new BlockSpan( isCollapsible: true, textSpan: node.Span, hintSpan: node.Span, type: BlockTypes.Expression, autoCollapse: true, isDefaultCollapsed: false)); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/CSharp/Portable/Completion/CompletionProviders/ExplicitInterfaceMemberCompletionProvider.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Immutable; using System.Composition; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Completion; using Microsoft.CodeAnalysis.Completion.Providers; using Microsoft.CodeAnalysis.CSharp.Extensions; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.ErrorReporting; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.LanguageServices; using Microsoft.CodeAnalysis.Options; using Microsoft.CodeAnalysis.Shared.Extensions; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.CSharp.Completion.Providers { [ExportCompletionProvider(nameof(ExplicitInterfaceMemberCompletionProvider), LanguageNames.CSharp), Shared] [ExtensionOrder(After = nameof(UnnamedSymbolCompletionProvider))] internal partial class ExplicitInterfaceMemberCompletionProvider : LSPCompletionProvider { private static readonly SymbolDisplayFormat s_signatureDisplayFormat = new(genericsOptions: SymbolDisplayGenericsOptions.IncludeTypeParameters, memberOptions: SymbolDisplayMemberOptions.IncludeParameters, parameterOptions: SymbolDisplayParameterOptions.IncludeName | SymbolDisplayParameterOptions.IncludeType | SymbolDisplayParameterOptions.IncludeParamsRefOut, miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes); [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public ExplicitInterfaceMemberCompletionProvider() { } public override bool IsInsertionTrigger(SourceText text, int characterPosition, OptionSet options) => text[characterPosition] == '.'; public override ImmutableHashSet<char> TriggerCharacters { get; } = ImmutableHashSet.Create('.'); public override async Task ProvideCompletionsAsync(CompletionContext context) { try { var document = context.Document; var position = context.Position; var cancellationToken = context.CancellationToken; var syntaxTree = await document.GetRequiredSyntaxTreeAsync(cancellationToken).ConfigureAwait(false); var syntaxFacts = document.GetRequiredLanguageService<ISyntaxFactsService>(); var semanticFacts = document.GetRequiredLanguageService<ISemanticFactsService>(); if (syntaxFacts.IsInNonUserCode(syntaxTree, position, cancellationToken) || syntaxFacts.IsPreProcessorDirectiveContext(syntaxTree, position, cancellationToken)) { return; } var targetToken = syntaxTree.FindTokenOnLeftOfPosition(position, cancellationToken) .GetPreviousTokenIfTouchingWord(position); if (!syntaxTree.IsRightOfDotOrArrowOrColonColon(position, targetToken, cancellationToken)) return; var node = targetToken.Parent; if (!node.IsKind(SyntaxKind.ExplicitInterfaceSpecifier, out ExplicitInterfaceSpecifierSyntax? specifierNode)) return; // Bind the interface name which is to the left of the dot var name = specifierNode.Name; var semanticModel = await document.ReuseExistingSpeculativeModelAsync(position, cancellationToken).ConfigureAwait(false); var symbol = semanticModel.GetSymbolInfo(name, cancellationToken).Symbol as ITypeSymbol; if (symbol?.TypeKind != TypeKind.Interface) return; // We're going to create a entry for each one, including the signature var namePosition = name.SpanStart; foreach (var member in symbol.GetMembers()) { if (!member.IsAbstract && !member.IsVirtual) continue; if (member.IsAccessor() || member.Kind == SymbolKind.NamedType || !semanticModel.IsAccessible(node.SpanStart, member)) { continue; } var memberString = member.ToMinimalDisplayString(semanticModel, namePosition, s_signatureDisplayFormat); // Split the member string into two parts (generally the name, and the signature portion). We want // the split so that other features (like spell-checking), only look at the name portion. var (displayText, displayTextSuffix) = SplitMemberName(memberString); context.AddItem(SymbolCompletionItem.CreateWithSymbolId( displayText, displayTextSuffix, insertionText: memberString, symbols: ImmutableArray.Create<ISymbol>(member), contextPosition: position, rules: CompletionItemRules.Default)); } } catch (Exception e) when (FatalError.ReportAndCatchUnlessCanceled(e)) { // nop } } private static (string text, string suffix) SplitMemberName(string memberString) { for (var i = 0; i < memberString.Length; i++) { if (!SyntaxFacts.IsIdentifierPartCharacter(memberString[i])) return (memberString[0..i], memberString[i..]); } return (memberString, ""); } protected override Task<CompletionDescription> GetDescriptionWorkerAsync(Document document, CompletionItem item, CancellationToken cancellationToken) => SymbolCompletionItem.GetDescriptionAsync(item, document, cancellationToken); public override Task<TextChange?> GetTextChangeAsync( Document document, CompletionItem selectedItem, char? ch, CancellationToken cancellationToken) { // If the user is typing a punctuation portion of the signature, then just emit the name. i.e. if the // member is `Contains<T>(string key)`, then typing `<` should just emit `Contains` and not // `Contains<T>(string key)<` return Task.FromResult<TextChange?>(new TextChange( selectedItem.Span, ch == '(' || ch == '[' || ch == '<' ? selectedItem.DisplayText : SymbolCompletionItem.GetInsertionText(selectedItem))); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Immutable; using System.Composition; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Completion; using Microsoft.CodeAnalysis.Completion.Providers; using Microsoft.CodeAnalysis.CSharp.Extensions; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.ErrorReporting; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.LanguageServices; using Microsoft.CodeAnalysis.Options; using Microsoft.CodeAnalysis.Shared.Extensions; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.CSharp.Completion.Providers { [ExportCompletionProvider(nameof(ExplicitInterfaceMemberCompletionProvider), LanguageNames.CSharp), Shared] [ExtensionOrder(After = nameof(UnnamedSymbolCompletionProvider))] internal partial class ExplicitInterfaceMemberCompletionProvider : LSPCompletionProvider { private static readonly SymbolDisplayFormat s_signatureDisplayFormat = new(genericsOptions: SymbolDisplayGenericsOptions.IncludeTypeParameters, memberOptions: SymbolDisplayMemberOptions.IncludeParameters, parameterOptions: SymbolDisplayParameterOptions.IncludeName | SymbolDisplayParameterOptions.IncludeType | SymbolDisplayParameterOptions.IncludeParamsRefOut, miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes); [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public ExplicitInterfaceMemberCompletionProvider() { } public override bool IsInsertionTrigger(SourceText text, int characterPosition, OptionSet options) => text[characterPosition] == '.'; public override ImmutableHashSet<char> TriggerCharacters { get; } = ImmutableHashSet.Create('.'); public override async Task ProvideCompletionsAsync(CompletionContext context) { try { var document = context.Document; var position = context.Position; var cancellationToken = context.CancellationToken; var syntaxTree = await document.GetRequiredSyntaxTreeAsync(cancellationToken).ConfigureAwait(false); var syntaxFacts = document.GetRequiredLanguageService<ISyntaxFactsService>(); var semanticFacts = document.GetRequiredLanguageService<ISemanticFactsService>(); if (syntaxFacts.IsInNonUserCode(syntaxTree, position, cancellationToken) || syntaxFacts.IsPreProcessorDirectiveContext(syntaxTree, position, cancellationToken)) { return; } var targetToken = syntaxTree.FindTokenOnLeftOfPosition(position, cancellationToken) .GetPreviousTokenIfTouchingWord(position); if (!syntaxTree.IsRightOfDotOrArrowOrColonColon(position, targetToken, cancellationToken)) return; var node = targetToken.Parent; if (!node.IsKind(SyntaxKind.ExplicitInterfaceSpecifier, out ExplicitInterfaceSpecifierSyntax? specifierNode)) return; // Bind the interface name which is to the left of the dot var name = specifierNode.Name; var semanticModel = await document.ReuseExistingSpeculativeModelAsync(position, cancellationToken).ConfigureAwait(false); var symbol = semanticModel.GetSymbolInfo(name, cancellationToken).Symbol as ITypeSymbol; if (symbol?.TypeKind != TypeKind.Interface) return; // We're going to create a entry for each one, including the signature var namePosition = name.SpanStart; foreach (var member in symbol.GetMembers()) { if (!member.IsAbstract && !member.IsVirtual) continue; if (member.IsAccessor() || member.Kind == SymbolKind.NamedType || !semanticModel.IsAccessible(node.SpanStart, member)) { continue; } var memberString = member.ToMinimalDisplayString(semanticModel, namePosition, s_signatureDisplayFormat); // Split the member string into two parts (generally the name, and the signature portion). We want // the split so that other features (like spell-checking), only look at the name portion. var (displayText, displayTextSuffix) = SplitMemberName(memberString); context.AddItem(SymbolCompletionItem.CreateWithSymbolId( displayText, displayTextSuffix, insertionText: memberString, symbols: ImmutableArray.Create<ISymbol>(member), contextPosition: position, rules: CompletionItemRules.Default)); } } catch (Exception e) when (FatalError.ReportAndCatchUnlessCanceled(e)) { // nop } } private static (string text, string suffix) SplitMemberName(string memberString) { for (var i = 0; i < memberString.Length; i++) { if (!SyntaxFacts.IsIdentifierPartCharacter(memberString[i])) return (memberString[0..i], memberString[i..]); } return (memberString, ""); } protected override Task<CompletionDescription> GetDescriptionWorkerAsync(Document document, CompletionItem item, CancellationToken cancellationToken) => SymbolCompletionItem.GetDescriptionAsync(item, document, cancellationToken); public override Task<TextChange?> GetTextChangeAsync( Document document, CompletionItem selectedItem, char? ch, CancellationToken cancellationToken) { // If the user is typing a punctuation portion of the signature, then just emit the name. i.e. if the // member is `Contains<T>(string key)`, then typing `<` should just emit `Contains` and not // `Contains<T>(string key)<` return Task.FromResult<TextChange?>(new TextChange( selectedItem.Span, ch == '(' || ch == '[' || ch == '<' ? selectedItem.DisplayText : SymbolCompletionItem.GetInsertionText(selectedItem))); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/LanguageServer/Protocol/ProtocolConstants.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Immutable; namespace Microsoft.CodeAnalysis.LanguageServer { internal class ProtocolConstants { public const string RazorCSharp = "RazorCSharp"; public static ImmutableArray<string> RoslynLspLanguages = ImmutableArray.Create(LanguageNames.CSharp, LanguageNames.VisualBasic, LanguageNames.FSharp); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Immutable; namespace Microsoft.CodeAnalysis.LanguageServer { internal class ProtocolConstants { public const string RazorCSharp = "RazorCSharp"; public static ImmutableArray<string> RoslynLspLanguages = ImmutableArray.Create(LanguageNames.CSharp, LanguageNames.VisualBasic, LanguageNames.FSharp); } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/EditorFeatures/TestUtilities/Formatting/CoreFormatterTestsBase.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Editor.Implementation.Formatting; using Microsoft.CodeAnalysis.Editor.Implementation.SmartIndent; using Microsoft.CodeAnalysis.Editor.UnitTests.Utilities; using Microsoft.CodeAnalysis.Editor.UnitTests.Workspaces; using Microsoft.CodeAnalysis.Formatting; using Microsoft.CodeAnalysis.Formatting.Rules; using Microsoft.CodeAnalysis.Options; using Microsoft.CodeAnalysis.Shared.Extensions; using Microsoft.CodeAnalysis.Test.Utilities; using Microsoft.CodeAnalysis.Text; using Microsoft.CodeAnalysis.Text.Shared.Extensions; using Microsoft.VisualStudio.Text; using Microsoft.VisualStudio.Text.Editor; using Microsoft.VisualStudio.Text.Editor.Commanding.Commands; using Microsoft.VisualStudio.Text.Operations; using Microsoft.VisualStudio.Text.Projection; using Moq; using Roslyn.Test.EditorUtilities; using Roslyn.Test.Utilities; using Roslyn.Utilities; using Xunit; using Xunit.Abstractions; namespace Microsoft.CodeAnalysis.Editor.UnitTests.Formatting { public abstract class CoreFormatterTestsBase { private static readonly TestComposition s_composition = EditorTestCompositions.EditorFeatures.AddParts(typeof(TestFormattingRuleFactoryServiceFactory)); private readonly ITestOutputHelper _output; protected CoreFormatterTestsBase(ITestOutputHelper output) => _output = output; protected abstract string GetLanguageName(); protected abstract SyntaxNode ParseCompilationUnit(string expected); protected static void TestIndentation( int point, int? expectedIndentation, ITextView textView, TestHostDocument subjectDocument) { var textUndoHistory = new Mock<ITextUndoHistoryRegistry>(); var editorOperationsFactory = new Mock<IEditorOperationsFactoryService>(); var editorOperations = new Mock<IEditorOperations>(); editorOperationsFactory.Setup(x => x.GetEditorOperations(textView)).Returns(editorOperations.Object); var snapshot = subjectDocument.GetTextBuffer().CurrentSnapshot; var indentationLineFromBuffer = snapshot.GetLineFromPosition(point); var provider = new SmartIndent(textView); var actualIndentation = provider.GetDesiredIndentation(indentationLineFromBuffer); Assert.Equal(expectedIndentation, actualIndentation.Value); } protected static void TestIndentation(TestWorkspace workspace, int indentationLine, int? expectedIndentation) { var snapshot = workspace.Documents.First().GetTextBuffer().CurrentSnapshot; var bufferGraph = new Mock<IBufferGraph>(MockBehavior.Strict); bufferGraph.Setup(x => x.MapUpToSnapshot(It.IsAny<SnapshotPoint>(), It.IsAny<PointTrackingMode>(), It.IsAny<PositionAffinity>(), It.IsAny<ITextSnapshot>())) .Returns<SnapshotPoint, PointTrackingMode, PositionAffinity, ITextSnapshot>((p, m, a, s) => { if (workspace.Services.GetService<IHostDependentFormattingRuleFactoryService>() is TestFormattingRuleFactoryServiceFactory.Factory factory && factory.BaseIndentation != 0 && factory.TextSpan.Contains(p.Position)) { var line = p.GetContainingLine(); var projectedOffset = line.GetFirstNonWhitespaceOffset().Value - factory.BaseIndentation; return new SnapshotPoint(p.Snapshot, p.Position - projectedOffset); } return p; }); var projectionBuffer = new Mock<ITextBuffer>(MockBehavior.Strict); projectionBuffer.Setup(x => x.ContentType.DisplayName).Returns("None"); var textView = new Mock<ITextView>(MockBehavior.Strict); textView.Setup(x => x.Options).Returns(TestEditorOptions.Instance); textView.Setup(x => x.BufferGraph).Returns(bufferGraph.Object); textView.SetupGet(x => x.TextSnapshot.TextBuffer).Returns(projectionBuffer.Object); var provider = new SmartIndent(textView.Object); var indentationLineFromBuffer = snapshot.GetLineFromLineNumber(indentationLine); var actualIndentation = provider.GetDesiredIndentation(indentationLineFromBuffer); Assert.Equal(expectedIndentation, actualIndentation); } private protected void AssertFormatWithView(string expectedWithMarker, string codeWithMarker, params (PerLanguageOption2<bool> option, bool enabled)[] options) { using var workspace = CreateWorkspace(codeWithMarker); if (options != null) { var optionSet = workspace.Options; foreach (var option in options) { optionSet = optionSet.WithChangedOption(option.option, GetLanguageName(), option.enabled); } workspace.TryApplyChanges(workspace.CurrentSolution.WithOptions(optionSet)); } // set up caret position var testDocument = workspace.Documents.Single(); var view = testDocument.GetTextView(); view.Caret.MoveTo(new SnapshotPoint(view.TextSnapshot, testDocument.CursorPosition.Value)); // get original buffer var buffer = workspace.Documents.First().GetTextBuffer(); var commandHandler = workspace.GetService<FormatCommandHandler>(); var commandArgs = new FormatDocumentCommandArgs(view, view.TextBuffer); commandHandler.ExecuteCommand(commandArgs, TestCommandExecutionContext.Create()); MarkupTestFile.GetPosition(expectedWithMarker, out var expected, out int expectedPosition); Assert.Equal(expected, view.TextSnapshot.GetText()); var caretPosition = view.Caret.Position.BufferPosition.Position; Assert.True(expectedPosition == caretPosition, string.Format("Caret positioned incorrectly. Should have been {0}, but was {1}.", expectedPosition, caretPosition)); } private TestWorkspace CreateWorkspace(string codeWithMarker) => this.GetLanguageName() == LanguageNames.CSharp ? TestWorkspace.CreateCSharp(codeWithMarker, composition: s_composition) : TestWorkspace.CreateVisualBasic(codeWithMarker, composition: s_composition); internal void AssertFormatWithTransformation(Workspace workspace, string expected, OptionSet optionSet, IEnumerable<AbstractFormattingRule> rules, SyntaxNode root) { var newRootNode = Formatter.Format(root, SpecializedCollections.SingletonEnumerable(root.FullSpan), workspace, optionSet, rules, CancellationToken.None); Assert.Equal(expected, newRootNode.ToFullString()); // test doesn't use parsing option. add one if needed later var newRootNodeFromString = ParseCompilationUnit(expected); // simple check to see whether two nodes are equivalent each other. Assert.True(newRootNodeFromString.IsEquivalentTo(newRootNode)); } internal static void AssertFormat(Workspace workspace, string expected, OptionSet optionSet, IEnumerable<AbstractFormattingRule> rules, ITextBuffer clonedBuffer, SyntaxNode root) { var changes = Formatter.GetFormattedTextChanges(root, SpecializedCollections.SingletonEnumerable(root.FullSpan), workspace, optionSet, rules, CancellationToken.None); var actual = ApplyResultAndGetFormattedText(clonedBuffer, changes); Assert.Equal(expected, actual); } private static string ApplyResultAndGetFormattedText(ITextBuffer buffer, IList<TextChange> changes) { using (var edit = buffer.CreateEdit()) { foreach (var change in changes) { edit.Replace(change.Span.ToSpan(), change.NewText); } edit.Apply(); } return buffer.CurrentSnapshot.GetText(); } protected async Task AssertFormatAsync(string expected, string code, IEnumerable<TextSpan> spans, Dictionary<OptionKey, object> changedOptionSet = null, int? baseIndentation = null) { using var workspace = CreateWorkspace(code); var hostdoc = workspace.Documents.First(); var buffer = hostdoc.GetTextBuffer(); var document = workspace.CurrentSolution.GetDocument(hostdoc.Id); var syntaxTree = await document.GetSyntaxTreeAsync(); // create new buffer with cloned content var clonedBuffer = EditorFactory.CreateBuffer( workspace.ExportProvider, buffer.ContentType, buffer.CurrentSnapshot.GetText()); var formattingRuleProvider = workspace.Services.GetService<IHostDependentFormattingRuleFactoryService>(); if (baseIndentation.HasValue) { var factory = (TestFormattingRuleFactoryServiceFactory.Factory)formattingRuleProvider; factory.BaseIndentation = baseIndentation.Value; factory.TextSpan = spans.First(); } var options = workspace.Options; if (changedOptionSet != null) { foreach (var entry in changedOptionSet) { options = options.WithChangedOption(entry.Key, entry.Value); } } var root = await syntaxTree.GetRootAsync(); var rules = formattingRuleProvider.CreateRule(workspace.CurrentSolution.GetDocument(syntaxTree), 0).Concat(Formatter.GetDefaultFormattingRules(workspace, root.Language)); AssertFormat(workspace, expected, options, rules, clonedBuffer, root, spans); // format with node and transform AssertFormatWithTransformation(workspace, expected, options, rules, root, spans); } internal void AssertFormatWithTransformation(Workspace workspace, string expected, OptionSet optionSet, IEnumerable<AbstractFormattingRule> rules, SyntaxNode root, IEnumerable<TextSpan> spans) { var newRootNode = Formatter.Format(root, spans, workspace, optionSet, rules, CancellationToken.None); Assert.Equal(expected, newRootNode.ToFullString()); // test doesn't use parsing option. add one if needed later var newRootNodeFromString = ParseCompilationUnit(expected); // simple check to see whether two nodes are equivalent each other. Assert.True(newRootNodeFromString.IsEquivalentTo(newRootNode)); } internal void AssertFormat(Workspace workspace, string expected, OptionSet optionSet, IEnumerable<AbstractFormattingRule> rules, ITextBuffer clonedBuffer, SyntaxNode root, IEnumerable<TextSpan> spans) { var result = Formatter.GetFormattedTextChanges(root, spans, workspace, optionSet, rules, CancellationToken.None); var actual = ApplyResultAndGetFormattedText(clonedBuffer, result); if (actual != expected) { _output.WriteLine(actual); Assert.Equal(expected, actual); } } protected void AssertFormatWithPasteOrReturn(string expectedWithMarker, string codeWithMarker, bool allowDocumentChanges, bool isPaste = true) { using var workspace = CreateWorkspace(codeWithMarker); workspace.CanApplyChangeDocument = allowDocumentChanges; // set up caret position var testDocument = workspace.Documents.Single(); var view = testDocument.GetTextView(); view.Caret.MoveTo(new SnapshotPoint(view.TextSnapshot, testDocument.CursorPosition.Value)); // get original buffer var buffer = workspace.Documents.First().GetTextBuffer(); if (isPaste) { var commandHandler = workspace.GetService<FormatCommandHandler>(); var commandArgs = new PasteCommandArgs(view, view.TextBuffer); commandHandler.ExecuteCommand(commandArgs, () => { }, TestCommandExecutionContext.Create()); } else { // Return Key Command var commandHandler = workspace.GetService<FormatCommandHandler>(); var commandArgs = new ReturnKeyCommandArgs(view, view.TextBuffer); commandHandler.ExecuteCommand(commandArgs, () => { }, TestCommandExecutionContext.Create()); } MarkupTestFile.GetPosition(expectedWithMarker, out var expected, out int expectedPosition); Assert.Equal(expected, view.TextSnapshot.GetText()); var caretPosition = view.Caret.Position.BufferPosition.Position; Assert.True(expectedPosition == caretPosition, string.Format("Caret positioned incorrectly. Should have been {0}, but was {1}.", expectedPosition, caretPosition)); } protected async Task AssertFormatWithBaseIndentAsync( string expected, string markupCode, int baseIndentation, Dictionary<OptionKey, object> options = null) { MarkupTestFile.GetSpan(markupCode, out var code, out var span); await AssertFormatAsync( expected, code, new List<TextSpan> { span }, changedOptionSet: options, baseIndentation: baseIndentation); } /// <summary> /// Asserts formatting on an arbitrary <see cref="SyntaxNode"/> that is not part of a <see cref="SyntaxTree"/> /// </summary> /// <param name="node">the <see cref="SyntaxNode"/> to format.</param> /// <remarks>uses an <see cref="AdhocWorkspace"/> for formatting context, since the <paramref name="node"/> is not associated with a <see cref="SyntaxTree"/> </remarks> protected static void AssertFormatOnArbitraryNode(SyntaxNode node, string expected) { var result = Formatter.Format(node, new AdhocWorkspace()); var actual = result.GetText().ToString(); Assert.Equal(expected, actual); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Editor.Implementation.Formatting; using Microsoft.CodeAnalysis.Editor.Implementation.SmartIndent; using Microsoft.CodeAnalysis.Editor.UnitTests.Utilities; using Microsoft.CodeAnalysis.Editor.UnitTests.Workspaces; using Microsoft.CodeAnalysis.Formatting; using Microsoft.CodeAnalysis.Formatting.Rules; using Microsoft.CodeAnalysis.Options; using Microsoft.CodeAnalysis.Shared.Extensions; using Microsoft.CodeAnalysis.Test.Utilities; using Microsoft.CodeAnalysis.Text; using Microsoft.CodeAnalysis.Text.Shared.Extensions; using Microsoft.VisualStudio.Text; using Microsoft.VisualStudio.Text.Editor; using Microsoft.VisualStudio.Text.Editor.Commanding.Commands; using Microsoft.VisualStudio.Text.Operations; using Microsoft.VisualStudio.Text.Projection; using Moq; using Roslyn.Test.EditorUtilities; using Roslyn.Test.Utilities; using Roslyn.Utilities; using Xunit; using Xunit.Abstractions; namespace Microsoft.CodeAnalysis.Editor.UnitTests.Formatting { public abstract class CoreFormatterTestsBase { private static readonly TestComposition s_composition = EditorTestCompositions.EditorFeatures.AddParts(typeof(TestFormattingRuleFactoryServiceFactory)); private readonly ITestOutputHelper _output; protected CoreFormatterTestsBase(ITestOutputHelper output) => _output = output; protected abstract string GetLanguageName(); protected abstract SyntaxNode ParseCompilationUnit(string expected); protected static void TestIndentation( int point, int? expectedIndentation, ITextView textView, TestHostDocument subjectDocument) { var textUndoHistory = new Mock<ITextUndoHistoryRegistry>(); var editorOperationsFactory = new Mock<IEditorOperationsFactoryService>(); var editorOperations = new Mock<IEditorOperations>(); editorOperationsFactory.Setup(x => x.GetEditorOperations(textView)).Returns(editorOperations.Object); var snapshot = subjectDocument.GetTextBuffer().CurrentSnapshot; var indentationLineFromBuffer = snapshot.GetLineFromPosition(point); var provider = new SmartIndent(textView); var actualIndentation = provider.GetDesiredIndentation(indentationLineFromBuffer); Assert.Equal(expectedIndentation, actualIndentation.Value); } protected static void TestIndentation(TestWorkspace workspace, int indentationLine, int? expectedIndentation) { var snapshot = workspace.Documents.First().GetTextBuffer().CurrentSnapshot; var bufferGraph = new Mock<IBufferGraph>(MockBehavior.Strict); bufferGraph.Setup(x => x.MapUpToSnapshot(It.IsAny<SnapshotPoint>(), It.IsAny<PointTrackingMode>(), It.IsAny<PositionAffinity>(), It.IsAny<ITextSnapshot>())) .Returns<SnapshotPoint, PointTrackingMode, PositionAffinity, ITextSnapshot>((p, m, a, s) => { if (workspace.Services.GetService<IHostDependentFormattingRuleFactoryService>() is TestFormattingRuleFactoryServiceFactory.Factory factory && factory.BaseIndentation != 0 && factory.TextSpan.Contains(p.Position)) { var line = p.GetContainingLine(); var projectedOffset = line.GetFirstNonWhitespaceOffset().Value - factory.BaseIndentation; return new SnapshotPoint(p.Snapshot, p.Position - projectedOffset); } return p; }); var projectionBuffer = new Mock<ITextBuffer>(MockBehavior.Strict); projectionBuffer.Setup(x => x.ContentType.DisplayName).Returns("None"); var textView = new Mock<ITextView>(MockBehavior.Strict); textView.Setup(x => x.Options).Returns(TestEditorOptions.Instance); textView.Setup(x => x.BufferGraph).Returns(bufferGraph.Object); textView.SetupGet(x => x.TextSnapshot.TextBuffer).Returns(projectionBuffer.Object); var provider = new SmartIndent(textView.Object); var indentationLineFromBuffer = snapshot.GetLineFromLineNumber(indentationLine); var actualIndentation = provider.GetDesiredIndentation(indentationLineFromBuffer); Assert.Equal(expectedIndentation, actualIndentation); } private protected void AssertFormatWithView(string expectedWithMarker, string codeWithMarker, params (PerLanguageOption2<bool> option, bool enabled)[] options) { using var workspace = CreateWorkspace(codeWithMarker); if (options != null) { var optionSet = workspace.Options; foreach (var option in options) { optionSet = optionSet.WithChangedOption(option.option, GetLanguageName(), option.enabled); } workspace.TryApplyChanges(workspace.CurrentSolution.WithOptions(optionSet)); } // set up caret position var testDocument = workspace.Documents.Single(); var view = testDocument.GetTextView(); view.Caret.MoveTo(new SnapshotPoint(view.TextSnapshot, testDocument.CursorPosition.Value)); // get original buffer var buffer = workspace.Documents.First().GetTextBuffer(); var commandHandler = workspace.GetService<FormatCommandHandler>(); var commandArgs = new FormatDocumentCommandArgs(view, view.TextBuffer); commandHandler.ExecuteCommand(commandArgs, TestCommandExecutionContext.Create()); MarkupTestFile.GetPosition(expectedWithMarker, out var expected, out int expectedPosition); Assert.Equal(expected, view.TextSnapshot.GetText()); var caretPosition = view.Caret.Position.BufferPosition.Position; Assert.True(expectedPosition == caretPosition, string.Format("Caret positioned incorrectly. Should have been {0}, but was {1}.", expectedPosition, caretPosition)); } private TestWorkspace CreateWorkspace(string codeWithMarker) => this.GetLanguageName() == LanguageNames.CSharp ? TestWorkspace.CreateCSharp(codeWithMarker, composition: s_composition) : TestWorkspace.CreateVisualBasic(codeWithMarker, composition: s_composition); internal void AssertFormatWithTransformation(Workspace workspace, string expected, OptionSet optionSet, IEnumerable<AbstractFormattingRule> rules, SyntaxNode root) { var newRootNode = Formatter.Format(root, SpecializedCollections.SingletonEnumerable(root.FullSpan), workspace, optionSet, rules, CancellationToken.None); Assert.Equal(expected, newRootNode.ToFullString()); // test doesn't use parsing option. add one if needed later var newRootNodeFromString = ParseCompilationUnit(expected); // simple check to see whether two nodes are equivalent each other. Assert.True(newRootNodeFromString.IsEquivalentTo(newRootNode)); } internal static void AssertFormat(Workspace workspace, string expected, OptionSet optionSet, IEnumerable<AbstractFormattingRule> rules, ITextBuffer clonedBuffer, SyntaxNode root) { var changes = Formatter.GetFormattedTextChanges(root, SpecializedCollections.SingletonEnumerable(root.FullSpan), workspace, optionSet, rules, CancellationToken.None); var actual = ApplyResultAndGetFormattedText(clonedBuffer, changes); Assert.Equal(expected, actual); } private static string ApplyResultAndGetFormattedText(ITextBuffer buffer, IList<TextChange> changes) { using (var edit = buffer.CreateEdit()) { foreach (var change in changes) { edit.Replace(change.Span.ToSpan(), change.NewText); } edit.Apply(); } return buffer.CurrentSnapshot.GetText(); } protected async Task AssertFormatAsync(string expected, string code, IEnumerable<TextSpan> spans, Dictionary<OptionKey, object> changedOptionSet = null, int? baseIndentation = null) { using var workspace = CreateWorkspace(code); var hostdoc = workspace.Documents.First(); var buffer = hostdoc.GetTextBuffer(); var document = workspace.CurrentSolution.GetDocument(hostdoc.Id); var syntaxTree = await document.GetSyntaxTreeAsync(); // create new buffer with cloned content var clonedBuffer = EditorFactory.CreateBuffer( workspace.ExportProvider, buffer.ContentType, buffer.CurrentSnapshot.GetText()); var formattingRuleProvider = workspace.Services.GetService<IHostDependentFormattingRuleFactoryService>(); if (baseIndentation.HasValue) { var factory = (TestFormattingRuleFactoryServiceFactory.Factory)formattingRuleProvider; factory.BaseIndentation = baseIndentation.Value; factory.TextSpan = spans.First(); } var options = workspace.Options; if (changedOptionSet != null) { foreach (var entry in changedOptionSet) { options = options.WithChangedOption(entry.Key, entry.Value); } } var root = await syntaxTree.GetRootAsync(); var rules = formattingRuleProvider.CreateRule(workspace.CurrentSolution.GetDocument(syntaxTree), 0).Concat(Formatter.GetDefaultFormattingRules(workspace, root.Language)); AssertFormat(workspace, expected, options, rules, clonedBuffer, root, spans); // format with node and transform AssertFormatWithTransformation(workspace, expected, options, rules, root, spans); } internal void AssertFormatWithTransformation(Workspace workspace, string expected, OptionSet optionSet, IEnumerable<AbstractFormattingRule> rules, SyntaxNode root, IEnumerable<TextSpan> spans) { var newRootNode = Formatter.Format(root, spans, workspace, optionSet, rules, CancellationToken.None); Assert.Equal(expected, newRootNode.ToFullString()); // test doesn't use parsing option. add one if needed later var newRootNodeFromString = ParseCompilationUnit(expected); // simple check to see whether two nodes are equivalent each other. Assert.True(newRootNodeFromString.IsEquivalentTo(newRootNode)); } internal void AssertFormat(Workspace workspace, string expected, OptionSet optionSet, IEnumerable<AbstractFormattingRule> rules, ITextBuffer clonedBuffer, SyntaxNode root, IEnumerable<TextSpan> spans) { var result = Formatter.GetFormattedTextChanges(root, spans, workspace, optionSet, rules, CancellationToken.None); var actual = ApplyResultAndGetFormattedText(clonedBuffer, result); if (actual != expected) { _output.WriteLine(actual); Assert.Equal(expected, actual); } } protected void AssertFormatWithPasteOrReturn(string expectedWithMarker, string codeWithMarker, bool allowDocumentChanges, bool isPaste = true) { using var workspace = CreateWorkspace(codeWithMarker); workspace.CanApplyChangeDocument = allowDocumentChanges; // set up caret position var testDocument = workspace.Documents.Single(); var view = testDocument.GetTextView(); view.Caret.MoveTo(new SnapshotPoint(view.TextSnapshot, testDocument.CursorPosition.Value)); // get original buffer var buffer = workspace.Documents.First().GetTextBuffer(); if (isPaste) { var commandHandler = workspace.GetService<FormatCommandHandler>(); var commandArgs = new PasteCommandArgs(view, view.TextBuffer); commandHandler.ExecuteCommand(commandArgs, () => { }, TestCommandExecutionContext.Create()); } else { // Return Key Command var commandHandler = workspace.GetService<FormatCommandHandler>(); var commandArgs = new ReturnKeyCommandArgs(view, view.TextBuffer); commandHandler.ExecuteCommand(commandArgs, () => { }, TestCommandExecutionContext.Create()); } MarkupTestFile.GetPosition(expectedWithMarker, out var expected, out int expectedPosition); Assert.Equal(expected, view.TextSnapshot.GetText()); var caretPosition = view.Caret.Position.BufferPosition.Position; Assert.True(expectedPosition == caretPosition, string.Format("Caret positioned incorrectly. Should have been {0}, but was {1}.", expectedPosition, caretPosition)); } protected async Task AssertFormatWithBaseIndentAsync( string expected, string markupCode, int baseIndentation, Dictionary<OptionKey, object> options = null) { MarkupTestFile.GetSpan(markupCode, out var code, out var span); await AssertFormatAsync( expected, code, new List<TextSpan> { span }, changedOptionSet: options, baseIndentation: baseIndentation); } /// <summary> /// Asserts formatting on an arbitrary <see cref="SyntaxNode"/> that is not part of a <see cref="SyntaxTree"/> /// </summary> /// <param name="node">the <see cref="SyntaxNode"/> to format.</param> /// <remarks>uses an <see cref="AdhocWorkspace"/> for formatting context, since the <paramref name="node"/> is not associated with a <see cref="SyntaxTree"/> </remarks> protected static void AssertFormatOnArbitraryNode(SyntaxNode node, string expected) { var result = Formatter.Format(node, new AdhocWorkspace()); var actual = result.GetText().ToString(); Assert.Equal(expected, actual); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Tools/ExternalAccess/FSharp/Internal/VisualStudio/Text/Classification/FSharpSignatureHelpClassifierProvider.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.ComponentModel.Composition; using Microsoft.VisualStudio.Text.Classification; using Microsoft.CodeAnalysis.ExternalAccess.FSharp.Editor; using Microsoft.VisualStudio.Utilities; using Microsoft.CodeAnalysis.Editor.Shared.Utilities; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.VisualStudio.Text; using Microsoft.CodeAnalysis.Editor.Implementation.IntelliSense.SignatureHelp.Presentation; namespace Microsoft.CodeAnalysis.ExternalAccess.FSharp.Internal.VisualStudio.Text.Classification { [Export(typeof(IClassifierProvider))] [ContentType(FSharpContentTypeNames.FSharpSignatureHelpContentType)] internal class FSharpSignatureHelpClassifierProvider : IClassifierProvider { private readonly ClassificationTypeMap _typeMap; [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public FSharpSignatureHelpClassifierProvider(ClassificationTypeMap typeMap) { _typeMap = typeMap; } public IClassifier GetClassifier(ITextBuffer textBuffer) { return new SignatureHelpClassifier(textBuffer, _typeMap); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.ComponentModel.Composition; using Microsoft.VisualStudio.Text.Classification; using Microsoft.CodeAnalysis.ExternalAccess.FSharp.Editor; using Microsoft.VisualStudio.Utilities; using Microsoft.CodeAnalysis.Editor.Shared.Utilities; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.VisualStudio.Text; using Microsoft.CodeAnalysis.Editor.Implementation.IntelliSense.SignatureHelp.Presentation; namespace Microsoft.CodeAnalysis.ExternalAccess.FSharp.Internal.VisualStudio.Text.Classification { [Export(typeof(IClassifierProvider))] [ContentType(FSharpContentTypeNames.FSharpSignatureHelpContentType)] internal class FSharpSignatureHelpClassifierProvider : IClassifierProvider { private readonly ClassificationTypeMap _typeMap; [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public FSharpSignatureHelpClassifierProvider(ClassificationTypeMap typeMap) { _typeMap = typeMap; } public IClassifier GetClassifier(ITextBuffer textBuffer) { return new SignatureHelpClassifier(textBuffer, _typeMap); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/SharedUtilitiesAndExtensions/Workspace/CSharp/CSharpWorkspaceExtensionsResources.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="EmptyResource" xml:space="preserve"> <value>Remove this value when another is added.</value> <comment>https://github.com/Microsoft/msbuild/issues/1661</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="EmptyResource" xml:space="preserve"> <value>Remove this value when another is added.</value> <comment>https://github.com/Microsoft/msbuild/issues/1661</comment> </data> </root>
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/Core/Portable/Remote/WellKnownServiceHubService.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Microsoft.CodeAnalysis.Remote { internal enum WellKnownServiceHubService { None = 0, RemoteHost = 1, // obsolete: CodeAnalysis = 2, // obsolete: RemoteSymbolSearchUpdateService = 3, // obsolete: RemoteDesignerAttributeService = 4, // obsolete: RemoteProjectTelemetryService = 5, // obsolete: RemoteTodoCommentsService = 6, // obsolete: RemoteLanguageServer = 7, IntelliCode = 8, // obsolete: Razor = 9, // owned by Unit Testing team: // obsolete: UnitTestingAnalysisService = 10, // obsolete: LiveUnitTestingBuildService = 11, // obsolete: UnitTestingSourceLookupService = 12, } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Microsoft.CodeAnalysis.Remote { internal enum WellKnownServiceHubService { None = 0, RemoteHost = 1, // obsolete: CodeAnalysis = 2, // obsolete: RemoteSymbolSearchUpdateService = 3, // obsolete: RemoteDesignerAttributeService = 4, // obsolete: RemoteProjectTelemetryService = 5, // obsolete: RemoteTodoCommentsService = 6, // obsolete: RemoteLanguageServer = 7, IntelliCode = 8, // obsolete: Razor = 9, // owned by Unit Testing team: // obsolete: UnitTestingAnalysisService = 10, // obsolete: LiveUnitTestingBuildService = 11, // obsolete: UnitTestingSourceLookupService = 12, } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/SharedUtilitiesAndExtensions/Compiler/VisualBasic/xlf/VisualBasicCompilerExtensionsResources.pt-BR.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="pt-BR" original="../VisualBasicCompilerExtensionsResources.resx"> <body> <trans-unit id="EmptyResource"> <source>Remove this value when another is added.</source> <target state="translated">Remover este valor quando outro for adicionado.</target> <note>https://github.com/Microsoft/msbuild/issues/1661</note> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="pt-BR" original="../VisualBasicCompilerExtensionsResources.resx"> <body> <trans-unit id="EmptyResource"> <source>Remove this value when another is added.</source> <target state="translated">Remover este valor quando outro for adicionado.</target> <note>https://github.com/Microsoft/msbuild/issues/1661</note> </trans-unit> </body> </file> </xliff>
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/VisualStudio/Core/Impl/SolutionExplorer/AnalyzerItem/AnalyzerItemSourceProvider.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.ComponentModel.Composition; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.Internal.VisualStudio.PlatformUI; using Microsoft.VisualStudio.Shell; using Microsoft.VisualStudio.Utilities; namespace Microsoft.VisualStudio.LanguageServices.Implementation.SolutionExplorer { [Export(typeof(IAttachedCollectionSourceProvider))] [Name(nameof(AnalyzerItemSourceProvider))] [Order] [AppliesToProject("(CSharp | VB) & !CPS")] // in the CPS case, the Analyzers items are created by the project system internal sealed class AnalyzerItemSourceProvider : AttachedCollectionSourceProvider<AnalyzersFolderItem> { [Import(typeof(AnalyzersCommandHandler))] private readonly IAnalyzersCommandHandler _commandHandler = null; [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public AnalyzerItemSourceProvider() { } protected override IAttachedCollectionSource CreateCollectionSource(AnalyzersFolderItem analyzersFolder, string relationshipName) { if (relationshipName == KnownRelationships.Contains) { return new AnalyzerItemSource(analyzersFolder, _commandHandler); } return null; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.ComponentModel.Composition; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.Internal.VisualStudio.PlatformUI; using Microsoft.VisualStudio.Shell; using Microsoft.VisualStudio.Utilities; namespace Microsoft.VisualStudio.LanguageServices.Implementation.SolutionExplorer { [Export(typeof(IAttachedCollectionSourceProvider))] [Name(nameof(AnalyzerItemSourceProvider))] [Order] [AppliesToProject("(CSharp | VB) & !CPS")] // in the CPS case, the Analyzers items are created by the project system internal sealed class AnalyzerItemSourceProvider : AttachedCollectionSourceProvider<AnalyzersFolderItem> { [Import(typeof(AnalyzersCommandHandler))] private readonly IAnalyzersCommandHandler _commandHandler = null; [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public AnalyzerItemSourceProvider() { } protected override IAttachedCollectionSource CreateCollectionSource(AnalyzersFolderItem analyzersFolder, string relationshipName) { if (relationshipName == KnownRelationships.Contains) { return new AnalyzerItemSource(analyzersFolder, _commandHandler); } return null; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/VisualStudio/Core/Def/Implementation/ProjectSystem/MiscellaneousFilesWorkspace.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Collections.Immutable; using System.ComponentModel.Composition; using System.IO; using System.Linq; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Editor.Shared.Utilities; using Microsoft.CodeAnalysis.Host; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.MetadataAsSource; using Microsoft.CodeAnalysis.Scripting; using Microsoft.CodeAnalysis.Scripting.Hosting; using Microsoft.CodeAnalysis.Text; using Microsoft.VisualStudio.Editor; using Microsoft.VisualStudio.Shell; using Microsoft.VisualStudio.Shell.Interop; using Microsoft.VisualStudio.Text; using Microsoft.VisualStudio.TextManager.Interop; using Roslyn.Utilities; namespace Microsoft.VisualStudio.LanguageServices.Implementation.ProjectSystem { [Export(typeof(MiscellaneousFilesWorkspace))] internal sealed partial class MiscellaneousFilesWorkspace : Workspace, IRunningDocumentTableEventListener { private readonly IMetadataAsSourceFileService _fileTrackingMetadataAsSourceService; private readonly Lazy<IVsTextManager> _lazyTextManager; private readonly RunningDocumentTableEventTracker _runningDocumentTableEventTracker; private readonly Dictionary<Guid, LanguageInformation> _languageInformationByLanguageGuid = new(); /// <summary> /// <see cref="WorkspaceRegistration"/> instances for all open buffers being tracked by by this object /// for possible inclusion into this workspace. /// </summary> private IBidirectionalMap<string, WorkspaceRegistration> _monikerToWorkspaceRegistration = BidirectionalMap<string, WorkspaceRegistration>.Empty; /// <summary> /// The mapping of all monikers in the RDT and the <see cref="ProjectId"/> of the project and <see cref="SourceTextContainer"/> of the open /// file we have created for that open buffer. An entry should only be in here if it's also already in <see cref="_monikerToWorkspaceRegistration"/>. /// </summary> private readonly Dictionary<string, (ProjectId projectId, SourceTextContainer textContainer)> _monikersToProjectIdAndContainer = new Dictionary<string, (ProjectId, SourceTextContainer)>(); private readonly ImmutableArray<MetadataReference> _metadataReferences; private readonly ForegroundThreadAffinitizedObject _foregroundThreadAffinitization; [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public MiscellaneousFilesWorkspace( IThreadingContext threadingContext, IVsEditorAdaptersFactoryService editorAdaptersFactoryService, IMetadataAsSourceFileService fileTrackingMetadataAsSourceService, VisualStudioWorkspace visualStudioWorkspace, SVsServiceProvider serviceProvider) : base(visualStudioWorkspace.Services.HostServices, WorkspaceKind.MiscellaneousFiles) { _foregroundThreadAffinitization = new ForegroundThreadAffinitizedObject(threadingContext, assertIsForeground: false); _fileTrackingMetadataAsSourceService = fileTrackingMetadataAsSourceService; _lazyTextManager = new Lazy<IVsTextManager>(() => { _foregroundThreadAffinitization.AssertIsForeground(); return (IVsTextManager)serviceProvider.GetService(typeof(SVsTextManager)); }); var runningDocumentTable = (IVsRunningDocumentTable)serviceProvider.GetService(typeof(SVsRunningDocumentTable)); _runningDocumentTableEventTracker = new RunningDocumentTableEventTracker(threadingContext, editorAdaptersFactoryService, runningDocumentTable, this); _metadataReferences = ImmutableArray.CreateRange(CreateMetadataReferences()); } void IRunningDocumentTableEventListener.OnOpenDocument(string moniker, ITextBuffer textBuffer, IVsHierarchy _, IVsWindowFrame __) => TrackOpenedDocument(moniker, textBuffer); void IRunningDocumentTableEventListener.OnCloseDocument(string moniker) => TryUntrackClosingDocument(moniker); /// <summary> /// File hierarchy events are not relevant to the misc workspace. /// </summary> void IRunningDocumentTableEventListener.OnRefreshDocumentContext(string moniker, IVsHierarchy hierarchy) { } void IRunningDocumentTableEventListener.OnRenameDocument(string newMoniker, string oldMoniker, ITextBuffer buffer) { // We want to consider this file to be added in one of two situations: // // 1) the old file already was a misc file, at which point we might just be doing a rename from // one name to another with the same extension // 2) the old file was a different extension that we weren't tracking, which may have now changed if (TryUntrackClosingDocument(oldMoniker) || TryGetLanguageInformation(oldMoniker) == null) { // Add the new one, if appropriate. TrackOpenedDocument(newMoniker, buffer); } } public void RegisterLanguage(Guid languageGuid, string languageName, string scriptExtension) => _languageInformationByLanguageGuid.Add(languageGuid, new LanguageInformation(languageName, scriptExtension)); private LanguageInformation TryGetLanguageInformation(string filename) { LanguageInformation languageInformation = null; if (ErrorHandler.Succeeded(_lazyTextManager.Value.MapFilenameToLanguageSID(filename, out var fileLanguageGuid))) { _languageInformationByLanguageGuid.TryGetValue(fileLanguageGuid, out languageInformation); } return languageInformation; } private IEnumerable<MetadataReference> CreateMetadataReferences() { var manager = this.Services.GetService<VisualStudioMetadataReferenceManager>(); var searchPaths = VisualStudioMetadataReferenceManager.GetReferencePaths(); return from fileName in new[] { "mscorlib.dll", "System.dll", "System.Core.dll" } let fullPath = FileUtilities.ResolveRelativePath(fileName, basePath: null, baseDirectory: null, searchPaths: searchPaths, fileExists: File.Exists) where fullPath != null select manager.CreateMetadataReferenceSnapshot(fullPath, MetadataReferenceProperties.Assembly); } private void TrackOpenedDocument(string moniker, ITextBuffer textBuffer) { _foregroundThreadAffinitization.AssertIsForeground(); var languageInformation = TryGetLanguageInformation(moniker); if (languageInformation == null) { // We can never put this document in a workspace, so just bail return; } // We don't want to realize the document here unless it's already initialized. Document initialization is watched in // OnAfterAttributeChangeEx and will retrigger this if it wasn't already done. if (!_monikerToWorkspaceRegistration.ContainsKey(moniker)) { var registration = Workspace.GetWorkspaceRegistration(textBuffer.AsTextContainer()); registration.WorkspaceChanged += Registration_WorkspaceChanged; _monikerToWorkspaceRegistration = _monikerToWorkspaceRegistration.Add(moniker, registration); if (!IsClaimedByAnotherWorkspace(registration)) { AttachToDocument(moniker, textBuffer); } } } private void Registration_WorkspaceChanged(object sender, EventArgs e) { // We may or may not be getting this notification from the foreground thread if another workspace // is raising events on a background. Let's send it back to the UI thread since we can't talk // to the RDT in the background thread. Since this is all asynchronous a bit more asynchrony is fine. if (!_foregroundThreadAffinitization.IsForeground()) { ScheduleTask(() => Registration_WorkspaceChanged(sender, e)); return; } _foregroundThreadAffinitization.AssertIsForeground(); var workspaceRegistration = (WorkspaceRegistration)sender; // Since WorkspaceChanged notifications may be asynchronous and happened on a different thread, // we might have already unsubscribed for this synchronously from the RDT while we were in the process of sending this // request back to the UI thread. if (!_monikerToWorkspaceRegistration.TryGetKey(workspaceRegistration, out var moniker)) { return; } // It's also theoretically possible that we are getting notified about a workspace change to a document that has // been simultaneously removed from the RDT but we haven't gotten the notification. In that case, also bail. if (!_runningDocumentTableEventTracker.IsFileOpen(moniker)) { return; } if (workspaceRegistration.Workspace == null) { if (_monikersToProjectIdAndContainer.TryGetValue(moniker, out var projectIdAndSourceTextContainer)) { // The workspace was taken from us and released and we have only asynchronously found out now. // We already have the file open in our workspace, but the global mapping of source text container // to the workspace that owns it needs to be updated once more. RegisterText(projectIdAndSourceTextContainer.textContainer); } else { // We should now try to claim this. The moniker we have here is the moniker after the rename if we're currently processing // a rename. It's possible in that case that this is being closed by the other workspace due to that rename. If the rename // is changing or removing the file extension, we wouldn't want to try attaching, which is why we have to re-check // the moniker. Once we observe the rename later in OnAfterAttributeChangeEx we'll completely disconnect. if (TryGetLanguageInformation(moniker) != null) { if (_runningDocumentTableEventTracker.TryGetBufferFromMoniker(moniker, out var buffer)) { AttachToDocument(moniker, buffer); } } } } else if (IsClaimedByAnotherWorkspace(workspaceRegistration)) { // It's now claimed by another workspace, so we should unclaim it if (_monikersToProjectIdAndContainer.ContainsKey(moniker)) { DetachFromDocument(moniker); } } } /// <summary> /// Stops tracking a document in the RDT for whether we should attach to it. /// </summary> /// <returns>true if we were previously tracking it.</returns> private bool TryUntrackClosingDocument(string moniker) { _foregroundThreadAffinitization.AssertIsForeground(); var unregisteredRegistration = false; // Remove our registration changing handler before we call DetachFromDocument. Otherwise, calling DetachFromDocument // causes us to set the workspace to null, which we then respond to as an indication that we should // attach again. if (_monikerToWorkspaceRegistration.TryGetValue(moniker, out var registration)) { registration.WorkspaceChanged -= Registration_WorkspaceChanged; _monikerToWorkspaceRegistration = _monikerToWorkspaceRegistration.RemoveKey(moniker); unregisteredRegistration = true; } DetachFromDocument(moniker); return unregisteredRegistration; } private bool IsClaimedByAnotherWorkspace(WorkspaceRegistration registration) { // Currently, we are also responsible for pushing documents to the metadata as source workspace, // so we count that here as well return registration.Workspace != null && registration.Workspace.Kind != WorkspaceKind.MetadataAsSource && registration.Workspace.Kind != WorkspaceKind.MiscellaneousFiles; } private void AttachToDocument(string moniker, ITextBuffer textBuffer) { _foregroundThreadAffinitization.AssertIsForeground(); if (_fileTrackingMetadataAsSourceService.TryAddDocumentToWorkspace(moniker, textBuffer.AsTextContainer())) { // We already added it, so we will keep it excluded from the misc files workspace return; } var projectInfo = CreateProjectInfoForDocument(moniker); OnProjectAdded(projectInfo); var sourceTextContainer = textBuffer.AsTextContainer(); OnDocumentOpened(projectInfo.Documents.Single().Id, sourceTextContainer); _monikersToProjectIdAndContainer.Add(moniker, (projectInfo.Id, sourceTextContainer)); } /// <summary> /// Creates the <see cref="ProjectInfo"/> that can be added to the workspace for a newly opened document. /// </summary> private ProjectInfo CreateProjectInfoForDocument(string filePath) { // This should always succeed since we only got here if we already confirmed the moniker is acceptable var languageInformation = TryGetLanguageInformation(filePath); Contract.ThrowIfNull(languageInformation); var fileExtension = PathUtilities.GetExtension(filePath); var languageServices = Services.GetLanguageServices(languageInformation.LanguageName); var compilationOptions = languageServices.GetService<ICompilationFactoryService>()?.GetDefaultCompilationOptions(); // Use latest language version which is more permissive, as we cannot find out language version of the project which the file belongs to // https://devdiv.visualstudio.com/DevDiv/_workitems/edit/575761 var parseOptions = languageServices.GetService<ISyntaxTreeFactoryService>()?.GetDefaultParseOptionsWithLatestLanguageVersion(); if (parseOptions != null && compilationOptions != null && fileExtension == languageInformation.ScriptExtension) { parseOptions = parseOptions.WithKind(SourceCodeKind.Script); compilationOptions = GetCompilationOptionsWithScriptReferenceResolvers(compilationOptions, filePath); } var projectId = ProjectId.CreateNewId(debugName: "Miscellaneous Files Project for " + filePath); var documentId = DocumentId.CreateNewId(projectId, debugName: filePath); var sourceCodeKind = GetSourceCodeKind(parseOptions, fileExtension, languageInformation); var documentInfo = DocumentInfo.Create( documentId, filePath, sourceCodeKind: sourceCodeKind, loader: new FileTextLoader(filePath, defaultEncoding: null), filePath: filePath); // The assembly name must be unique for each collection of loose files. Since the name doesn't matter // a random GUID can be used. var assemblyName = Guid.NewGuid().ToString("N"); var projectInfo = ProjectInfo.Create( projectId, VersionStamp.Create(), name: ServicesVSResources.Miscellaneous_Files, assemblyName, languageInformation.LanguageName, compilationOptions: compilationOptions, parseOptions: parseOptions, documents: SpecializedCollections.SingletonEnumerable(documentInfo), metadataReferences: _metadataReferences); // Miscellaneous files projects are never fully loaded since, by definition, it won't know // what the full set of information is except when the file is script code. return projectInfo.WithHasAllInformation(hasAllInformation: sourceCodeKind == SourceCodeKind.Script); } // Do not inline this to avoid loading Microsoft.CodeAnalysis.Scripting unless a script file is opened in the workspace. [MethodImpl(MethodImplOptions.NoInlining)] private CompilationOptions GetCompilationOptionsWithScriptReferenceResolvers(CompilationOptions compilationOptions, string filePath) { var metadataService = Services.GetService<IMetadataService>(); var baseDirectory = PathUtilities.GetDirectoryName(filePath); // TODO (https://github.com/dotnet/roslyn/issues/5325, https://github.com/dotnet/roslyn/issues/13886): // - Need to have a way to specify these somewhere in VS options. // - Add default namespace imports, default metadata references to match csi.rsp // - Add default script globals available in 'csi goo.csx' environment: CommandLineScriptGlobals var referenceResolver = RuntimeMetadataReferenceResolver.CreateCurrentPlatformResolver( searchPaths: ImmutableArray.Create(RuntimeEnvironment.GetRuntimeDirectory()), baseDirectory: baseDirectory, fileReferenceProvider: (path, properties) => metadataService.GetReference(path, properties)); return compilationOptions .WithMetadataReferenceResolver(referenceResolver) .WithSourceReferenceResolver(new SourceFileResolver(searchPaths: ImmutableArray<string>.Empty, baseDirectory)); } private static SourceCodeKind GetSourceCodeKind( ParseOptions parseOptionsOpt, string fileExtension, LanguageInformation languageInformation) { if (parseOptionsOpt != null) { return parseOptionsOpt.Kind; } return string.Equals(fileExtension, languageInformation.ScriptExtension, StringComparison.OrdinalIgnoreCase) ? SourceCodeKind.Script : SourceCodeKind.Regular; } private void DetachFromDocument(string moniker) { _foregroundThreadAffinitization.AssertIsForeground(); if (_fileTrackingMetadataAsSourceService.TryRemoveDocumentFromWorkspace(moniker)) { return; } if (_monikersToProjectIdAndContainer.TryGetValue(moniker, out var projectIdAndContainer)) { var document = this.CurrentSolution.GetProject(projectIdAndContainer.projectId).Documents.Single(); // We must close the document prior to deleting the project OnDocumentClosed(document.Id, new FileTextLoader(document.FilePath, defaultEncoding: null)); OnProjectRemoved(document.Project.Id); _monikersToProjectIdAndContainer.Remove(moniker); return; } } public override bool CanApplyChange(ApplyChangesKind feature) => feature == ApplyChangesKind.ChangeDocument; protected override void ApplyDocumentTextChanged(DocumentId documentId, SourceText newText) { foreach (var (projectId, textContainer) in _monikersToProjectIdAndContainer.Values) { if (projectId == documentId.ProjectId) { TextEditApplication.UpdateText(newText, textContainer.GetTextBuffer(), EditOptions.DefaultMinimalChange); break; } } } private class LanguageInformation { public LanguageInformation(string languageName, string scriptExtension) { this.LanguageName = languageName; this.ScriptExtension = scriptExtension; } public string LanguageName { get; } public string ScriptExtension { get; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Collections.Immutable; using System.ComponentModel.Composition; using System.IO; using System.Linq; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Editor.Shared.Utilities; using Microsoft.CodeAnalysis.Host; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.MetadataAsSource; using Microsoft.CodeAnalysis.Scripting; using Microsoft.CodeAnalysis.Scripting.Hosting; using Microsoft.CodeAnalysis.Text; using Microsoft.VisualStudio.Editor; using Microsoft.VisualStudio.Shell; using Microsoft.VisualStudio.Shell.Interop; using Microsoft.VisualStudio.Text; using Microsoft.VisualStudio.TextManager.Interop; using Roslyn.Utilities; namespace Microsoft.VisualStudio.LanguageServices.Implementation.ProjectSystem { [Export(typeof(MiscellaneousFilesWorkspace))] internal sealed partial class MiscellaneousFilesWorkspace : Workspace, IRunningDocumentTableEventListener { private readonly IMetadataAsSourceFileService _fileTrackingMetadataAsSourceService; private readonly Lazy<IVsTextManager> _lazyTextManager; private readonly RunningDocumentTableEventTracker _runningDocumentTableEventTracker; private readonly Dictionary<Guid, LanguageInformation> _languageInformationByLanguageGuid = new(); /// <summary> /// <see cref="WorkspaceRegistration"/> instances for all open buffers being tracked by by this object /// for possible inclusion into this workspace. /// </summary> private IBidirectionalMap<string, WorkspaceRegistration> _monikerToWorkspaceRegistration = BidirectionalMap<string, WorkspaceRegistration>.Empty; /// <summary> /// The mapping of all monikers in the RDT and the <see cref="ProjectId"/> of the project and <see cref="SourceTextContainer"/> of the open /// file we have created for that open buffer. An entry should only be in here if it's also already in <see cref="_monikerToWorkspaceRegistration"/>. /// </summary> private readonly Dictionary<string, (ProjectId projectId, SourceTextContainer textContainer)> _monikersToProjectIdAndContainer = new Dictionary<string, (ProjectId, SourceTextContainer)>(); private readonly ImmutableArray<MetadataReference> _metadataReferences; private readonly ForegroundThreadAffinitizedObject _foregroundThreadAffinitization; [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public MiscellaneousFilesWorkspace( IThreadingContext threadingContext, IVsEditorAdaptersFactoryService editorAdaptersFactoryService, IMetadataAsSourceFileService fileTrackingMetadataAsSourceService, VisualStudioWorkspace visualStudioWorkspace, SVsServiceProvider serviceProvider) : base(visualStudioWorkspace.Services.HostServices, WorkspaceKind.MiscellaneousFiles) { _foregroundThreadAffinitization = new ForegroundThreadAffinitizedObject(threadingContext, assertIsForeground: false); _fileTrackingMetadataAsSourceService = fileTrackingMetadataAsSourceService; _lazyTextManager = new Lazy<IVsTextManager>(() => { _foregroundThreadAffinitization.AssertIsForeground(); return (IVsTextManager)serviceProvider.GetService(typeof(SVsTextManager)); }); var runningDocumentTable = (IVsRunningDocumentTable)serviceProvider.GetService(typeof(SVsRunningDocumentTable)); _runningDocumentTableEventTracker = new RunningDocumentTableEventTracker(threadingContext, editorAdaptersFactoryService, runningDocumentTable, this); _metadataReferences = ImmutableArray.CreateRange(CreateMetadataReferences()); } void IRunningDocumentTableEventListener.OnOpenDocument(string moniker, ITextBuffer textBuffer, IVsHierarchy _, IVsWindowFrame __) => TrackOpenedDocument(moniker, textBuffer); void IRunningDocumentTableEventListener.OnCloseDocument(string moniker) => TryUntrackClosingDocument(moniker); /// <summary> /// File hierarchy events are not relevant to the misc workspace. /// </summary> void IRunningDocumentTableEventListener.OnRefreshDocumentContext(string moniker, IVsHierarchy hierarchy) { } void IRunningDocumentTableEventListener.OnRenameDocument(string newMoniker, string oldMoniker, ITextBuffer buffer) { // We want to consider this file to be added in one of two situations: // // 1) the old file already was a misc file, at which point we might just be doing a rename from // one name to another with the same extension // 2) the old file was a different extension that we weren't tracking, which may have now changed if (TryUntrackClosingDocument(oldMoniker) || TryGetLanguageInformation(oldMoniker) == null) { // Add the new one, if appropriate. TrackOpenedDocument(newMoniker, buffer); } } public void RegisterLanguage(Guid languageGuid, string languageName, string scriptExtension) => _languageInformationByLanguageGuid.Add(languageGuid, new LanguageInformation(languageName, scriptExtension)); private LanguageInformation TryGetLanguageInformation(string filename) { LanguageInformation languageInformation = null; if (ErrorHandler.Succeeded(_lazyTextManager.Value.MapFilenameToLanguageSID(filename, out var fileLanguageGuid))) { _languageInformationByLanguageGuid.TryGetValue(fileLanguageGuid, out languageInformation); } return languageInformation; } private IEnumerable<MetadataReference> CreateMetadataReferences() { var manager = this.Services.GetService<VisualStudioMetadataReferenceManager>(); var searchPaths = VisualStudioMetadataReferenceManager.GetReferencePaths(); return from fileName in new[] { "mscorlib.dll", "System.dll", "System.Core.dll" } let fullPath = FileUtilities.ResolveRelativePath(fileName, basePath: null, baseDirectory: null, searchPaths: searchPaths, fileExists: File.Exists) where fullPath != null select manager.CreateMetadataReferenceSnapshot(fullPath, MetadataReferenceProperties.Assembly); } private void TrackOpenedDocument(string moniker, ITextBuffer textBuffer) { _foregroundThreadAffinitization.AssertIsForeground(); var languageInformation = TryGetLanguageInformation(moniker); if (languageInformation == null) { // We can never put this document in a workspace, so just bail return; } // We don't want to realize the document here unless it's already initialized. Document initialization is watched in // OnAfterAttributeChangeEx and will retrigger this if it wasn't already done. if (!_monikerToWorkspaceRegistration.ContainsKey(moniker)) { var registration = Workspace.GetWorkspaceRegistration(textBuffer.AsTextContainer()); registration.WorkspaceChanged += Registration_WorkspaceChanged; _monikerToWorkspaceRegistration = _monikerToWorkspaceRegistration.Add(moniker, registration); if (!IsClaimedByAnotherWorkspace(registration)) { AttachToDocument(moniker, textBuffer); } } } private void Registration_WorkspaceChanged(object sender, EventArgs e) { // We may or may not be getting this notification from the foreground thread if another workspace // is raising events on a background. Let's send it back to the UI thread since we can't talk // to the RDT in the background thread. Since this is all asynchronous a bit more asynchrony is fine. if (!_foregroundThreadAffinitization.IsForeground()) { ScheduleTask(() => Registration_WorkspaceChanged(sender, e)); return; } _foregroundThreadAffinitization.AssertIsForeground(); var workspaceRegistration = (WorkspaceRegistration)sender; // Since WorkspaceChanged notifications may be asynchronous and happened on a different thread, // we might have already unsubscribed for this synchronously from the RDT while we were in the process of sending this // request back to the UI thread. if (!_monikerToWorkspaceRegistration.TryGetKey(workspaceRegistration, out var moniker)) { return; } // It's also theoretically possible that we are getting notified about a workspace change to a document that has // been simultaneously removed from the RDT but we haven't gotten the notification. In that case, also bail. if (!_runningDocumentTableEventTracker.IsFileOpen(moniker)) { return; } if (workspaceRegistration.Workspace == null) { if (_monikersToProjectIdAndContainer.TryGetValue(moniker, out var projectIdAndSourceTextContainer)) { // The workspace was taken from us and released and we have only asynchronously found out now. // We already have the file open in our workspace, but the global mapping of source text container // to the workspace that owns it needs to be updated once more. RegisterText(projectIdAndSourceTextContainer.textContainer); } else { // We should now try to claim this. The moniker we have here is the moniker after the rename if we're currently processing // a rename. It's possible in that case that this is being closed by the other workspace due to that rename. If the rename // is changing or removing the file extension, we wouldn't want to try attaching, which is why we have to re-check // the moniker. Once we observe the rename later in OnAfterAttributeChangeEx we'll completely disconnect. if (TryGetLanguageInformation(moniker) != null) { if (_runningDocumentTableEventTracker.TryGetBufferFromMoniker(moniker, out var buffer)) { AttachToDocument(moniker, buffer); } } } } else if (IsClaimedByAnotherWorkspace(workspaceRegistration)) { // It's now claimed by another workspace, so we should unclaim it if (_monikersToProjectIdAndContainer.ContainsKey(moniker)) { DetachFromDocument(moniker); } } } /// <summary> /// Stops tracking a document in the RDT for whether we should attach to it. /// </summary> /// <returns>true if we were previously tracking it.</returns> private bool TryUntrackClosingDocument(string moniker) { _foregroundThreadAffinitization.AssertIsForeground(); var unregisteredRegistration = false; // Remove our registration changing handler before we call DetachFromDocument. Otherwise, calling DetachFromDocument // causes us to set the workspace to null, which we then respond to as an indication that we should // attach again. if (_monikerToWorkspaceRegistration.TryGetValue(moniker, out var registration)) { registration.WorkspaceChanged -= Registration_WorkspaceChanged; _monikerToWorkspaceRegistration = _monikerToWorkspaceRegistration.RemoveKey(moniker); unregisteredRegistration = true; } DetachFromDocument(moniker); return unregisteredRegistration; } private bool IsClaimedByAnotherWorkspace(WorkspaceRegistration registration) { // Currently, we are also responsible for pushing documents to the metadata as source workspace, // so we count that here as well return registration.Workspace != null && registration.Workspace.Kind != WorkspaceKind.MetadataAsSource && registration.Workspace.Kind != WorkspaceKind.MiscellaneousFiles; } private void AttachToDocument(string moniker, ITextBuffer textBuffer) { _foregroundThreadAffinitization.AssertIsForeground(); if (_fileTrackingMetadataAsSourceService.TryAddDocumentToWorkspace(moniker, textBuffer.AsTextContainer())) { // We already added it, so we will keep it excluded from the misc files workspace return; } var projectInfo = CreateProjectInfoForDocument(moniker); OnProjectAdded(projectInfo); var sourceTextContainer = textBuffer.AsTextContainer(); OnDocumentOpened(projectInfo.Documents.Single().Id, sourceTextContainer); _monikersToProjectIdAndContainer.Add(moniker, (projectInfo.Id, sourceTextContainer)); } /// <summary> /// Creates the <see cref="ProjectInfo"/> that can be added to the workspace for a newly opened document. /// </summary> private ProjectInfo CreateProjectInfoForDocument(string filePath) { // This should always succeed since we only got here if we already confirmed the moniker is acceptable var languageInformation = TryGetLanguageInformation(filePath); Contract.ThrowIfNull(languageInformation); var fileExtension = PathUtilities.GetExtension(filePath); var languageServices = Services.GetLanguageServices(languageInformation.LanguageName); var compilationOptions = languageServices.GetService<ICompilationFactoryService>()?.GetDefaultCompilationOptions(); // Use latest language version which is more permissive, as we cannot find out language version of the project which the file belongs to // https://devdiv.visualstudio.com/DevDiv/_workitems/edit/575761 var parseOptions = languageServices.GetService<ISyntaxTreeFactoryService>()?.GetDefaultParseOptionsWithLatestLanguageVersion(); if (parseOptions != null && compilationOptions != null && fileExtension == languageInformation.ScriptExtension) { parseOptions = parseOptions.WithKind(SourceCodeKind.Script); compilationOptions = GetCompilationOptionsWithScriptReferenceResolvers(compilationOptions, filePath); } var projectId = ProjectId.CreateNewId(debugName: "Miscellaneous Files Project for " + filePath); var documentId = DocumentId.CreateNewId(projectId, debugName: filePath); var sourceCodeKind = GetSourceCodeKind(parseOptions, fileExtension, languageInformation); var documentInfo = DocumentInfo.Create( documentId, filePath, sourceCodeKind: sourceCodeKind, loader: new FileTextLoader(filePath, defaultEncoding: null), filePath: filePath); // The assembly name must be unique for each collection of loose files. Since the name doesn't matter // a random GUID can be used. var assemblyName = Guid.NewGuid().ToString("N"); var projectInfo = ProjectInfo.Create( projectId, VersionStamp.Create(), name: ServicesVSResources.Miscellaneous_Files, assemblyName, languageInformation.LanguageName, compilationOptions: compilationOptions, parseOptions: parseOptions, documents: SpecializedCollections.SingletonEnumerable(documentInfo), metadataReferences: _metadataReferences); // Miscellaneous files projects are never fully loaded since, by definition, it won't know // what the full set of information is except when the file is script code. return projectInfo.WithHasAllInformation(hasAllInformation: sourceCodeKind == SourceCodeKind.Script); } // Do not inline this to avoid loading Microsoft.CodeAnalysis.Scripting unless a script file is opened in the workspace. [MethodImpl(MethodImplOptions.NoInlining)] private CompilationOptions GetCompilationOptionsWithScriptReferenceResolvers(CompilationOptions compilationOptions, string filePath) { var metadataService = Services.GetService<IMetadataService>(); var baseDirectory = PathUtilities.GetDirectoryName(filePath); // TODO (https://github.com/dotnet/roslyn/issues/5325, https://github.com/dotnet/roslyn/issues/13886): // - Need to have a way to specify these somewhere in VS options. // - Add default namespace imports, default metadata references to match csi.rsp // - Add default script globals available in 'csi goo.csx' environment: CommandLineScriptGlobals var referenceResolver = RuntimeMetadataReferenceResolver.CreateCurrentPlatformResolver( searchPaths: ImmutableArray.Create(RuntimeEnvironment.GetRuntimeDirectory()), baseDirectory: baseDirectory, fileReferenceProvider: (path, properties) => metadataService.GetReference(path, properties)); return compilationOptions .WithMetadataReferenceResolver(referenceResolver) .WithSourceReferenceResolver(new SourceFileResolver(searchPaths: ImmutableArray<string>.Empty, baseDirectory)); } private static SourceCodeKind GetSourceCodeKind( ParseOptions parseOptionsOpt, string fileExtension, LanguageInformation languageInformation) { if (parseOptionsOpt != null) { return parseOptionsOpt.Kind; } return string.Equals(fileExtension, languageInformation.ScriptExtension, StringComparison.OrdinalIgnoreCase) ? SourceCodeKind.Script : SourceCodeKind.Regular; } private void DetachFromDocument(string moniker) { _foregroundThreadAffinitization.AssertIsForeground(); if (_fileTrackingMetadataAsSourceService.TryRemoveDocumentFromWorkspace(moniker)) { return; } if (_monikersToProjectIdAndContainer.TryGetValue(moniker, out var projectIdAndContainer)) { var document = this.CurrentSolution.GetProject(projectIdAndContainer.projectId).Documents.Single(); // We must close the document prior to deleting the project OnDocumentClosed(document.Id, new FileTextLoader(document.FilePath, defaultEncoding: null)); OnProjectRemoved(document.Project.Id); _monikersToProjectIdAndContainer.Remove(moniker); return; } } public override bool CanApplyChange(ApplyChangesKind feature) => feature == ApplyChangesKind.ChangeDocument; protected override void ApplyDocumentTextChanged(DocumentId documentId, SourceText newText) { foreach (var (projectId, textContainer) in _monikersToProjectIdAndContainer.Values) { if (projectId == documentId.ProjectId) { TextEditApplication.UpdateText(newText, textContainer.GetTextBuffer(), EditOptions.DefaultMinimalChange); break; } } } private class LanguageInformation { public LanguageInformation(string languageName, string scriptExtension) { this.LanguageName = languageName; this.ScriptExtension = scriptExtension; } public string LanguageName { get; } public string ScriptExtension { get; } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/Core/Portable/Emit/EditAndContinue/EncHoistedLocalMetadata.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Diagnostics; namespace Microsoft.CodeAnalysis.Emit { internal struct EncHoistedLocalMetadata { public readonly string Name; public readonly Cci.ITypeReference Type; public readonly SynthesizedLocalKind SynthesizedKind; public EncHoistedLocalMetadata(string name, Cci.ITypeReference type, SynthesizedLocalKind synthesizedKind) { Debug.Assert(name != null); Debug.Assert(type != null); Debug.Assert(synthesizedKind.IsLongLived()); this.Name = name; this.Type = type; this.SynthesizedKind = synthesizedKind; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Diagnostics; namespace Microsoft.CodeAnalysis.Emit { internal struct EncHoistedLocalMetadata { public readonly string Name; public readonly Cci.ITypeReference Type; public readonly SynthesizedLocalKind SynthesizedKind; public EncHoistedLocalMetadata(string name, Cci.ITypeReference type, SynthesizedLocalKind synthesizedKind) { Debug.Assert(name != null); Debug.Assert(type != null); Debug.Assert(synthesizedKind.IsLongLived()); this.Name = name; this.Type = type; this.SynthesizedKind = synthesizedKind; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/VisualStudio/Xaml/Impl/Features/Definitions/XamlDefinition.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Microsoft.VisualStudio.LanguageServices.Xaml.Features.Definitions { public abstract class XamlDefinition { } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Microsoft.VisualStudio.LanguageServices.Xaml.Features.Definitions { public abstract class XamlDefinition { } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Test/Diagnostics/DiagnosticOnly_TPLListener.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Diagnostics.Tracing; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Internal.Log; namespace Roslyn.Hosting.Diagnostics { /// <summary> /// This listens to TPL task events. /// </summary> public static class DiagnosticOnly_TPLListener { private static TPLListener s_listener = null; public static void Install() { // make sure TPL installs its own event source Task.Factory.StartNew(() => { }, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default); var local = new TPLListener(); Interlocked.CompareExchange(ref s_listener, local, null); } public static void Uninstall() { TPLListener local = null; Interlocked.Exchange(ref local, s_listener); if (local != null) { local.Dispose(); } } private sealed class TPLListener : EventListener { private const int EventIdTaskScheduled = 7; private const int EventIdTaskStarted = 8; private const int EventIdTaskCompleted = 9; public TPLListener() { var tplEventSource = EventSource.GetSources().First(e => e.Name == "System.Threading.Tasks.TplEventSource"); EnableEvents(tplEventSource, EventLevel.LogAlways); } /// <summary> /// Pass TPL events to our logger. /// </summary> protected override void OnEventWritten(EventWrittenEventArgs eventData) { // for now, we just log what TPL already publish, later we actually want to manipulate the information // and publish that information switch (eventData.EventId) { case EventIdTaskScheduled: Logger.Log(FunctionId.TPLTask_TaskScheduled, string.Empty); break; case EventIdTaskStarted: Logger.Log(FunctionId.TPLTask_TaskStarted, string.Empty); break; case EventIdTaskCompleted: Logger.Log(FunctionId.TPLTask_TaskCompleted, string.Empty); break; default: // Ignore the rest break; } } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Diagnostics.Tracing; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Internal.Log; namespace Roslyn.Hosting.Diagnostics { /// <summary> /// This listens to TPL task events. /// </summary> public static class DiagnosticOnly_TPLListener { private static TPLListener s_listener = null; public static void Install() { // make sure TPL installs its own event source Task.Factory.StartNew(() => { }, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default); var local = new TPLListener(); Interlocked.CompareExchange(ref s_listener, local, null); } public static void Uninstall() { TPLListener local = null; Interlocked.Exchange(ref local, s_listener); if (local != null) { local.Dispose(); } } private sealed class TPLListener : EventListener { private const int EventIdTaskScheduled = 7; private const int EventIdTaskStarted = 8; private const int EventIdTaskCompleted = 9; public TPLListener() { var tplEventSource = EventSource.GetSources().First(e => e.Name == "System.Threading.Tasks.TplEventSource"); EnableEvents(tplEventSource, EventLevel.LogAlways); } /// <summary> /// Pass TPL events to our logger. /// </summary> protected override void OnEventWritten(EventWrittenEventArgs eventData) { // for now, we just log what TPL already publish, later we actually want to manipulate the information // and publish that information switch (eventData.EventId) { case EventIdTaskScheduled: Logger.Log(FunctionId.TPLTask_TaskScheduled, string.Empty); break; case EventIdTaskStarted: Logger.Log(FunctionId.TPLTask_TaskStarted, string.Empty); break; case EventIdTaskCompleted: Logger.Log(FunctionId.TPLTask_TaskCompleted, string.Empty); break; default: // Ignore the rest break; } } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/VisualStudio/CSharp/Test/Interactive/Commands/ResetInteractiveTests.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable extern alias InteractiveHost; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Editor.Host; using Microsoft.CodeAnalysis.Editor.UnitTests.Workspaces; using Microsoft.CodeAnalysis.Test.Utilities; using Microsoft.VisualStudio.Text.Editor; using Microsoft.VisualStudio.Text.Editor.OptionsExtensionMethods; using Roslyn.Test.Utilities; using Xunit; using InteractiveHost::Microsoft.CodeAnalysis.Interactive; using Microsoft.CodeAnalysis.Editor.UnitTests; using Microsoft.VisualStudio.InteractiveWindow; using Microsoft.VisualStudio.Utilities; namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.Interactive.Commands { [UseExportProvider] public class ResetInteractiveTests { private string WorkspaceXmlStr => @"<Workspace> <Project Language=""Visual Basic"" AssemblyName=""ResetInteractiveVisualBasicSubproject"" CommonReferences=""true""> <Document FilePath=""VisualBasicDocument""></Document> </Project> <Project Language=""C#"" AssemblyName=""ResetInteractiveTestsAssembly"" CommonReferences=""true""> <ProjectReference>ResetInteractiveVisualBasicSubproject</ProjectReference> <Document FilePath=""ResetInteractiveTestsDocument""> namespace ResetInteractiveTestsDocument { class TestClass { } }</Document> </Project> </Workspace>"; [WpfFact] [Trait(Traits.Feature, Traits.Features.Interactive)] public async Task TestResetREPLWithProjectContext() { using var workspace = TestWorkspace.Create(WorkspaceXmlStr, composition: EditorTestCompositions.InteractiveWindow); var project = workspace.CurrentSolution.Projects.FirstOrDefault(p => p.AssemblyName == "ResetInteractiveTestsAssembly"); var document = project.Documents.FirstOrDefault(d => d.FilePath == "ResetInteractiveTestsDocument"); var replReferenceCommands = GetProjectReferences(workspace, project).Select(r => CreateReplReferenceCommand(r)); Assert.True(replReferenceCommands.Any(rc => rc.EndsWith(@"ResetInteractiveTestsAssembly.dll"""))); Assert.True(replReferenceCommands.Any(rc => rc.EndsWith(@"ResetInteractiveVisualBasicSubproject.dll"""))); var expectedReferences = replReferenceCommands.ToList(); var expectedUsings = new List<string> { @"using ""System"";", @"using ""ResetInteractiveTestsDocument"";" }; await AssertResetInteractiveAsync(workspace, project, buildSucceeds: true, expectedReferences: expectedReferences, expectedUsings: expectedUsings); // Test that no submissions are executed if the build fails. await AssertResetInteractiveAsync(workspace, project, buildSucceeds: false, expectedReferences: new List<string>()); } private async Task AssertResetInteractiveAsync( TestWorkspace workspace, Project project, bool buildSucceeds, List<string> expectedReferences = null, List<string> expectedUsings = null) { expectedReferences ??= new List<string>(); expectedUsings ??= new List<string>(); var testHost = new InteractiveWindowTestHost(workspace.ExportProvider.GetExportedValue<IInteractiveWindowFactoryService>()); var executedSubmissionCalls = new List<string>(); void executeSubmission(object _, string code) => executedSubmissionCalls.Add(code); testHost.Evaluator.OnExecute += executeSubmission; var uiThreadOperationExecutor = workspace.GetService<IUIThreadOperationExecutor>(); var editorOptionsFactoryService = workspace.GetService<IEditorOptionsFactoryService>(); var editorOptions = editorOptionsFactoryService.GetOptions(testHost.Window.CurrentLanguageBuffer); var newLineCharacter = editorOptions.GetNewLineCharacter(); var resetInteractive = new TestResetInteractive( uiThreadOperationExecutor, editorOptionsFactoryService, CreateReplReferenceCommand, CreateImport, buildSucceeds: buildSucceeds) { References = ImmutableArray.CreateRange(GetProjectReferences(workspace, project)), ReferenceSearchPaths = ImmutableArray.Create("rsp1", "rsp2"), SourceSearchPaths = ImmutableArray.Create("ssp1", "ssp2"), ProjectNamespaces = ImmutableArray.Create("System", "ResetInteractiveTestsDocument", "VisualBasicResetInteractiveTestsDocument"), NamespacesToImport = ImmutableArray.Create("System", "ResetInteractiveTestsDocument"), ProjectDirectory = "pj", Platform = InteractiveHostPlatform.Desktop64, }; await resetInteractive.ExecuteAsync(testHost.Window, "Interactive C#"); // Validate that the project was rebuilt. Assert.Equal(1, resetInteractive.BuildProjectCount); Assert.Equal(0, resetInteractive.CancelBuildProjectCount); if (buildSucceeds) { Assert.Equal(InteractiveHostPlatform.Desktop64, testHost.Evaluator.ResetOptions.Platform); } else { Assert.Null(testHost.Evaluator.ResetOptions); } var expectedSubmissions = new List<string>(); if (expectedReferences.Any()) { expectedSubmissions.AddRange(expectedReferences.Select(r => r + newLineCharacter)); } if (expectedUsings.Any()) { expectedSubmissions.Add(string.Join(newLineCharacter, expectedUsings) + newLineCharacter); } AssertEx.Equal(expectedSubmissions, executedSubmissionCalls); testHost.Evaluator.OnExecute -= executeSubmission; } /// <summary> /// Simulates getting all project references. /// </summary> /// <param name="workspace">Workspace with the solution.</param> /// <param name="project">A project that should be built.</param> /// <returns>A list of paths that should be referenced.</returns> private IEnumerable<string> GetProjectReferences(TestWorkspace workspace, Project project) { var metadataReferences = project.MetadataReferences.Select(r => r.Display); var projectReferences = project.ProjectReferences.SelectMany(p => GetProjectReferences( workspace, workspace.CurrentSolution.GetProject(p.ProjectId))); var outputReference = new string[] { project.OutputFilePath }; return metadataReferences.Union(projectReferences).Concat(outputReference); } private string CreateReplReferenceCommand(string referenceName) { return $@"#r ""{referenceName}"""; } private string CreateImport(string importName) { return $@"using ""{importName}"";"; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable extern alias InteractiveHost; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Editor.Host; using Microsoft.CodeAnalysis.Editor.UnitTests.Workspaces; using Microsoft.CodeAnalysis.Test.Utilities; using Microsoft.VisualStudio.Text.Editor; using Microsoft.VisualStudio.Text.Editor.OptionsExtensionMethods; using Roslyn.Test.Utilities; using Xunit; using InteractiveHost::Microsoft.CodeAnalysis.Interactive; using Microsoft.CodeAnalysis.Editor.UnitTests; using Microsoft.VisualStudio.InteractiveWindow; using Microsoft.VisualStudio.Utilities; namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.Interactive.Commands { [UseExportProvider] public class ResetInteractiveTests { private string WorkspaceXmlStr => @"<Workspace> <Project Language=""Visual Basic"" AssemblyName=""ResetInteractiveVisualBasicSubproject"" CommonReferences=""true""> <Document FilePath=""VisualBasicDocument""></Document> </Project> <Project Language=""C#"" AssemblyName=""ResetInteractiveTestsAssembly"" CommonReferences=""true""> <ProjectReference>ResetInteractiveVisualBasicSubproject</ProjectReference> <Document FilePath=""ResetInteractiveTestsDocument""> namespace ResetInteractiveTestsDocument { class TestClass { } }</Document> </Project> </Workspace>"; [WpfFact] [Trait(Traits.Feature, Traits.Features.Interactive)] public async Task TestResetREPLWithProjectContext() { using var workspace = TestWorkspace.Create(WorkspaceXmlStr, composition: EditorTestCompositions.InteractiveWindow); var project = workspace.CurrentSolution.Projects.FirstOrDefault(p => p.AssemblyName == "ResetInteractiveTestsAssembly"); var document = project.Documents.FirstOrDefault(d => d.FilePath == "ResetInteractiveTestsDocument"); var replReferenceCommands = GetProjectReferences(workspace, project).Select(r => CreateReplReferenceCommand(r)); Assert.True(replReferenceCommands.Any(rc => rc.EndsWith(@"ResetInteractiveTestsAssembly.dll"""))); Assert.True(replReferenceCommands.Any(rc => rc.EndsWith(@"ResetInteractiveVisualBasicSubproject.dll"""))); var expectedReferences = replReferenceCommands.ToList(); var expectedUsings = new List<string> { @"using ""System"";", @"using ""ResetInteractiveTestsDocument"";" }; await AssertResetInteractiveAsync(workspace, project, buildSucceeds: true, expectedReferences: expectedReferences, expectedUsings: expectedUsings); // Test that no submissions are executed if the build fails. await AssertResetInteractiveAsync(workspace, project, buildSucceeds: false, expectedReferences: new List<string>()); } private async Task AssertResetInteractiveAsync( TestWorkspace workspace, Project project, bool buildSucceeds, List<string> expectedReferences = null, List<string> expectedUsings = null) { expectedReferences ??= new List<string>(); expectedUsings ??= new List<string>(); var testHost = new InteractiveWindowTestHost(workspace.ExportProvider.GetExportedValue<IInteractiveWindowFactoryService>()); var executedSubmissionCalls = new List<string>(); void executeSubmission(object _, string code) => executedSubmissionCalls.Add(code); testHost.Evaluator.OnExecute += executeSubmission; var uiThreadOperationExecutor = workspace.GetService<IUIThreadOperationExecutor>(); var editorOptionsFactoryService = workspace.GetService<IEditorOptionsFactoryService>(); var editorOptions = editorOptionsFactoryService.GetOptions(testHost.Window.CurrentLanguageBuffer); var newLineCharacter = editorOptions.GetNewLineCharacter(); var resetInteractive = new TestResetInteractive( uiThreadOperationExecutor, editorOptionsFactoryService, CreateReplReferenceCommand, CreateImport, buildSucceeds: buildSucceeds) { References = ImmutableArray.CreateRange(GetProjectReferences(workspace, project)), ReferenceSearchPaths = ImmutableArray.Create("rsp1", "rsp2"), SourceSearchPaths = ImmutableArray.Create("ssp1", "ssp2"), ProjectNamespaces = ImmutableArray.Create("System", "ResetInteractiveTestsDocument", "VisualBasicResetInteractiveTestsDocument"), NamespacesToImport = ImmutableArray.Create("System", "ResetInteractiveTestsDocument"), ProjectDirectory = "pj", Platform = InteractiveHostPlatform.Desktop64, }; await resetInteractive.ExecuteAsync(testHost.Window, "Interactive C#"); // Validate that the project was rebuilt. Assert.Equal(1, resetInteractive.BuildProjectCount); Assert.Equal(0, resetInteractive.CancelBuildProjectCount); if (buildSucceeds) { Assert.Equal(InteractiveHostPlatform.Desktop64, testHost.Evaluator.ResetOptions.Platform); } else { Assert.Null(testHost.Evaluator.ResetOptions); } var expectedSubmissions = new List<string>(); if (expectedReferences.Any()) { expectedSubmissions.AddRange(expectedReferences.Select(r => r + newLineCharacter)); } if (expectedUsings.Any()) { expectedSubmissions.Add(string.Join(newLineCharacter, expectedUsings) + newLineCharacter); } AssertEx.Equal(expectedSubmissions, executedSubmissionCalls); testHost.Evaluator.OnExecute -= executeSubmission; } /// <summary> /// Simulates getting all project references. /// </summary> /// <param name="workspace">Workspace with the solution.</param> /// <param name="project">A project that should be built.</param> /// <returns>A list of paths that should be referenced.</returns> private IEnumerable<string> GetProjectReferences(TestWorkspace workspace, Project project) { var metadataReferences = project.MetadataReferences.Select(r => r.Display); var projectReferences = project.ProjectReferences.SelectMany(p => GetProjectReferences( workspace, workspace.CurrentSolution.GetProject(p.ProjectId))); var outputReference = new string[] { project.OutputFilePath }; return metadataReferences.Union(projectReferences).Concat(outputReference); } private string CreateReplReferenceCommand(string referenceName) { return $@"#r ""{referenceName}"""; } private string CreateImport(string importName) { return $@"using ""{importName}"";"; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/CSharp/Portable/ReplaceDocCommentTextWithTag/CSharpReplaceDocCommentTextWithTagCodeRefactoringProvider.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Immutable; using System.Composition; using System.Diagnostics.CodeAnalysis; using Microsoft.CodeAnalysis.CodeRefactorings; using Microsoft.CodeAnalysis.ReplaceDocCommentTextWithTag; namespace Microsoft.CodeAnalysis.CSharp.ReplaceDocCommentTextWithTag { [ExportCodeRefactoringProvider(LanguageNames.CSharp, Name = PredefinedCodeRefactoringProviderNames.ReplaceDocCommentTextWithTag), Shared] internal class CSharpReplaceDocCommentTextWithTagCodeRefactoringProvider : AbstractReplaceDocCommentTextWithTagCodeRefactoringProvider { private static readonly ImmutableHashSet<string> s_triggerKeywords = ImmutableHashSet.Create( SyntaxFacts.GetText(SyntaxKind.NullKeyword), SyntaxFacts.GetText(SyntaxKind.StaticKeyword), SyntaxFacts.GetText(SyntaxKind.VirtualKeyword), SyntaxFacts.GetText(SyntaxKind.TrueKeyword), SyntaxFacts.GetText(SyntaxKind.FalseKeyword), SyntaxFacts.GetText(SyntaxKind.AbstractKeyword), SyntaxFacts.GetText(SyntaxKind.SealedKeyword), SyntaxFacts.GetText(SyntaxKind.AsyncKeyword), SyntaxFacts.GetText(SyntaxKind.AwaitKeyword), SyntaxFacts.GetText(SyntaxKind.BaseKeyword), SyntaxFacts.GetText(SyntaxKind.ThisKeyword)); [ImportingConstructor] [SuppressMessage("RoslynDiagnosticsReliability", "RS0033:Importing constructor should be [Obsolete]", Justification = "Used in test code: https://github.com/dotnet/roslyn/issues/42814")] public CSharpReplaceDocCommentTextWithTagCodeRefactoringProvider() { } protected override bool IsXmlTextToken(SyntaxToken token) => token.Kind() == SyntaxKind.XmlTextLiteralToken || token.Kind() == SyntaxKind.XmlTextLiteralNewLineToken; protected override bool IsInXMLAttribute(SyntaxToken token) { return (token.Parent.Kind() == SyntaxKind.XmlCrefAttribute || token.Parent.Kind() == SyntaxKind.XmlNameAttribute || token.Parent.Kind() == SyntaxKind.XmlTextAttribute); } protected override bool IsKeyword(string text) => s_triggerKeywords.Contains(text); protected override SyntaxNode ParseExpression(string text) => SyntaxFactory.ParseExpression(text); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Immutable; using System.Composition; using System.Diagnostics.CodeAnalysis; using Microsoft.CodeAnalysis.CodeRefactorings; using Microsoft.CodeAnalysis.ReplaceDocCommentTextWithTag; namespace Microsoft.CodeAnalysis.CSharp.ReplaceDocCommentTextWithTag { [ExportCodeRefactoringProvider(LanguageNames.CSharp, Name = PredefinedCodeRefactoringProviderNames.ReplaceDocCommentTextWithTag), Shared] internal class CSharpReplaceDocCommentTextWithTagCodeRefactoringProvider : AbstractReplaceDocCommentTextWithTagCodeRefactoringProvider { private static readonly ImmutableHashSet<string> s_triggerKeywords = ImmutableHashSet.Create( SyntaxFacts.GetText(SyntaxKind.NullKeyword), SyntaxFacts.GetText(SyntaxKind.StaticKeyword), SyntaxFacts.GetText(SyntaxKind.VirtualKeyword), SyntaxFacts.GetText(SyntaxKind.TrueKeyword), SyntaxFacts.GetText(SyntaxKind.FalseKeyword), SyntaxFacts.GetText(SyntaxKind.AbstractKeyword), SyntaxFacts.GetText(SyntaxKind.SealedKeyword), SyntaxFacts.GetText(SyntaxKind.AsyncKeyword), SyntaxFacts.GetText(SyntaxKind.AwaitKeyword), SyntaxFacts.GetText(SyntaxKind.BaseKeyword), SyntaxFacts.GetText(SyntaxKind.ThisKeyword)); [ImportingConstructor] [SuppressMessage("RoslynDiagnosticsReliability", "RS0033:Importing constructor should be [Obsolete]", Justification = "Used in test code: https://github.com/dotnet/roslyn/issues/42814")] public CSharpReplaceDocCommentTextWithTagCodeRefactoringProvider() { } protected override bool IsXmlTextToken(SyntaxToken token) => token.Kind() == SyntaxKind.XmlTextLiteralToken || token.Kind() == SyntaxKind.XmlTextLiteralNewLineToken; protected override bool IsInXMLAttribute(SyntaxToken token) { return (token.Parent.Kind() == SyntaxKind.XmlCrefAttribute || token.Parent.Kind() == SyntaxKind.XmlNameAttribute || token.Parent.Kind() == SyntaxKind.XmlTextAttribute); } protected override bool IsKeyword(string text) => s_triggerKeywords.Contains(text); protected override SyntaxNode ParseExpression(string text) => SyntaxFactory.ParseExpression(text); } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/Diagnostics/EngineV2/DiagnosticIncrementalAnalyzer_GetDiagnostics.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.Linq; using System.Threading; using System.Threading.Tasks; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.Diagnostics.EngineV2 { internal partial class DiagnosticIncrementalAnalyzer { public Task<ImmutableArray<DiagnosticData>> GetSpecificCachedDiagnosticsAsync(Solution solution, object id, bool includeSuppressedDiagnostics = false, CancellationToken cancellationToken = default) { if (id is not LiveDiagnosticUpdateArgsId argsId) { return SpecializedTasks.EmptyImmutableArray<DiagnosticData>(); } var (documentId, projectId) = (argsId.ProjectOrDocumentId is DocumentId docId) ? (docId, docId.ProjectId) : (null, (ProjectId)argsId.ProjectOrDocumentId); return new IdeCachedDiagnosticGetter(this, solution, projectId, documentId, includeSuppressedDiagnostics).GetSpecificDiagnosticsAsync(argsId.Analyzer, (AnalysisKind)argsId.Kind, cancellationToken); } public Task<ImmutableArray<DiagnosticData>> GetCachedDiagnosticsAsync(Solution solution, ProjectId? projectId, DocumentId? documentId, bool includeSuppressedDiagnostics = false, CancellationToken cancellationToken = default) => new IdeCachedDiagnosticGetter(this, solution, projectId, documentId, includeSuppressedDiagnostics).GetDiagnosticsAsync(cancellationToken); public Task<ImmutableArray<DiagnosticData>> GetDiagnosticsAsync(Solution solution, ProjectId? projectId, DocumentId? documentId, bool includeSuppressedDiagnostics = false, CancellationToken cancellationToken = default) => new IdeLatestDiagnosticGetter(this, solution, projectId, documentId, diagnosticIds: null, includeSuppressedDiagnostics).GetDiagnosticsAsync(cancellationToken); public Task<ImmutableArray<DiagnosticData>> GetDiagnosticsForIdsAsync(Solution solution, ProjectId? projectId, DocumentId? documentId, ImmutableHashSet<string>? diagnosticIds, bool includeSuppressedDiagnostics = false, CancellationToken cancellationToken = default) => new IdeLatestDiagnosticGetter(this, solution, projectId, documentId, diagnosticIds, includeSuppressedDiagnostics).GetDiagnosticsAsync(cancellationToken); public Task<ImmutableArray<DiagnosticData>> GetProjectDiagnosticsForIdsAsync(Solution solution, ProjectId? projectId, ImmutableHashSet<string>? diagnosticIds, bool includeSuppressedDiagnostics = false, CancellationToken cancellationToken = default) => new IdeLatestDiagnosticGetter(this, solution, projectId, documentId: null, diagnosticIds: diagnosticIds, includeSuppressedDiagnostics).GetProjectDiagnosticsAsync(cancellationToken); private abstract class DiagnosticGetter { protected readonly DiagnosticIncrementalAnalyzer Owner; protected readonly Solution Solution; protected readonly ProjectId? ProjectId; protected readonly DocumentId? DocumentId; protected readonly bool IncludeSuppressedDiagnostics; private ImmutableArray<DiagnosticData>.Builder? _lazyDataBuilder; public DiagnosticGetter( DiagnosticIncrementalAnalyzer owner, Solution solution, ProjectId? projectId, DocumentId? documentId, bool includeSuppressedDiagnostics) { Owner = owner; Solution = solution; DocumentId = documentId; ProjectId = projectId ?? documentId?.ProjectId; IncludeSuppressedDiagnostics = includeSuppressedDiagnostics; } protected StateManager StateManager => Owner._stateManager; protected virtual bool ShouldIncludeDiagnostic(DiagnosticData diagnostic) => true; protected ImmutableArray<DiagnosticData> GetDiagnosticData() => (_lazyDataBuilder != null) ? _lazyDataBuilder.ToImmutableArray() : ImmutableArray<DiagnosticData>.Empty; protected abstract Task AppendDiagnosticsAsync(Project project, IEnumerable<DocumentId> documentIds, bool includeProjectNonLocalResult, CancellationToken cancellationToken); public async Task<ImmutableArray<DiagnosticData>> GetDiagnosticsAsync(CancellationToken cancellationToken) { if (ProjectId != null) { var project = Solution.GetProject(ProjectId); if (project == null) { return GetDiagnosticData(); } var documentIds = (DocumentId != null) ? SpecializedCollections.SingletonEnumerable(DocumentId) : project.DocumentIds; // return diagnostics specific to one project or document var includeProjectNonLocalResult = DocumentId == null; await AppendDiagnosticsAsync(project, documentIds, includeProjectNonLocalResult, cancellationToken).ConfigureAwait(false); return GetDiagnosticData(); } await AppendDiagnosticsAsync(Solution, cancellationToken).ConfigureAwait(false); return GetDiagnosticData(); } protected async Task AppendDiagnosticsAsync(Solution solution, CancellationToken cancellationToken) { // PERF: run projects in parallel rather than running CompilationWithAnalyzer with concurrency == true. // We do this to not get into thread starvation causing hundreds of threads to be spawned. var includeProjectNonLocalResult = true; var tasks = new Task[solution.ProjectIds.Count]; var index = 0; foreach (var project in solution.Projects) { var localProject = project; tasks[index++] = Task.Run( () => AppendDiagnosticsAsync( localProject, localProject.DocumentIds, includeProjectNonLocalResult, cancellationToken), cancellationToken); } await Task.WhenAll(tasks).ConfigureAwait(false); } protected void AppendDiagnostics(ImmutableArray<DiagnosticData> items) { Debug.Assert(!items.IsDefault); if (_lazyDataBuilder == null) { Interlocked.CompareExchange(ref _lazyDataBuilder, ImmutableArray.CreateBuilder<DiagnosticData>(), null); } lock (_lazyDataBuilder) { _lazyDataBuilder.AddRange(items.Where(ShouldIncludeSuppressedDiagnostic).Where(ShouldIncludeDiagnostic)); } } private bool ShouldIncludeSuppressedDiagnostic(DiagnosticData diagnostic) => IncludeSuppressedDiagnostics || !diagnostic.IsSuppressed; } private sealed class IdeCachedDiagnosticGetter : DiagnosticGetter { public IdeCachedDiagnosticGetter(DiagnosticIncrementalAnalyzer owner, Solution solution, ProjectId? projectId, DocumentId? documentId, bool includeSuppressedDiagnostics) : base(owner, solution, projectId, documentId, includeSuppressedDiagnostics) { } protected override async Task AppendDiagnosticsAsync(Project project, IEnumerable<DocumentId> documentIds, bool includeProjectNonLocalResult, CancellationToken cancellationToken) { foreach (var stateSet in StateManager.GetStateSets(project.Id)) { foreach (var documentId in documentIds) { AppendDiagnostics(await GetDiagnosticsAsync(stateSet, project, documentId, AnalysisKind.Syntax, cancellationToken).ConfigureAwait(false)); AppendDiagnostics(await GetDiagnosticsAsync(stateSet, project, documentId, AnalysisKind.Semantic, cancellationToken).ConfigureAwait(false)); AppendDiagnostics(await GetDiagnosticsAsync(stateSet, project, documentId, AnalysisKind.NonLocal, cancellationToken).ConfigureAwait(false)); } if (includeProjectNonLocalResult) { // include project diagnostics if there is no target document AppendDiagnostics(await GetProjectStateDiagnosticsAsync(stateSet, project, documentId: null, AnalysisKind.NonLocal, cancellationToken).ConfigureAwait(false)); } } } public async Task<ImmutableArray<DiagnosticData>> GetSpecificDiagnosticsAsync(DiagnosticAnalyzer analyzer, AnalysisKind analysisKind, CancellationToken cancellationToken) { var project = Solution.GetProject(ProjectId); if (project == null) { // when we return cached result, make sure we at least return something that exist in current solution return ImmutableArray<DiagnosticData>.Empty; } var stateSet = StateManager.GetOrCreateStateSet(project, analyzer); if (stateSet == null) { return ImmutableArray<DiagnosticData>.Empty; } var diagnostics = await GetDiagnosticsAsync(stateSet, project, DocumentId, analysisKind, cancellationToken).ConfigureAwait(false); return IncludeSuppressedDiagnostics ? diagnostics : diagnostics.WhereAsArray(d => !d.IsSuppressed); } private static async Task<ImmutableArray<DiagnosticData>> GetDiagnosticsAsync(StateSet stateSet, Project project, DocumentId? documentId, AnalysisKind kind, CancellationToken cancellationToken) { cancellationToken.ThrowIfCancellationRequested(); // active file diagnostics: if (documentId != null && kind != AnalysisKind.NonLocal && stateSet.TryGetActiveFileState(documentId, out var state)) { return state.GetAnalysisData(kind).Items; } // project diagnostics: return await GetProjectStateDiagnosticsAsync(stateSet, project, documentId, kind, cancellationToken).ConfigureAwait(false); } private static async Task<ImmutableArray<DiagnosticData>> GetProjectStateDiagnosticsAsync(StateSet stateSet, Project project, DocumentId? documentId, AnalysisKind kind, CancellationToken cancellationToken) { if (!stateSet.TryGetProjectState(project.Id, out var state)) { // never analyzed this project yet. return ImmutableArray<DiagnosticData>.Empty; } if (documentId != null) { // file doesn't exist in current solution var document = project.Solution.GetDocument(documentId); if (document == null) { return ImmutableArray<DiagnosticData>.Empty; } var result = await state.GetAnalysisDataAsync(document, avoidLoadingData: false, cancellationToken).ConfigureAwait(false); return result.GetDocumentDiagnostics(documentId, kind); } Contract.ThrowIfFalse(kind == AnalysisKind.NonLocal); var nonLocalResult = await state.GetProjectAnalysisDataAsync(project, avoidLoadingData: false, cancellationToken: cancellationToken).ConfigureAwait(false); return nonLocalResult.GetOtherDiagnostics(); } } private sealed class IdeLatestDiagnosticGetter : DiagnosticGetter { private readonly ImmutableHashSet<string>? _diagnosticIds; public IdeLatestDiagnosticGetter(DiagnosticIncrementalAnalyzer owner, Solution solution, ProjectId? projectId, DocumentId? documentId, ImmutableHashSet<string>? diagnosticIds, bool includeSuppressedDiagnostics) : base(owner, solution, projectId, documentId, includeSuppressedDiagnostics) { _diagnosticIds = diagnosticIds; } public async Task<ImmutableArray<DiagnosticData>> GetProjectDiagnosticsAsync(CancellationToken cancellationToken) { if (ProjectId != null) { var project = Solution.GetProject(ProjectId); if (project != null) { await AppendDiagnosticsAsync(project, SpecializedCollections.EmptyEnumerable<DocumentId>(), includeProjectNonLocalResult: true, cancellationToken).ConfigureAwait(false); } return GetDiagnosticData(); } await AppendDiagnosticsAsync(Solution, cancellationToken).ConfigureAwait(false); return GetDiagnosticData(); } protected override bool ShouldIncludeDiagnostic(DiagnosticData diagnostic) => _diagnosticIds == null || _diagnosticIds.Contains(diagnostic.Id); protected override async Task AppendDiagnosticsAsync(Project project, IEnumerable<DocumentId> documentIds, bool includeProjectNonLocalResult, CancellationToken cancellationToken) { // get analyzers that are not suppressed. var stateSets = StateManager.GetOrCreateStateSets(project).Where(s => ShouldIncludeStateSet(project, s)).ToImmutableArrayOrEmpty(); // unlike the suppressed (disabled) analyzer, we will include hidden diagnostic only analyzers here. var compilation = await CreateCompilationWithAnalyzersAsync(project, stateSets, IncludeSuppressedDiagnostics, cancellationToken).ConfigureAwait(false); var result = await Owner.GetProjectAnalysisDataAsync(compilation, project, stateSets, forceAnalyzerRun: true, cancellationToken).ConfigureAwait(false); foreach (var stateSet in stateSets) { var analysisResult = result.GetResult(stateSet.Analyzer); foreach (var documentId in documentIds) { AppendDiagnostics(analysisResult.GetDocumentDiagnostics(documentId, AnalysisKind.Syntax)); AppendDiagnostics(analysisResult.GetDocumentDiagnostics(documentId, AnalysisKind.Semantic)); AppendDiagnostics(analysisResult.GetDocumentDiagnostics(documentId, AnalysisKind.NonLocal)); } if (includeProjectNonLocalResult) { // include project diagnostics if there is no target document AppendDiagnostics(analysisResult.GetOtherDiagnostics()); } } } private bool ShouldIncludeStateSet(Project project, StateSet stateSet) { var infoCache = Owner.DiagnosticAnalyzerInfoCache; if (infoCache.IsAnalyzerSuppressed(stateSet.Analyzer, project)) { return false; } if (_diagnosticIds != null && infoCache.GetDiagnosticDescriptors(stateSet.Analyzer).All(d => !_diagnosticIds.Contains(d.Id))) { return false; } return true; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.Linq; using System.Threading; using System.Threading.Tasks; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.Diagnostics.EngineV2 { internal partial class DiagnosticIncrementalAnalyzer { public Task<ImmutableArray<DiagnosticData>> GetSpecificCachedDiagnosticsAsync(Solution solution, object id, bool includeSuppressedDiagnostics = false, CancellationToken cancellationToken = default) { if (id is not LiveDiagnosticUpdateArgsId argsId) { return SpecializedTasks.EmptyImmutableArray<DiagnosticData>(); } var (documentId, projectId) = (argsId.ProjectOrDocumentId is DocumentId docId) ? (docId, docId.ProjectId) : (null, (ProjectId)argsId.ProjectOrDocumentId); return new IdeCachedDiagnosticGetter(this, solution, projectId, documentId, includeSuppressedDiagnostics).GetSpecificDiagnosticsAsync(argsId.Analyzer, (AnalysisKind)argsId.Kind, cancellationToken); } public Task<ImmutableArray<DiagnosticData>> GetCachedDiagnosticsAsync(Solution solution, ProjectId? projectId, DocumentId? documentId, bool includeSuppressedDiagnostics = false, CancellationToken cancellationToken = default) => new IdeCachedDiagnosticGetter(this, solution, projectId, documentId, includeSuppressedDiagnostics).GetDiagnosticsAsync(cancellationToken); public Task<ImmutableArray<DiagnosticData>> GetDiagnosticsAsync(Solution solution, ProjectId? projectId, DocumentId? documentId, bool includeSuppressedDiagnostics = false, CancellationToken cancellationToken = default) => new IdeLatestDiagnosticGetter(this, solution, projectId, documentId, diagnosticIds: null, includeSuppressedDiagnostics).GetDiagnosticsAsync(cancellationToken); public Task<ImmutableArray<DiagnosticData>> GetDiagnosticsForIdsAsync(Solution solution, ProjectId? projectId, DocumentId? documentId, ImmutableHashSet<string>? diagnosticIds, bool includeSuppressedDiagnostics = false, CancellationToken cancellationToken = default) => new IdeLatestDiagnosticGetter(this, solution, projectId, documentId, diagnosticIds, includeSuppressedDiagnostics).GetDiagnosticsAsync(cancellationToken); public Task<ImmutableArray<DiagnosticData>> GetProjectDiagnosticsForIdsAsync(Solution solution, ProjectId? projectId, ImmutableHashSet<string>? diagnosticIds, bool includeSuppressedDiagnostics = false, CancellationToken cancellationToken = default) => new IdeLatestDiagnosticGetter(this, solution, projectId, documentId: null, diagnosticIds: diagnosticIds, includeSuppressedDiagnostics).GetProjectDiagnosticsAsync(cancellationToken); private abstract class DiagnosticGetter { protected readonly DiagnosticIncrementalAnalyzer Owner; protected readonly Solution Solution; protected readonly ProjectId? ProjectId; protected readonly DocumentId? DocumentId; protected readonly bool IncludeSuppressedDiagnostics; private ImmutableArray<DiagnosticData>.Builder? _lazyDataBuilder; public DiagnosticGetter( DiagnosticIncrementalAnalyzer owner, Solution solution, ProjectId? projectId, DocumentId? documentId, bool includeSuppressedDiagnostics) { Owner = owner; Solution = solution; DocumentId = documentId; ProjectId = projectId ?? documentId?.ProjectId; IncludeSuppressedDiagnostics = includeSuppressedDiagnostics; } protected StateManager StateManager => Owner._stateManager; protected virtual bool ShouldIncludeDiagnostic(DiagnosticData diagnostic) => true; protected ImmutableArray<DiagnosticData> GetDiagnosticData() => (_lazyDataBuilder != null) ? _lazyDataBuilder.ToImmutableArray() : ImmutableArray<DiagnosticData>.Empty; protected abstract Task AppendDiagnosticsAsync(Project project, IEnumerable<DocumentId> documentIds, bool includeProjectNonLocalResult, CancellationToken cancellationToken); public async Task<ImmutableArray<DiagnosticData>> GetDiagnosticsAsync(CancellationToken cancellationToken) { if (ProjectId != null) { var project = Solution.GetProject(ProjectId); if (project == null) { return GetDiagnosticData(); } var documentIds = (DocumentId != null) ? SpecializedCollections.SingletonEnumerable(DocumentId) : project.DocumentIds; // return diagnostics specific to one project or document var includeProjectNonLocalResult = DocumentId == null; await AppendDiagnosticsAsync(project, documentIds, includeProjectNonLocalResult, cancellationToken).ConfigureAwait(false); return GetDiagnosticData(); } await AppendDiagnosticsAsync(Solution, cancellationToken).ConfigureAwait(false); return GetDiagnosticData(); } protected async Task AppendDiagnosticsAsync(Solution solution, CancellationToken cancellationToken) { // PERF: run projects in parallel rather than running CompilationWithAnalyzer with concurrency == true. // We do this to not get into thread starvation causing hundreds of threads to be spawned. var includeProjectNonLocalResult = true; var tasks = new Task[solution.ProjectIds.Count]; var index = 0; foreach (var project in solution.Projects) { var localProject = project; tasks[index++] = Task.Run( () => AppendDiagnosticsAsync( localProject, localProject.DocumentIds, includeProjectNonLocalResult, cancellationToken), cancellationToken); } await Task.WhenAll(tasks).ConfigureAwait(false); } protected void AppendDiagnostics(ImmutableArray<DiagnosticData> items) { Debug.Assert(!items.IsDefault); if (_lazyDataBuilder == null) { Interlocked.CompareExchange(ref _lazyDataBuilder, ImmutableArray.CreateBuilder<DiagnosticData>(), null); } lock (_lazyDataBuilder) { _lazyDataBuilder.AddRange(items.Where(ShouldIncludeSuppressedDiagnostic).Where(ShouldIncludeDiagnostic)); } } private bool ShouldIncludeSuppressedDiagnostic(DiagnosticData diagnostic) => IncludeSuppressedDiagnostics || !diagnostic.IsSuppressed; } private sealed class IdeCachedDiagnosticGetter : DiagnosticGetter { public IdeCachedDiagnosticGetter(DiagnosticIncrementalAnalyzer owner, Solution solution, ProjectId? projectId, DocumentId? documentId, bool includeSuppressedDiagnostics) : base(owner, solution, projectId, documentId, includeSuppressedDiagnostics) { } protected override async Task AppendDiagnosticsAsync(Project project, IEnumerable<DocumentId> documentIds, bool includeProjectNonLocalResult, CancellationToken cancellationToken) { foreach (var stateSet in StateManager.GetStateSets(project.Id)) { foreach (var documentId in documentIds) { AppendDiagnostics(await GetDiagnosticsAsync(stateSet, project, documentId, AnalysisKind.Syntax, cancellationToken).ConfigureAwait(false)); AppendDiagnostics(await GetDiagnosticsAsync(stateSet, project, documentId, AnalysisKind.Semantic, cancellationToken).ConfigureAwait(false)); AppendDiagnostics(await GetDiagnosticsAsync(stateSet, project, documentId, AnalysisKind.NonLocal, cancellationToken).ConfigureAwait(false)); } if (includeProjectNonLocalResult) { // include project diagnostics if there is no target document AppendDiagnostics(await GetProjectStateDiagnosticsAsync(stateSet, project, documentId: null, AnalysisKind.NonLocal, cancellationToken).ConfigureAwait(false)); } } } public async Task<ImmutableArray<DiagnosticData>> GetSpecificDiagnosticsAsync(DiagnosticAnalyzer analyzer, AnalysisKind analysisKind, CancellationToken cancellationToken) { var project = Solution.GetProject(ProjectId); if (project == null) { // when we return cached result, make sure we at least return something that exist in current solution return ImmutableArray<DiagnosticData>.Empty; } var stateSet = StateManager.GetOrCreateStateSet(project, analyzer); if (stateSet == null) { return ImmutableArray<DiagnosticData>.Empty; } var diagnostics = await GetDiagnosticsAsync(stateSet, project, DocumentId, analysisKind, cancellationToken).ConfigureAwait(false); return IncludeSuppressedDiagnostics ? diagnostics : diagnostics.WhereAsArray(d => !d.IsSuppressed); } private static async Task<ImmutableArray<DiagnosticData>> GetDiagnosticsAsync(StateSet stateSet, Project project, DocumentId? documentId, AnalysisKind kind, CancellationToken cancellationToken) { cancellationToken.ThrowIfCancellationRequested(); // active file diagnostics: if (documentId != null && kind != AnalysisKind.NonLocal && stateSet.TryGetActiveFileState(documentId, out var state)) { return state.GetAnalysisData(kind).Items; } // project diagnostics: return await GetProjectStateDiagnosticsAsync(stateSet, project, documentId, kind, cancellationToken).ConfigureAwait(false); } private static async Task<ImmutableArray<DiagnosticData>> GetProjectStateDiagnosticsAsync(StateSet stateSet, Project project, DocumentId? documentId, AnalysisKind kind, CancellationToken cancellationToken) { if (!stateSet.TryGetProjectState(project.Id, out var state)) { // never analyzed this project yet. return ImmutableArray<DiagnosticData>.Empty; } if (documentId != null) { // file doesn't exist in current solution var document = project.Solution.GetDocument(documentId); if (document == null) { return ImmutableArray<DiagnosticData>.Empty; } var result = await state.GetAnalysisDataAsync(document, avoidLoadingData: false, cancellationToken).ConfigureAwait(false); return result.GetDocumentDiagnostics(documentId, kind); } Contract.ThrowIfFalse(kind == AnalysisKind.NonLocal); var nonLocalResult = await state.GetProjectAnalysisDataAsync(project, avoidLoadingData: false, cancellationToken: cancellationToken).ConfigureAwait(false); return nonLocalResult.GetOtherDiagnostics(); } } private sealed class IdeLatestDiagnosticGetter : DiagnosticGetter { private readonly ImmutableHashSet<string>? _diagnosticIds; public IdeLatestDiagnosticGetter(DiagnosticIncrementalAnalyzer owner, Solution solution, ProjectId? projectId, DocumentId? documentId, ImmutableHashSet<string>? diagnosticIds, bool includeSuppressedDiagnostics) : base(owner, solution, projectId, documentId, includeSuppressedDiagnostics) { _diagnosticIds = diagnosticIds; } public async Task<ImmutableArray<DiagnosticData>> GetProjectDiagnosticsAsync(CancellationToken cancellationToken) { if (ProjectId != null) { var project = Solution.GetProject(ProjectId); if (project != null) { await AppendDiagnosticsAsync(project, SpecializedCollections.EmptyEnumerable<DocumentId>(), includeProjectNonLocalResult: true, cancellationToken).ConfigureAwait(false); } return GetDiagnosticData(); } await AppendDiagnosticsAsync(Solution, cancellationToken).ConfigureAwait(false); return GetDiagnosticData(); } protected override bool ShouldIncludeDiagnostic(DiagnosticData diagnostic) => _diagnosticIds == null || _diagnosticIds.Contains(diagnostic.Id); protected override async Task AppendDiagnosticsAsync(Project project, IEnumerable<DocumentId> documentIds, bool includeProjectNonLocalResult, CancellationToken cancellationToken) { // get analyzers that are not suppressed. var stateSets = StateManager.GetOrCreateStateSets(project).Where(s => ShouldIncludeStateSet(project, s)).ToImmutableArrayOrEmpty(); // unlike the suppressed (disabled) analyzer, we will include hidden diagnostic only analyzers here. var compilation = await CreateCompilationWithAnalyzersAsync(project, stateSets, IncludeSuppressedDiagnostics, cancellationToken).ConfigureAwait(false); var result = await Owner.GetProjectAnalysisDataAsync(compilation, project, stateSets, forceAnalyzerRun: true, cancellationToken).ConfigureAwait(false); foreach (var stateSet in stateSets) { var analysisResult = result.GetResult(stateSet.Analyzer); foreach (var documentId in documentIds) { AppendDiagnostics(analysisResult.GetDocumentDiagnostics(documentId, AnalysisKind.Syntax)); AppendDiagnostics(analysisResult.GetDocumentDiagnostics(documentId, AnalysisKind.Semantic)); AppendDiagnostics(analysisResult.GetDocumentDiagnostics(documentId, AnalysisKind.NonLocal)); } if (includeProjectNonLocalResult) { // include project diagnostics if there is no target document AppendDiagnostics(analysisResult.GetOtherDiagnostics()); } } } private bool ShouldIncludeStateSet(Project project, StateSet stateSet) { var infoCache = Owner.DiagnosticAnalyzerInfoCache; if (infoCache.IsAnalyzerSuppressed(stateSet.Analyzer, project)) { return false; } if (_diagnosticIds != null && infoCache.GetDiagnosticDescriptors(stateSet.Analyzer).All(d => !_diagnosticIds.Contains(d.Id))) { return false; } return true; } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/CSharp/Portable/CodeRefactorings/SyncNamespace/CSharpSyncNamespaceCodeRefactoringProvider.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Immutable; using System.Composition; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeRefactorings; using Microsoft.CodeAnalysis.CodeRefactorings.SyncNamespace; using Microsoft.CodeAnalysis.CSharp.Extensions; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.CSharp.CodeRefactorings.SyncNamespace { [ExportCodeRefactoringProvider(LanguageNames.CSharp, Name = PredefinedCodeRefactoringProviderNames.SyncNamespace), Shared] internal sealed class CSharpSyncNamespaceCodeRefactoringProvider : AbstractSyncNamespaceCodeRefactoringProvider<BaseNamespaceDeclarationSyntax, CompilationUnitSyntax, MemberDeclarationSyntax> { [ImportingConstructor] [SuppressMessage("RoslynDiagnosticsReliability", "RS0033:Importing constructor should be [Obsolete]", Justification = "Used in test code: https://github.com/dotnet/roslyn/issues/42814")] public CSharpSyncNamespaceCodeRefactoringProvider() { } protected override async Task<SyntaxNode> TryGetApplicableInvocationNodeAsync(Document document, TextSpan span, CancellationToken cancellationToken) { if (!span.IsEmpty) return null; var position = span.Start; var compilationUnit = (CompilationUnitSyntax)await document.GetSyntaxRootAsync(cancellationToken).ConfigureAwait(false); var namespaceDecls = compilationUnit.DescendantNodes(n => n is CompilationUnitSyntax || n is BaseNamespaceDeclarationSyntax) .OfType<BaseNamespaceDeclarationSyntax>().ToImmutableArray(); if (namespaceDecls.Length == 1 && compilationUnit.Members.Count == 1) { var namespaceDeclaration = namespaceDecls[0]; if (namespaceDeclaration.Name.Span.IntersectsWith(position)) return namespaceDeclaration; } if (namespaceDecls.Length == 0) { var firstMemberDeclarationName = compilationUnit.Members.FirstOrDefault().GetNameToken(); if (firstMemberDeclarationName != default && firstMemberDeclarationName.Span.IntersectsWith(position)) { return compilationUnit; } } return null; } protected override string EscapeIdentifier(string identifier) => identifier.EscapeIdentifier(); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Immutable; using System.Composition; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeRefactorings; using Microsoft.CodeAnalysis.CodeRefactorings.SyncNamespace; using Microsoft.CodeAnalysis.CSharp.Extensions; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.CSharp.CodeRefactorings.SyncNamespace { [ExportCodeRefactoringProvider(LanguageNames.CSharp, Name = PredefinedCodeRefactoringProviderNames.SyncNamespace), Shared] internal sealed class CSharpSyncNamespaceCodeRefactoringProvider : AbstractSyncNamespaceCodeRefactoringProvider<BaseNamespaceDeclarationSyntax, CompilationUnitSyntax, MemberDeclarationSyntax> { [ImportingConstructor] [SuppressMessage("RoslynDiagnosticsReliability", "RS0033:Importing constructor should be [Obsolete]", Justification = "Used in test code: https://github.com/dotnet/roslyn/issues/42814")] public CSharpSyncNamespaceCodeRefactoringProvider() { } protected override async Task<SyntaxNode> TryGetApplicableInvocationNodeAsync(Document document, TextSpan span, CancellationToken cancellationToken) { if (!span.IsEmpty) return null; var position = span.Start; var compilationUnit = (CompilationUnitSyntax)await document.GetSyntaxRootAsync(cancellationToken).ConfigureAwait(false); var namespaceDecls = compilationUnit.DescendantNodes(n => n is CompilationUnitSyntax || n is BaseNamespaceDeclarationSyntax) .OfType<BaseNamespaceDeclarationSyntax>().ToImmutableArray(); if (namespaceDecls.Length == 1 && compilationUnit.Members.Count == 1) { var namespaceDeclaration = namespaceDecls[0]; if (namespaceDeclaration.Name.Span.IntersectsWith(position)) return namespaceDeclaration; } if (namespaceDecls.Length == 0) { var firstMemberDeclarationName = compilationUnit.Members.FirstOrDefault().GetNameToken(); if (firstMemberDeclarationName != default && firstMemberDeclarationName.Span.IntersectsWith(position)) { return compilationUnit; } } return null; } protected override string EscapeIdentifier(string identifier) => identifier.EscapeIdentifier(); } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/Core/Portable/Compilation/RebuildData.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Immutable; using System.Linq; using System.Reflection.Metadata; using Microsoft.CodeAnalysis.PooledObjects; namespace Microsoft.CodeAnalysis { internal sealed class RebuildData { /// <summary> /// This represents the set of document names for the #line / #ExternalSource directives /// that we need to emit into the PDB (in the order specified in the array). /// </summary> internal ImmutableArray<string> NonSourceFileDocumentNames { get; } internal BlobReader OptionsBlobReader { get; } internal RebuildData( BlobReader optionsBlobReader, ImmutableArray<string> nonSourceFileDocumentNames) { OptionsBlobReader = optionsBlobReader; NonSourceFileDocumentNames = nonSourceFileDocumentNames; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Immutable; using System.Linq; using System.Reflection.Metadata; using Microsoft.CodeAnalysis.PooledObjects; namespace Microsoft.CodeAnalysis { internal sealed class RebuildData { /// <summary> /// This represents the set of document names for the #line / #ExternalSource directives /// that we need to emit into the PDB (in the order specified in the array). /// </summary> internal ImmutableArray<string> NonSourceFileDocumentNames { get; } internal BlobReader OptionsBlobReader { get; } internal RebuildData( BlobReader optionsBlobReader, ImmutableArray<string> nonSourceFileDocumentNames) { OptionsBlobReader = optionsBlobReader; NonSourceFileDocumentNames = nonSourceFileDocumentNames; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/CSharp/Test/Syntax/Syntax/SyntaxNodeOrTokenListTests.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Generic; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.CSharp.Test.Utilities; using Microsoft.CodeAnalysis.Test.Utilities; using System; using Xunit; namespace Microsoft.CodeAnalysis.CSharp { public class SyntaxNodeOrTokenListTests : CSharpTestBase { [Fact] public void Equality() { var node1 = SyntaxFactory.Parameter(SyntaxFactory.Identifier("a")); var node2 = SyntaxFactory.Parameter(SyntaxFactory.Identifier("b")); EqualityTesting.AssertEqual(default(SeparatedSyntaxList<CSharpSyntaxNode>), default(SeparatedSyntaxList<CSharpSyntaxNode>)); EqualityTesting.AssertEqual(new SyntaxNodeOrTokenList(node1, 0), new SyntaxNodeOrTokenList(node1, 0)); EqualityTesting.AssertEqual(new SyntaxNodeOrTokenList(node1, 0), new SyntaxNodeOrTokenList(node1, 1)); EqualityTesting.AssertNotEqual(new SyntaxNodeOrTokenList(node1, 0), new SyntaxNodeOrTokenList(node2, 0)); } [Fact] public void EnumeratorEquality() { Assert.Throws<NotSupportedException>(() => default(SyntaxNodeOrTokenList.Enumerator).GetHashCode()); Assert.Throws<NotSupportedException>(() => default(SyntaxNodeOrTokenList.Enumerator).Equals(default(SyntaxNodeOrTokenList.Enumerator))); } [Fact] public void TestAddInsertRemove() { var list = SyntaxFactory.NodeOrTokenList(SyntaxFactory.ParseToken("A "), SyntaxFactory.ParseToken("B "), SyntaxFactory.ParseToken("C ")); Assert.Equal(3, list.Count); Assert.Equal("A", list[0].ToString()); Assert.Equal("B", list[1].ToString()); Assert.Equal("C", list[2].ToString()); Assert.Equal("A B C ", list.ToFullString()); var elementA = list[0]; var elementB = list[1]; var elementC = list[2]; Assert.Equal(0, list.IndexOf(elementA)); Assert.Equal(1, list.IndexOf(elementB)); Assert.Equal(2, list.IndexOf(elementC)); SyntaxNodeOrToken tokenD = SyntaxFactory.ParseToken("D "); SyntaxNodeOrToken nameE = SyntaxFactory.ParseExpression("E "); var newList = list.Add(tokenD); Assert.Equal(4, newList.Count); Assert.Equal("A B C D ", newList.ToFullString()); newList = list.AddRange(new[] { tokenD, nameE }); Assert.Equal(5, newList.Count); Assert.Equal("A B C D E ", newList.ToFullString()); newList = list.Insert(0, tokenD); Assert.Equal(4, newList.Count); Assert.Equal("D A B C ", newList.ToFullString()); newList = list.Insert(1, tokenD); Assert.Equal(4, newList.Count); Assert.Equal("A D B C ", newList.ToFullString()); newList = list.Insert(2, tokenD); Assert.Equal(4, newList.Count); Assert.Equal("A B D C ", newList.ToFullString()); newList = list.Insert(3, tokenD); Assert.Equal(4, newList.Count); Assert.Equal("A B C D ", newList.ToFullString()); newList = list.InsertRange(0, new[] { tokenD, nameE }); Assert.Equal(5, newList.Count); Assert.Equal("D E A B C ", newList.ToFullString()); newList = list.InsertRange(1, new[] { tokenD, nameE }); Assert.Equal(5, newList.Count); Assert.Equal("A D E B C ", newList.ToFullString()); newList = list.InsertRange(2, new[] { tokenD, nameE }); Assert.Equal(5, newList.Count); Assert.Equal("A B D E C ", newList.ToFullString()); newList = list.InsertRange(3, new[] { tokenD, nameE }); Assert.Equal(5, newList.Count); Assert.Equal("A B C D E ", newList.ToFullString()); newList = list.RemoveAt(0); Assert.Equal(2, newList.Count); Assert.Equal("B C ", newList.ToFullString()); newList = list.RemoveAt(list.Count - 1); Assert.Equal(2, newList.Count); Assert.Equal("A B ", newList.ToFullString()); newList = list.Remove(elementA); Assert.Equal(2, newList.Count); Assert.Equal("B C ", newList.ToFullString()); newList = list.Remove(elementB); Assert.Equal(2, newList.Count); Assert.Equal("A C ", newList.ToFullString()); newList = list.Remove(elementC); Assert.Equal(2, newList.Count); Assert.Equal("A B ", newList.ToFullString()); newList = list.Replace(elementA, tokenD); Assert.Equal(3, newList.Count); Assert.Equal("D B C ", newList.ToFullString()); newList = list.Replace(elementB, tokenD); Assert.Equal(3, newList.Count); Assert.Equal("A D C ", newList.ToFullString()); newList = list.Replace(elementC, tokenD); Assert.Equal(3, newList.Count); Assert.Equal("A B D ", newList.ToFullString()); newList = list.ReplaceRange(elementA, new[] { tokenD, nameE }); Assert.Equal(4, newList.Count); Assert.Equal("D E B C ", newList.ToFullString()); newList = list.ReplaceRange(elementB, new[] { tokenD, nameE }); Assert.Equal(4, newList.Count); Assert.Equal("A D E C ", newList.ToFullString()); newList = list.ReplaceRange(elementC, new[] { tokenD, nameE }); Assert.Equal(4, newList.Count); Assert.Equal("A B D E ", newList.ToFullString()); newList = list.ReplaceRange(elementA, new SyntaxNodeOrToken[] { }); Assert.Equal(2, newList.Count); Assert.Equal("B C ", newList.ToFullString()); newList = list.ReplaceRange(elementB, new SyntaxNodeOrToken[] { }); Assert.Equal(2, newList.Count); Assert.Equal("A C ", newList.ToFullString()); newList = list.ReplaceRange(elementC, new SyntaxNodeOrToken[] { }); Assert.Equal(2, newList.Count); Assert.Equal("A B ", newList.ToFullString()); Assert.Equal(-1, list.IndexOf(tokenD)); Assert.Throws<ArgumentOutOfRangeException>(() => list.Insert(-1, tokenD)); Assert.Throws<ArgumentOutOfRangeException>(() => list.Insert(list.Count + 1, tokenD)); Assert.Throws<ArgumentOutOfRangeException>(() => list.InsertRange(-1, new[] { tokenD })); Assert.Throws<ArgumentOutOfRangeException>(() => list.InsertRange(list.Count + 1, new[] { tokenD })); Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(-1)); Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(list.Count)); Assert.Throws<ArgumentOutOfRangeException>(() => list.Replace(tokenD, nameE)); Assert.Throws<ArgumentOutOfRangeException>(() => list.ReplaceRange(tokenD, new[] { nameE })); Assert.Throws<ArgumentOutOfRangeException>(() => list.Add(default(SyntaxNodeOrToken))); Assert.Throws<ArgumentOutOfRangeException>(() => list.Insert(0, default(SyntaxNodeOrToken))); Assert.Throws<ArgumentNullException>(() => list.AddRange((IEnumerable<SyntaxNodeOrToken>)null)); Assert.Throws<ArgumentNullException>(() => list.InsertRange(0, (IEnumerable<SyntaxNodeOrToken>)null)); Assert.Throws<ArgumentNullException>(() => list.ReplaceRange(elementA, (IEnumerable<SyntaxNodeOrToken>)null)); } [Fact] public void TestAddInsertRemoveReplaceOnEmptyList() { DoTestAddInsertRemoveReplaceOnEmptyList(SyntaxFactory.NodeOrTokenList()); DoTestAddInsertRemoveReplaceOnEmptyList(default(SyntaxNodeOrTokenList)); } private void DoTestAddInsertRemoveReplaceOnEmptyList(SyntaxNodeOrTokenList list) { Assert.Equal(0, list.Count); SyntaxNodeOrToken tokenD = SyntaxFactory.ParseToken("D "); SyntaxNodeOrToken nodeE = SyntaxFactory.ParseExpression("E "); var newList = list.Add(tokenD); Assert.Equal(1, newList.Count); Assert.Equal("D ", newList.ToFullString()); newList = list.AddRange(new[] { tokenD, nodeE }); Assert.Equal(2, newList.Count); Assert.Equal("D E ", newList.ToFullString()); newList = list.Insert(0, tokenD); Assert.Equal(1, newList.Count); Assert.Equal("D ", newList.ToFullString()); newList = list.InsertRange(0, new[] { tokenD, nodeE }); Assert.Equal(2, newList.Count); Assert.Equal("D E ", newList.ToFullString()); newList = list.Remove(tokenD); Assert.Equal(0, newList.Count); Assert.Equal(-1, list.IndexOf(tokenD)); Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(0)); Assert.Throws<ArgumentOutOfRangeException>(() => list.Insert(1, tokenD)); Assert.Throws<ArgumentOutOfRangeException>(() => list.Insert(-1, tokenD)); Assert.Throws<ArgumentOutOfRangeException>(() => list.InsertRange(1, new[] { tokenD })); Assert.Throws<ArgumentOutOfRangeException>(() => list.InsertRange(-1, new[] { tokenD })); Assert.Throws<ArgumentOutOfRangeException>(() => list.Add(default(SyntaxNodeOrToken))); Assert.Throws<ArgumentOutOfRangeException>(() => list.Insert(0, default(SyntaxNodeOrToken))); Assert.Throws<ArgumentNullException>(() => list.AddRange((IEnumerable<SyntaxNodeOrToken>)null)); Assert.Throws<ArgumentNullException>(() => list.InsertRange(0, (IEnumerable<SyntaxNodeOrToken>)null)); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Generic; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.CSharp.Test.Utilities; using Microsoft.CodeAnalysis.Test.Utilities; using System; using Xunit; namespace Microsoft.CodeAnalysis.CSharp { public class SyntaxNodeOrTokenListTests : CSharpTestBase { [Fact] public void Equality() { var node1 = SyntaxFactory.Parameter(SyntaxFactory.Identifier("a")); var node2 = SyntaxFactory.Parameter(SyntaxFactory.Identifier("b")); EqualityTesting.AssertEqual(default(SeparatedSyntaxList<CSharpSyntaxNode>), default(SeparatedSyntaxList<CSharpSyntaxNode>)); EqualityTesting.AssertEqual(new SyntaxNodeOrTokenList(node1, 0), new SyntaxNodeOrTokenList(node1, 0)); EqualityTesting.AssertEqual(new SyntaxNodeOrTokenList(node1, 0), new SyntaxNodeOrTokenList(node1, 1)); EqualityTesting.AssertNotEqual(new SyntaxNodeOrTokenList(node1, 0), new SyntaxNodeOrTokenList(node2, 0)); } [Fact] public void EnumeratorEquality() { Assert.Throws<NotSupportedException>(() => default(SyntaxNodeOrTokenList.Enumerator).GetHashCode()); Assert.Throws<NotSupportedException>(() => default(SyntaxNodeOrTokenList.Enumerator).Equals(default(SyntaxNodeOrTokenList.Enumerator))); } [Fact] public void TestAddInsertRemove() { var list = SyntaxFactory.NodeOrTokenList(SyntaxFactory.ParseToken("A "), SyntaxFactory.ParseToken("B "), SyntaxFactory.ParseToken("C ")); Assert.Equal(3, list.Count); Assert.Equal("A", list[0].ToString()); Assert.Equal("B", list[1].ToString()); Assert.Equal("C", list[2].ToString()); Assert.Equal("A B C ", list.ToFullString()); var elementA = list[0]; var elementB = list[1]; var elementC = list[2]; Assert.Equal(0, list.IndexOf(elementA)); Assert.Equal(1, list.IndexOf(elementB)); Assert.Equal(2, list.IndexOf(elementC)); SyntaxNodeOrToken tokenD = SyntaxFactory.ParseToken("D "); SyntaxNodeOrToken nameE = SyntaxFactory.ParseExpression("E "); var newList = list.Add(tokenD); Assert.Equal(4, newList.Count); Assert.Equal("A B C D ", newList.ToFullString()); newList = list.AddRange(new[] { tokenD, nameE }); Assert.Equal(5, newList.Count); Assert.Equal("A B C D E ", newList.ToFullString()); newList = list.Insert(0, tokenD); Assert.Equal(4, newList.Count); Assert.Equal("D A B C ", newList.ToFullString()); newList = list.Insert(1, tokenD); Assert.Equal(4, newList.Count); Assert.Equal("A D B C ", newList.ToFullString()); newList = list.Insert(2, tokenD); Assert.Equal(4, newList.Count); Assert.Equal("A B D C ", newList.ToFullString()); newList = list.Insert(3, tokenD); Assert.Equal(4, newList.Count); Assert.Equal("A B C D ", newList.ToFullString()); newList = list.InsertRange(0, new[] { tokenD, nameE }); Assert.Equal(5, newList.Count); Assert.Equal("D E A B C ", newList.ToFullString()); newList = list.InsertRange(1, new[] { tokenD, nameE }); Assert.Equal(5, newList.Count); Assert.Equal("A D E B C ", newList.ToFullString()); newList = list.InsertRange(2, new[] { tokenD, nameE }); Assert.Equal(5, newList.Count); Assert.Equal("A B D E C ", newList.ToFullString()); newList = list.InsertRange(3, new[] { tokenD, nameE }); Assert.Equal(5, newList.Count); Assert.Equal("A B C D E ", newList.ToFullString()); newList = list.RemoveAt(0); Assert.Equal(2, newList.Count); Assert.Equal("B C ", newList.ToFullString()); newList = list.RemoveAt(list.Count - 1); Assert.Equal(2, newList.Count); Assert.Equal("A B ", newList.ToFullString()); newList = list.Remove(elementA); Assert.Equal(2, newList.Count); Assert.Equal("B C ", newList.ToFullString()); newList = list.Remove(elementB); Assert.Equal(2, newList.Count); Assert.Equal("A C ", newList.ToFullString()); newList = list.Remove(elementC); Assert.Equal(2, newList.Count); Assert.Equal("A B ", newList.ToFullString()); newList = list.Replace(elementA, tokenD); Assert.Equal(3, newList.Count); Assert.Equal("D B C ", newList.ToFullString()); newList = list.Replace(elementB, tokenD); Assert.Equal(3, newList.Count); Assert.Equal("A D C ", newList.ToFullString()); newList = list.Replace(elementC, tokenD); Assert.Equal(3, newList.Count); Assert.Equal("A B D ", newList.ToFullString()); newList = list.ReplaceRange(elementA, new[] { tokenD, nameE }); Assert.Equal(4, newList.Count); Assert.Equal("D E B C ", newList.ToFullString()); newList = list.ReplaceRange(elementB, new[] { tokenD, nameE }); Assert.Equal(4, newList.Count); Assert.Equal("A D E C ", newList.ToFullString()); newList = list.ReplaceRange(elementC, new[] { tokenD, nameE }); Assert.Equal(4, newList.Count); Assert.Equal("A B D E ", newList.ToFullString()); newList = list.ReplaceRange(elementA, new SyntaxNodeOrToken[] { }); Assert.Equal(2, newList.Count); Assert.Equal("B C ", newList.ToFullString()); newList = list.ReplaceRange(elementB, new SyntaxNodeOrToken[] { }); Assert.Equal(2, newList.Count); Assert.Equal("A C ", newList.ToFullString()); newList = list.ReplaceRange(elementC, new SyntaxNodeOrToken[] { }); Assert.Equal(2, newList.Count); Assert.Equal("A B ", newList.ToFullString()); Assert.Equal(-1, list.IndexOf(tokenD)); Assert.Throws<ArgumentOutOfRangeException>(() => list.Insert(-1, tokenD)); Assert.Throws<ArgumentOutOfRangeException>(() => list.Insert(list.Count + 1, tokenD)); Assert.Throws<ArgumentOutOfRangeException>(() => list.InsertRange(-1, new[] { tokenD })); Assert.Throws<ArgumentOutOfRangeException>(() => list.InsertRange(list.Count + 1, new[] { tokenD })); Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(-1)); Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(list.Count)); Assert.Throws<ArgumentOutOfRangeException>(() => list.Replace(tokenD, nameE)); Assert.Throws<ArgumentOutOfRangeException>(() => list.ReplaceRange(tokenD, new[] { nameE })); Assert.Throws<ArgumentOutOfRangeException>(() => list.Add(default(SyntaxNodeOrToken))); Assert.Throws<ArgumentOutOfRangeException>(() => list.Insert(0, default(SyntaxNodeOrToken))); Assert.Throws<ArgumentNullException>(() => list.AddRange((IEnumerable<SyntaxNodeOrToken>)null)); Assert.Throws<ArgumentNullException>(() => list.InsertRange(0, (IEnumerable<SyntaxNodeOrToken>)null)); Assert.Throws<ArgumentNullException>(() => list.ReplaceRange(elementA, (IEnumerable<SyntaxNodeOrToken>)null)); } [Fact] public void TestAddInsertRemoveReplaceOnEmptyList() { DoTestAddInsertRemoveReplaceOnEmptyList(SyntaxFactory.NodeOrTokenList()); DoTestAddInsertRemoveReplaceOnEmptyList(default(SyntaxNodeOrTokenList)); } private void DoTestAddInsertRemoveReplaceOnEmptyList(SyntaxNodeOrTokenList list) { Assert.Equal(0, list.Count); SyntaxNodeOrToken tokenD = SyntaxFactory.ParseToken("D "); SyntaxNodeOrToken nodeE = SyntaxFactory.ParseExpression("E "); var newList = list.Add(tokenD); Assert.Equal(1, newList.Count); Assert.Equal("D ", newList.ToFullString()); newList = list.AddRange(new[] { tokenD, nodeE }); Assert.Equal(2, newList.Count); Assert.Equal("D E ", newList.ToFullString()); newList = list.Insert(0, tokenD); Assert.Equal(1, newList.Count); Assert.Equal("D ", newList.ToFullString()); newList = list.InsertRange(0, new[] { tokenD, nodeE }); Assert.Equal(2, newList.Count); Assert.Equal("D E ", newList.ToFullString()); newList = list.Remove(tokenD); Assert.Equal(0, newList.Count); Assert.Equal(-1, list.IndexOf(tokenD)); Assert.Throws<ArgumentOutOfRangeException>(() => list.RemoveAt(0)); Assert.Throws<ArgumentOutOfRangeException>(() => list.Insert(1, tokenD)); Assert.Throws<ArgumentOutOfRangeException>(() => list.Insert(-1, tokenD)); Assert.Throws<ArgumentOutOfRangeException>(() => list.InsertRange(1, new[] { tokenD })); Assert.Throws<ArgumentOutOfRangeException>(() => list.InsertRange(-1, new[] { tokenD })); Assert.Throws<ArgumentOutOfRangeException>(() => list.Add(default(SyntaxNodeOrToken))); Assert.Throws<ArgumentOutOfRangeException>(() => list.Insert(0, default(SyntaxNodeOrToken))); Assert.Throws<ArgumentNullException>(() => list.AddRange((IEnumerable<SyntaxNodeOrToken>)null)); Assert.Throws<ArgumentNullException>(() => list.InsertRange(0, (IEnumerable<SyntaxNodeOrToken>)null)); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/Core/Portable/DocumentationComments/XmlDocumentationCommentTextReader.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Xml; using Microsoft.CodeAnalysis.PooledObjects; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis { /// <summary> /// Used by the DocumentationCommentCompiler(s) to check doc comments for XML parse errors. /// As a performance optimization, this class tries to re-use the same underlying <see cref="XmlReader"/> instance /// when possible. /// </summary> internal partial class XmlDocumentationCommentTextReader { private XmlReader _reader; private readonly Reader _textReader = new Reader(); private static readonly ObjectPool<XmlDocumentationCommentTextReader> s_pool = new ObjectPool<XmlDocumentationCommentTextReader>(() => new XmlDocumentationCommentTextReader(), size: 2); public static XmlException ParseAndGetException(string text) { var reader = s_pool.Allocate(); var retVal = reader.ParseInternal(text); s_pool.Free(reader); return retVal; } private static readonly XmlReaderSettings s_xmlSettings = new XmlReaderSettings { DtdProcessing = DtdProcessing.Prohibit }; // internal for testing internal XmlException ParseInternal(string text) { _textReader.SetText(text); if (_reader == null) { _reader = XmlReader.Create(_textReader, s_xmlSettings); } try { do { _reader.Read(); } while (!Reader.ReachedEnd(_reader)); if (_textReader.Eof) { _reader.Dispose(); _reader = null; _textReader.Reset(); } return null; } catch (XmlException ex) { // The reader is in a bad state, so dispose of it and recreate a new one next time we get called. _reader.Dispose(); _reader = null; _textReader.Reset(); return ex; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Xml; using Microsoft.CodeAnalysis.PooledObjects; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis { /// <summary> /// Used by the DocumentationCommentCompiler(s) to check doc comments for XML parse errors. /// As a performance optimization, this class tries to re-use the same underlying <see cref="XmlReader"/> instance /// when possible. /// </summary> internal partial class XmlDocumentationCommentTextReader { private XmlReader _reader; private readonly Reader _textReader = new Reader(); private static readonly ObjectPool<XmlDocumentationCommentTextReader> s_pool = new ObjectPool<XmlDocumentationCommentTextReader>(() => new XmlDocumentationCommentTextReader(), size: 2); public static XmlException ParseAndGetException(string text) { var reader = s_pool.Allocate(); var retVal = reader.ParseInternal(text); s_pool.Free(reader); return retVal; } private static readonly XmlReaderSettings s_xmlSettings = new XmlReaderSettings { DtdProcessing = DtdProcessing.Prohibit }; // internal for testing internal XmlException ParseInternal(string text) { _textReader.SetText(text); if (_reader == null) { _reader = XmlReader.Create(_textReader, s_xmlSettings); } try { do { _reader.Read(); } while (!Reader.ReachedEnd(_reader)); if (_textReader.Eof) { _reader.Dispose(); _reader = null; _textReader.Reset(); } return null; } catch (XmlException ex) { // The reader is in a bad state, so dispose of it and recreate a new one next time we get called. _reader.Dispose(); _reader = null; _textReader.Reset(); return ex; } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/Core/Portable/Emit/CommonPEModuleBuilder.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Threading; using Microsoft.CodeAnalysis.CodeGen; using Microsoft.CodeAnalysis.Emit.NoPia; using Microsoft.CodeAnalysis.PooledObjects; using Microsoft.CodeAnalysis.Symbols; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.Emit { internal abstract class CommonPEModuleBuilder : Cci.IUnit, Cci.IModuleReference { internal readonly DebugDocumentsBuilder DebugDocumentsBuilder; internal readonly IEnumerable<ResourceDescription> ManifestResources; internal readonly Cci.ModulePropertiesForSerialization SerializationProperties; internal readonly OutputKind OutputKind; internal Stream RawWin32Resources; internal IEnumerable<Cci.IWin32Resource> Win32Resources; internal Cci.ResourceSection Win32ResourceSection; internal Stream SourceLinkStreamOpt; internal Cci.IMethodReference PEEntryPoint; internal Cci.IMethodReference DebugEntryPoint; private readonly ConcurrentDictionary<IMethodSymbolInternal, Cci.IMethodBody> _methodBodyMap; private readonly TokenMap _referencesInILMap = new(); private readonly ItemTokenMap<string> _stringsInILMap = new(); private readonly ItemTokenMap<Cci.DebugSourceDocument> _sourceDocumentsInILMap = new(); private ImmutableArray<Cci.AssemblyReferenceAlias> _lazyAssemblyReferenceAliases; private ImmutableArray<Cci.ManagedResource> _lazyManagedResources; private IEnumerable<EmbeddedText> _embeddedTexts = SpecializedCollections.EmptyEnumerable<EmbeddedText>(); // Only set when running tests to allow realized IL for a given method to be looked up by method. internal ConcurrentDictionary<IMethodSymbolInternal, CompilationTestData.MethodData> TestData { get; private set; } internal EmitOptions EmitOptions { get; } internal DebugInformationFormat DebugInformationFormat => EmitOptions.DebugInformationFormat; internal HashAlgorithmName PdbChecksumAlgorithm => EmitOptions.PdbChecksumAlgorithm; public CommonPEModuleBuilder( IEnumerable<ResourceDescription> manifestResources, EmitOptions emitOptions, OutputKind outputKind, Cci.ModulePropertiesForSerialization serializationProperties, Compilation compilation) { Debug.Assert(manifestResources != null); Debug.Assert(serializationProperties != null); Debug.Assert(compilation != null); ManifestResources = manifestResources; DebugDocumentsBuilder = new DebugDocumentsBuilder(compilation.Options.SourceReferenceResolver, compilation.IsCaseSensitive); OutputKind = outputKind; SerializationProperties = serializationProperties; _methodBodyMap = new ConcurrentDictionary<IMethodSymbolInternal, Cci.IMethodBody>(ReferenceEqualityComparer.Instance); EmitOptions = emitOptions; } #nullable enable /// <summary> /// Symbol changes when emitting EnC delta. /// </summary> public abstract SymbolChanges? EncSymbolChanges { get; } /// <summary> /// Previous EnC generation baseline, or null if this is not EnC delta. /// </summary> public abstract EmitBaseline? PreviousGeneration { get; } /// <summary> /// True if this module is an EnC update. /// </summary> public bool IsEncDelta => PreviousGeneration != null; /// <summary> /// EnC generation. 0 if the module is not an EnC delta, 1 if it is the first EnC delta, etc. /// </summary> public int CurrentGenerationOrdinal => (PreviousGeneration?.Ordinal + 1) ?? 0; #nullable disable /// <summary> /// If this module represents an assembly, name of the assembly used in AssemblyDef table. Otherwise name of the module same as <see cref="ModuleName"/>. /// </summary> public abstract string Name { get; } /// <summary> /// Name of the module. Used in ModuleDef table. /// </summary> internal abstract string ModuleName { get; } internal abstract Cci.IAssemblyReference Translate(IAssemblySymbolInternal symbol, DiagnosticBag diagnostics); internal abstract Cci.ITypeReference Translate(ITypeSymbolInternal symbol, SyntaxNode syntaxOpt, DiagnosticBag diagnostics); internal abstract Cci.IMethodReference Translate(IMethodSymbolInternal symbol, DiagnosticBag diagnostics, bool needDeclaration); internal abstract bool SupportsPrivateImplClass { get; } internal abstract Compilation CommonCompilation { get; } internal abstract IModuleSymbolInternal CommonSourceModule { get; } internal abstract IAssemblySymbolInternal CommonCorLibrary { get; } internal abstract CommonModuleCompilationState CommonModuleCompilationState { get; } internal abstract void CompilationFinished(); internal abstract ImmutableDictionary<ISymbolInternal, ImmutableArray<ISymbolInternal>> GetAllSynthesizedMembers(); internal abstract CommonEmbeddedTypesManager CommonEmbeddedTypesManagerOpt { get; } internal abstract Cci.ITypeReference EncTranslateType(ITypeSymbolInternal type, DiagnosticBag diagnostics); public abstract IEnumerable<Cci.ICustomAttribute> GetSourceAssemblyAttributes(bool isRefAssembly); public abstract IEnumerable<Cci.SecurityAttribute> GetSourceAssemblySecurityAttributes(); public abstract IEnumerable<Cci.ICustomAttribute> GetSourceModuleAttributes(); internal abstract Cci.ICustomAttribute SynthesizeAttribute(WellKnownMember attributeConstructor); /// <summary> /// Public types defined in other modules making up this assembly and to which other assemblies may refer to via this assembly /// followed by types forwarded to another assembly. /// </summary> public abstract ImmutableArray<Cci.ExportedType> GetExportedTypes(DiagnosticBag diagnostics); /// <summary> /// Used to distinguish which style to pick while writing native PDB information. /// </summary> /// <remarks> /// The PDB content for custom debug information is different between Visual Basic and CSharp. /// E.g. C# always includes a CustomMetadata Header (MD2) that contains the namespace scope counts, where /// as VB only outputs namespace imports into the namespace scopes. /// C# defines forwards in that header, VB includes them into the scopes list. /// /// Currently the compiler doesn't allow mixing C# and VB method bodies. Thus this flag can be per module. /// It is possible to move this flag to per-method basis but native PDB CDI forwarding would need to be adjusted accordingly. /// </remarks> public abstract bool GenerateVisualBasicStylePdb { get; } /// <summary> /// Linked assembly names to be stored to native PDB (VB only). /// </summary> public abstract IEnumerable<string> LinkedAssembliesDebugInfo { get; } /// <summary> /// Project level imports (VB only, TODO: C# scripts). /// </summary> public abstract ImmutableArray<Cci.UsedNamespaceOrType> GetImports(); /// <summary> /// Default namespace (VB only). /// </summary> public abstract string DefaultNamespace { get; } protected abstract Cci.IAssemblyReference GetCorLibraryReferenceToEmit(EmitContext context); protected abstract IEnumerable<Cci.IAssemblyReference> GetAssemblyReferencesFromAddedModules(DiagnosticBag diagnostics); protected abstract void AddEmbeddedResourcesFromAddedModules(ArrayBuilder<Cci.ManagedResource> builder, DiagnosticBag diagnostics); public abstract Cci.ITypeReference GetPlatformType(Cci.PlatformType platformType, EmitContext context); public abstract bool IsPlatformType(Cci.ITypeReference typeRef, Cci.PlatformType platformType); public abstract IEnumerable<Cci.INamespaceTypeDefinition> GetTopLevelTypeDefinitions(EmitContext context); public IEnumerable<Cci.INamespaceTypeDefinition> GetTopLevelTypeDefinitionsCore(EmitContext context) { foreach (var typeDef in GetAdditionalTopLevelTypeDefinitions(context)) { yield return typeDef; } foreach (var typeDef in GetEmbeddedTypeDefinitions(context)) { yield return typeDef; } foreach (var typeDef in GetTopLevelSourceTypeDefinitions(context)) { yield return typeDef; } } /// <summary> /// Additional top-level types injected by the Expression Evaluators. /// </summary> public abstract IEnumerable<Cci.INamespaceTypeDefinition> GetAdditionalTopLevelTypeDefinitions(EmitContext context); /// <summary> /// Anonymous types defined in the compilation. /// </summary> public abstract IEnumerable<Cci.INamespaceTypeDefinition> GetAnonymousTypeDefinitions(EmitContext context); /// <summary> /// Top-level embedded types (e.g. attribute types that are not present in referenced assemblies). /// </summary> public abstract IEnumerable<Cci.INamespaceTypeDefinition> GetEmbeddedTypeDefinitions(EmitContext context); /// <summary> /// Top-level named types defined in source. /// </summary> public abstract IEnumerable<Cci.INamespaceTypeDefinition> GetTopLevelSourceTypeDefinitions(EmitContext context); /// <summary> /// A list of the files that constitute the assembly. Empty for netmodule. These are not the source language files that may have been /// used to compile the assembly, but the files that contain constituent modules of a multi-module assembly as well /// as any external resources. It corresponds to the File table of the .NET assembly file format. /// </summary> public abstract IEnumerable<Cci.IFileReference> GetFiles(EmitContext context); /// <summary> /// Builds symbol definition to location map used for emitting token -> location info /// into PDB to be consumed by WinMdExp.exe tool (only applicable for /t:winmdobj) /// </summary> public abstract MultiDictionary<Cci.DebugSourceDocument, Cci.DefinitionWithLocation> GetSymbolToLocationMap(); /// <summary> /// Number of debug documents in the module. /// Used to determine capacities of lists and indices when emitting debug info. /// </summary> public int DebugDocumentCount => DebugDocumentsBuilder.DebugDocumentCount; public void Dispatch(Cci.MetadataVisitor visitor) => visitor.Visit(this); IEnumerable<Cci.ICustomAttribute> Cci.IReference.GetAttributes(EmitContext context) => SpecializedCollections.EmptyEnumerable<Cci.ICustomAttribute>(); Cci.IDefinition Cci.IReference.AsDefinition(EmitContext context) { Debug.Assert(ReferenceEquals(context.Module, this)); return this; } Symbols.ISymbolInternal Cci.IReference.GetInternalSymbol() => null; public abstract ISourceAssemblySymbolInternal SourceAssemblyOpt { get; } /// <summary> /// An approximate number of method definitions that can /// provide a basis for approximating the capacities of /// various databases used during Emit. /// </summary> public int HintNumberOfMethodDefinitions // Try to guess at the size of tables to prevent re-allocation. The method body // map is pretty close, but unfortunately it tends to undercount. x1.5 seems like // a healthy amount of room based on compiling Roslyn. => (int)(_methodBodyMap.Count * 1.5); internal Cci.IMethodBody GetMethodBody(IMethodSymbolInternal methodSymbol) { Debug.Assert(methodSymbol.ContainingModule == CommonSourceModule); Debug.Assert(methodSymbol.IsDefinition); Debug.Assert(((IMethodSymbol)methodSymbol.GetISymbol()).PartialDefinitionPart == null); // Must be definition. Cci.IMethodBody body; if (_methodBodyMap.TryGetValue(methodSymbol, out body)) { return body; } return null; } public void SetMethodBody(IMethodSymbolInternal methodSymbol, Cci.IMethodBody body) { Debug.Assert(methodSymbol.ContainingModule == CommonSourceModule); Debug.Assert(methodSymbol.IsDefinition); Debug.Assert(((IMethodSymbol)methodSymbol.GetISymbol()).PartialDefinitionPart == null); // Must be definition. Debug.Assert(body == null || (object)methodSymbol == body.MethodDefinition.GetInternalSymbol()); _methodBodyMap.Add(methodSymbol, body); } internal void SetPEEntryPoint(IMethodSymbolInternal method, DiagnosticBag diagnostics) { Debug.Assert(method == null || IsSourceDefinition(method)); Debug.Assert(OutputKind.IsApplication()); PEEntryPoint = Translate(method, diagnostics, needDeclaration: true); } internal void SetDebugEntryPoint(IMethodSymbolInternal method, DiagnosticBag diagnostics) { Debug.Assert(method == null || IsSourceDefinition(method)); DebugEntryPoint = Translate(method, diagnostics, needDeclaration: true); } private bool IsSourceDefinition(IMethodSymbolInternal method) { return method.ContainingModule == CommonSourceModule && method.IsDefinition; } /// <summary> /// CorLibrary assembly referenced by this module. /// </summary> public Cci.IAssemblyReference GetCorLibrary(EmitContext context) { return Translate(CommonCorLibrary, context.Diagnostics); } public Cci.IAssemblyReference GetContainingAssembly(EmitContext context) { return OutputKind == OutputKind.NetModule ? null : (Cci.IAssemblyReference)this; } /// <summary> /// Returns User Strings referenced from the IL in the module. /// </summary> public IEnumerable<string> GetStrings() { return _stringsInILMap.GetAllItems(); } public uint GetFakeSymbolTokenForIL(Cci.IReference symbol, SyntaxNode syntaxNode, DiagnosticBag diagnostics) { uint token = _referencesInILMap.GetOrAddTokenFor(symbol, out bool added); if (added) { ReferenceDependencyWalker.VisitReference(symbol, new EmitContext(this, syntaxNode, diagnostics, metadataOnly: false, includePrivateMembers: true)); } return token; } public uint GetFakeSymbolTokenForIL(Cci.ISignature symbol, SyntaxNode syntaxNode, DiagnosticBag diagnostics) { uint token = _referencesInILMap.GetOrAddTokenFor(symbol, out bool added); if (added) { ReferenceDependencyWalker.VisitSignature(symbol, new EmitContext(this, syntaxNode, diagnostics, metadataOnly: false, includePrivateMembers: true)); } return token; } public uint GetSourceDocumentIndexForIL(Cci.DebugSourceDocument document) { return _sourceDocumentsInILMap.GetOrAddTokenFor(document); } internal Cci.DebugSourceDocument GetSourceDocumentFromIndex(uint token) { return _sourceDocumentsInILMap.GetItem(token); } public object GetReferenceFromToken(uint token) { return _referencesInILMap.GetItem(token); } public uint GetFakeStringTokenForIL(string str) { return _stringsInILMap.GetOrAddTokenFor(str); } public string GetStringFromToken(uint token) { return _stringsInILMap.GetItem(token); } public ReadOnlySpan<object> ReferencesInIL() { return _referencesInILMap.GetAllItems(); } /// <summary> /// Assembly reference aliases (C# only). /// </summary> public ImmutableArray<Cci.AssemblyReferenceAlias> GetAssemblyReferenceAliases(EmitContext context) { if (_lazyAssemblyReferenceAliases.IsDefault) { ImmutableInterlocked.InterlockedCompareExchange(ref _lazyAssemblyReferenceAliases, CalculateAssemblyReferenceAliases(context), default(ImmutableArray<Cci.AssemblyReferenceAlias>)); } return _lazyAssemblyReferenceAliases; } private ImmutableArray<Cci.AssemblyReferenceAlias> CalculateAssemblyReferenceAliases(EmitContext context) { var result = ArrayBuilder<Cci.AssemblyReferenceAlias>.GetInstance(); foreach (var assemblyAndAliases in CommonCompilation.GetBoundReferenceManager().GetReferencedAssemblyAliases()) { var assembly = assemblyAndAliases.Item1; var aliases = assemblyAndAliases.Item2; for (int i = 0; i < aliases.Length; i++) { string alias = aliases[i]; // filter out duplicates and global aliases: if (alias != MetadataReferenceProperties.GlobalAlias && aliases.IndexOf(alias, 0, i) < 0) { result.Add(new Cci.AssemblyReferenceAlias(alias, Translate(assembly, context.Diagnostics))); } } } return result.ToImmutableAndFree(); } public IEnumerable<Cci.IAssemblyReference> GetAssemblyReferences(EmitContext context) { Cci.IAssemblyReference corLibrary = GetCorLibraryReferenceToEmit(context); // Only add Cor Library reference explicitly, PeWriter will add // other references implicitly on as needed basis. if (corLibrary != null) { yield return corLibrary; } if (OutputKind != OutputKind.NetModule) { // Explicitly add references from added modules foreach (var aRef in GetAssemblyReferencesFromAddedModules(context.Diagnostics)) { yield return aRef; } } } public ImmutableArray<Cci.ManagedResource> GetResources(EmitContext context) { if (context.IsRefAssembly) { // Manifest resources are not included in ref assemblies // Ref assemblies don't support added modules return ImmutableArray<Cci.ManagedResource>.Empty; } if (_lazyManagedResources.IsDefault) { var builder = ArrayBuilder<Cci.ManagedResource>.GetInstance(); foreach (ResourceDescription r in ManifestResources) { builder.Add(r.ToManagedResource(this)); } if (OutputKind != OutputKind.NetModule) { // Explicitly add resources from added modules AddEmbeddedResourcesFromAddedModules(builder, context.Diagnostics); } _lazyManagedResources = builder.ToImmutableAndFree(); } return _lazyManagedResources; } public IEnumerable<EmbeddedText> EmbeddedTexts { get { return _embeddedTexts; } set { Debug.Assert(value != null); _embeddedTexts = value; } } internal bool SaveTestData => TestData != null; internal void SetMethodTestData(IMethodSymbolInternal method, ILBuilder builder) { TestData.Add(method, new CompilationTestData.MethodData(builder, method)); } internal void SetMethodTestData(ConcurrentDictionary<IMethodSymbolInternal, CompilationTestData.MethodData> methods) { Debug.Assert(TestData == null); TestData = methods; } public int GetTypeDefinitionGeneration(Cci.INamedTypeDefinition typeDef) { if (PreviousGeneration != null) { var symbolChanges = EncSymbolChanges!; if (symbolChanges.IsReplaced(typeDef)) { // Type emitted with Replace semantics in this delta, it's name should have the current generation ordinal suffix. return CurrentGenerationOrdinal; } var previousTypeDef = symbolChanges.DefinitionMap.MapDefinition(typeDef); if (previousTypeDef != null && PreviousGeneration.GenerationOrdinals.TryGetValue(previousTypeDef, out int lastEmittedOrdinal)) { // Type previously emitted with Replace semantics is now updated in-place. Use the ordinal used to emit the last version of the type. return lastEmittedOrdinal; } } return 0; } } /// <summary> /// Common base class for C# and VB PE module builder. /// </summary> internal abstract class PEModuleBuilder<TCompilation, TSourceModuleSymbol, TAssemblySymbol, TTypeSymbol, TNamedTypeSymbol, TMethodSymbol, TSyntaxNode, TEmbeddedTypesManager, TModuleCompilationState> : CommonPEModuleBuilder, ITokenDeferral where TCompilation : Compilation where TSourceModuleSymbol : class, IModuleSymbolInternal where TAssemblySymbol : class, IAssemblySymbolInternal where TTypeSymbol : class, ITypeSymbolInternal where TNamedTypeSymbol : class, TTypeSymbol, INamedTypeSymbolInternal where TMethodSymbol : class, IMethodSymbolInternal where TSyntaxNode : SyntaxNode where TEmbeddedTypesManager : CommonEmbeddedTypesManager where TModuleCompilationState : ModuleCompilationState<TNamedTypeSymbol, TMethodSymbol> { internal readonly TSourceModuleSymbol SourceModule; internal readonly TCompilation Compilation; private PrivateImplementationDetails _privateImplementationDetails; private ArrayMethods _lazyArrayMethods; private HashSet<string> _namesOfTopLevelTypes; internal readonly TModuleCompilationState CompilationState; public Cci.RootModuleType RootModuleType { get; } = new Cci.RootModuleType(); public abstract TEmbeddedTypesManager EmbeddedTypesManagerOpt { get; } protected PEModuleBuilder( TCompilation compilation, TSourceModuleSymbol sourceModule, Cci.ModulePropertiesForSerialization serializationProperties, IEnumerable<ResourceDescription> manifestResources, OutputKind outputKind, EmitOptions emitOptions, TModuleCompilationState compilationState) : base(manifestResources, emitOptions, outputKind, serializationProperties, compilation) { Debug.Assert(sourceModule != null); Debug.Assert(serializationProperties != null); Compilation = compilation; SourceModule = sourceModule; this.CompilationState = compilationState; } internal sealed override void CompilationFinished() { this.CompilationState.Freeze(); } internal override IAssemblySymbolInternal CommonCorLibrary => CorLibrary; internal abstract TAssemblySymbol CorLibrary { get; } internal abstract Cci.INamedTypeReference GetSpecialType(SpecialType specialType, TSyntaxNode syntaxNodeOpt, DiagnosticBag diagnostics); internal sealed override Cci.ITypeReference EncTranslateType(ITypeSymbolInternal type, DiagnosticBag diagnostics) { return EncTranslateLocalVariableType((TTypeSymbol)type, diagnostics); } internal virtual Cci.ITypeReference EncTranslateLocalVariableType(TTypeSymbol type, DiagnosticBag diagnostics) { return Translate(type, null, diagnostics); } protected bool HaveDeterminedTopLevelTypes { get { return _namesOfTopLevelTypes != null; } } protected bool ContainsTopLevelType(string fullEmittedName) { return _namesOfTopLevelTypes.Contains(fullEmittedName); } /// <summary> /// Returns all top-level (not nested) types defined in the module. /// </summary> public override IEnumerable<Cci.INamespaceTypeDefinition> GetTopLevelTypeDefinitions(EmitContext context) { Cci.TypeReferenceIndexer typeReferenceIndexer = null; HashSet<string> names; // First time through, we need to collect emitted names of all top level types. if (_namesOfTopLevelTypes == null) { names = new HashSet<string>(); } else { names = null; } // First time through, we need to push things through TypeReferenceIndexer // to make sure we collect all to be embedded NoPia types and members. if (EmbeddedTypesManagerOpt != null && !EmbeddedTypesManagerOpt.IsFrozen) { typeReferenceIndexer = new Cci.TypeReferenceIndexer(context); Debug.Assert(names != null); // Run this reference indexer on the assembly- and module-level attributes first. // We'll run it on all other types below. // The purpose is to trigger Translate on all types. Dispatch(typeReferenceIndexer); } AddTopLevelType(names, RootModuleType); VisitTopLevelType(typeReferenceIndexer, RootModuleType); yield return RootModuleType; foreach (var typeDef in GetAnonymousTypeDefinitions(context)) { AddTopLevelType(names, typeDef); VisitTopLevelType(typeReferenceIndexer, typeDef); yield return typeDef; } foreach (var typeDef in GetTopLevelTypeDefinitionsCore(context)) { AddTopLevelType(names, typeDef); VisitTopLevelType(typeReferenceIndexer, typeDef); yield return typeDef; } var privateImpl = PrivateImplClass; if (privateImpl != null) { AddTopLevelType(names, privateImpl); VisitTopLevelType(typeReferenceIndexer, privateImpl); yield return privateImpl; } if (EmbeddedTypesManagerOpt != null) { foreach (var embedded in EmbeddedTypesManagerOpt.GetTypes(context.Diagnostics, names)) { AddTopLevelType(names, embedded); yield return embedded; } } if (names != null) { Debug.Assert(_namesOfTopLevelTypes == null); _namesOfTopLevelTypes = names; } static void AddTopLevelType(HashSet<string> names, Cci.INamespaceTypeDefinition type) // _namesOfTopLevelTypes are only used to generated exported types, which are not emitted in EnC deltas (hence generation 0): => names?.Add(MetadataHelpers.BuildQualifiedName(type.NamespaceName, Cci.MetadataWriter.GetMangledName(type, generation: 0))); } public virtual ImmutableArray<TNamedTypeSymbol> GetAdditionalTopLevelTypes() => ImmutableArray<TNamedTypeSymbol>.Empty; public virtual ImmutableArray<TNamedTypeSymbol> GetEmbeddedTypes(DiagnosticBag diagnostics) => ImmutableArray<TNamedTypeSymbol>.Empty; internal abstract Cci.IAssemblyReference Translate(TAssemblySymbol symbol, DiagnosticBag diagnostics); internal abstract Cci.ITypeReference Translate(TTypeSymbol symbol, TSyntaxNode syntaxNodeOpt, DiagnosticBag diagnostics); internal abstract Cci.IMethodReference Translate(TMethodSymbol symbol, DiagnosticBag diagnostics, bool needDeclaration); internal sealed override Cci.IAssemblyReference Translate(IAssemblySymbolInternal symbol, DiagnosticBag diagnostics) { return Translate((TAssemblySymbol)symbol, diagnostics); } internal sealed override Cci.ITypeReference Translate(ITypeSymbolInternal symbol, SyntaxNode syntaxNodeOpt, DiagnosticBag diagnostics) { return Translate((TTypeSymbol)symbol, (TSyntaxNode)syntaxNodeOpt, diagnostics); } internal sealed override Cci.IMethodReference Translate(IMethodSymbolInternal symbol, DiagnosticBag diagnostics, bool needDeclaration) { return Translate((TMethodSymbol)symbol, diagnostics, needDeclaration); } internal sealed override IModuleSymbolInternal CommonSourceModule => SourceModule; internal sealed override Compilation CommonCompilation => Compilation; internal sealed override CommonModuleCompilationState CommonModuleCompilationState => CompilationState; internal sealed override CommonEmbeddedTypesManager CommonEmbeddedTypesManagerOpt => EmbeddedTypesManagerOpt; internal MetadataConstant CreateConstant( TTypeSymbol type, object value, TSyntaxNode syntaxNodeOpt, DiagnosticBag diagnostics) { return new MetadataConstant(Translate(type, syntaxNodeOpt, diagnostics), value); } private static void VisitTopLevelType(Cci.TypeReferenceIndexer noPiaIndexer, Cci.INamespaceTypeDefinition type) { noPiaIndexer?.Visit((Cci.ITypeDefinition)type); } internal Cci.IFieldReference GetModuleVersionId(Cci.ITypeReference mvidType, TSyntaxNode syntaxOpt, DiagnosticBag diagnostics) { PrivateImplementationDetails details = GetPrivateImplClass(syntaxOpt, diagnostics); EnsurePrivateImplementationDetailsStaticConstructor(details, syntaxOpt, diagnostics); return details.GetModuleVersionId(mvidType); } internal Cci.IFieldReference GetInstrumentationPayloadRoot(int analysisKind, Cci.ITypeReference payloadType, TSyntaxNode syntaxOpt, DiagnosticBag diagnostics) { PrivateImplementationDetails details = GetPrivateImplClass(syntaxOpt, diagnostics); EnsurePrivateImplementationDetailsStaticConstructor(details, syntaxOpt, diagnostics); return details.GetOrAddInstrumentationPayloadRoot(analysisKind, payloadType); } private void EnsurePrivateImplementationDetailsStaticConstructor(PrivateImplementationDetails details, TSyntaxNode syntaxOpt, DiagnosticBag diagnostics) { if (details.GetMethod(WellKnownMemberNames.StaticConstructorName) == null) { details.TryAddSynthesizedMethod(CreatePrivateImplementationDetailsStaticConstructor(details, syntaxOpt, diagnostics)); } } protected abstract Cci.IMethodDefinition CreatePrivateImplementationDetailsStaticConstructor(PrivateImplementationDetails details, TSyntaxNode syntaxOpt, DiagnosticBag diagnostics); #region Synthesized Members /// <summary> /// Captures the set of synthesized definitions that should be added to a type /// during emit process. /// </summary> private sealed class SynthesizedDefinitions { public ConcurrentQueue<Cci.INestedTypeDefinition> NestedTypes; public ConcurrentQueue<Cci.IMethodDefinition> Methods; public ConcurrentQueue<Cci.IPropertyDefinition> Properties; public ConcurrentQueue<Cci.IFieldDefinition> Fields; public ImmutableArray<ISymbolInternal> GetAllMembers() { var builder = ArrayBuilder<ISymbolInternal>.GetInstance(); if (Fields != null) { foreach (var field in Fields) { builder.Add(field.GetInternalSymbol()); } } if (Methods != null) { foreach (var method in Methods) { builder.Add(method.GetInternalSymbol()); } } if (Properties != null) { foreach (var property in Properties) { builder.Add(property.GetInternalSymbol()); } } if (NestedTypes != null) { foreach (var type in NestedTypes) { builder.Add(type.GetInternalSymbol()); } } return builder.ToImmutableAndFree(); } } private readonly ConcurrentDictionary<TNamedTypeSymbol, SynthesizedDefinitions> _synthesizedTypeMembers = new ConcurrentDictionary<TNamedTypeSymbol, SynthesizedDefinitions>(ReferenceEqualityComparer.Instance); private ConcurrentDictionary<INamespaceSymbolInternal, ConcurrentQueue<INamespaceOrTypeSymbolInternal>> _lazySynthesizedNamespaceMembers; internal abstract IEnumerable<Cci.INestedTypeDefinition> GetSynthesizedNestedTypes(TNamedTypeSymbol container); /// <summary> /// Returns null if there are no compiler generated types. /// </summary> public IEnumerable<Cci.INestedTypeDefinition> GetSynthesizedTypes(TNamedTypeSymbol container) { IEnumerable<Cci.INestedTypeDefinition> declareTypes = GetSynthesizedNestedTypes(container); IEnumerable<Cci.INestedTypeDefinition> compileEmitTypes = null; if (_synthesizedTypeMembers.TryGetValue(container, out var defs)) { compileEmitTypes = defs.NestedTypes; } if (declareTypes == null) { return compileEmitTypes; } if (compileEmitTypes == null) { return declareTypes; } return declareTypes.Concat(compileEmitTypes); } private SynthesizedDefinitions GetOrAddSynthesizedDefinitions(TNamedTypeSymbol container) { Debug.Assert(container.IsDefinition); return _synthesizedTypeMembers.GetOrAdd(container, _ => new SynthesizedDefinitions()); } public void AddSynthesizedDefinition(TNamedTypeSymbol container, Cci.IMethodDefinition method) { Debug.Assert(method != null); SynthesizedDefinitions defs = GetOrAddSynthesizedDefinitions(container); if (defs.Methods == null) { Interlocked.CompareExchange(ref defs.Methods, new ConcurrentQueue<Cci.IMethodDefinition>(), null); } defs.Methods.Enqueue(method); } public void AddSynthesizedDefinition(TNamedTypeSymbol container, Cci.IPropertyDefinition property) { Debug.Assert(property != null); SynthesizedDefinitions defs = GetOrAddSynthesizedDefinitions(container); if (defs.Properties == null) { Interlocked.CompareExchange(ref defs.Properties, new ConcurrentQueue<Cci.IPropertyDefinition>(), null); } defs.Properties.Enqueue(property); } public void AddSynthesizedDefinition(TNamedTypeSymbol container, Cci.IFieldDefinition field) { Debug.Assert(field != null); SynthesizedDefinitions defs = GetOrAddSynthesizedDefinitions(container); if (defs.Fields == null) { Interlocked.CompareExchange(ref defs.Fields, new ConcurrentQueue<Cci.IFieldDefinition>(), null); } defs.Fields.Enqueue(field); } public void AddSynthesizedDefinition(TNamedTypeSymbol container, Cci.INestedTypeDefinition nestedType) { Debug.Assert(nestedType != null); SynthesizedDefinitions defs = GetOrAddSynthesizedDefinitions(container); if (defs.NestedTypes == null) { Interlocked.CompareExchange(ref defs.NestedTypes, new ConcurrentQueue<Cci.INestedTypeDefinition>(), null); } defs.NestedTypes.Enqueue(nestedType); } public void AddSynthesizedDefinition(INamespaceSymbolInternal container, INamespaceOrTypeSymbolInternal typeOrNamespace) { Debug.Assert(typeOrNamespace != null); if (_lazySynthesizedNamespaceMembers == null) { Interlocked.CompareExchange(ref _lazySynthesizedNamespaceMembers, new ConcurrentDictionary<INamespaceSymbolInternal, ConcurrentQueue<INamespaceOrTypeSymbolInternal>>(), null); } _lazySynthesizedNamespaceMembers.GetOrAdd(container, _ => new ConcurrentQueue<INamespaceOrTypeSymbolInternal>()).Enqueue(typeOrNamespace); } /// <summary> /// Returns null if there are no synthesized fields. /// </summary> public IEnumerable<Cci.IFieldDefinition> GetSynthesizedFields(TNamedTypeSymbol container) => _synthesizedTypeMembers.TryGetValue(container, out var defs) ? defs.Fields : null; /// <summary> /// Returns null if there are no synthesized properties. /// </summary> public IEnumerable<Cci.IPropertyDefinition> GetSynthesizedProperties(TNamedTypeSymbol container) => _synthesizedTypeMembers.TryGetValue(container, out var defs) ? defs.Properties : null; /// <summary> /// Returns null if there are no synthesized methods. /// </summary> public IEnumerable<Cci.IMethodDefinition> GetSynthesizedMethods(TNamedTypeSymbol container) => _synthesizedTypeMembers.TryGetValue(container, out var defs) ? defs.Methods : null; internal override ImmutableDictionary<ISymbolInternal, ImmutableArray<ISymbolInternal>> GetAllSynthesizedMembers() { var builder = ImmutableDictionary.CreateBuilder<ISymbolInternal, ImmutableArray<ISymbolInternal>>(); foreach (var entry in _synthesizedTypeMembers) { builder.Add(entry.Key, entry.Value.GetAllMembers()); } var namespaceMembers = _lazySynthesizedNamespaceMembers; if (namespaceMembers != null) { foreach (var entry in namespaceMembers) { builder.Add(entry.Key, entry.Value.ToImmutableArray<ISymbolInternal>()); } } return builder.ToImmutable(); } #endregion #region Token Mapping Cci.IFieldReference ITokenDeferral.GetFieldForData(ImmutableArray<byte> data, SyntaxNode syntaxNode, DiagnosticBag diagnostics) { Debug.Assert(this.SupportsPrivateImplClass); var privateImpl = this.GetPrivateImplClass((TSyntaxNode)syntaxNode, diagnostics); // map a field to the block (that makes it addressable via a token) return privateImpl.CreateDataField(data); } public abstract Cci.IMethodReference GetInitArrayHelper(); public ArrayMethods ArrayMethods { get { ArrayMethods result = _lazyArrayMethods; if (result == null) { result = new ArrayMethods(); if (Interlocked.CompareExchange(ref _lazyArrayMethods, result, null) != null) { result = _lazyArrayMethods; } } return result; } } #endregion #region Private Implementation Details Type internal PrivateImplementationDetails GetPrivateImplClass(TSyntaxNode syntaxNodeOpt, DiagnosticBag diagnostics) { var result = _privateImplementationDetails; if ((result == null) && this.SupportsPrivateImplClass) { result = new PrivateImplementationDetails( this, this.SourceModule.Name, Compilation.GetSubmissionSlotIndex(), this.GetSpecialType(SpecialType.System_Object, syntaxNodeOpt, diagnostics), this.GetSpecialType(SpecialType.System_ValueType, syntaxNodeOpt, diagnostics), this.GetSpecialType(SpecialType.System_Byte, syntaxNodeOpt, diagnostics), this.GetSpecialType(SpecialType.System_Int16, syntaxNodeOpt, diagnostics), this.GetSpecialType(SpecialType.System_Int32, syntaxNodeOpt, diagnostics), this.GetSpecialType(SpecialType.System_Int64, syntaxNodeOpt, diagnostics), SynthesizeAttribute(WellKnownMember.System_Runtime_CompilerServices_CompilerGeneratedAttribute__ctor)); if (Interlocked.CompareExchange(ref _privateImplementationDetails, result, null) != null) { result = _privateImplementationDetails; } } return result; } internal PrivateImplementationDetails PrivateImplClass { get { return _privateImplementationDetails; } } internal override bool SupportsPrivateImplClass { get { return true; } } #endregion public sealed override Cci.ITypeReference GetPlatformType(Cci.PlatformType platformType, EmitContext context) { Debug.Assert((object)this == context.Module); switch (platformType) { case Cci.PlatformType.SystemType: throw ExceptionUtilities.UnexpectedValue(platformType); default: return GetSpecialType((SpecialType)platformType, (TSyntaxNode)context.SyntaxNode, context.Diagnostics); } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Threading; using Microsoft.CodeAnalysis.CodeGen; using Microsoft.CodeAnalysis.Emit.NoPia; using Microsoft.CodeAnalysis.PooledObjects; using Microsoft.CodeAnalysis.Symbols; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.Emit { internal abstract class CommonPEModuleBuilder : Cci.IUnit, Cci.IModuleReference { internal readonly DebugDocumentsBuilder DebugDocumentsBuilder; internal readonly IEnumerable<ResourceDescription> ManifestResources; internal readonly Cci.ModulePropertiesForSerialization SerializationProperties; internal readonly OutputKind OutputKind; internal Stream RawWin32Resources; internal IEnumerable<Cci.IWin32Resource> Win32Resources; internal Cci.ResourceSection Win32ResourceSection; internal Stream SourceLinkStreamOpt; internal Cci.IMethodReference PEEntryPoint; internal Cci.IMethodReference DebugEntryPoint; private readonly ConcurrentDictionary<IMethodSymbolInternal, Cci.IMethodBody> _methodBodyMap; private readonly TokenMap _referencesInILMap = new(); private readonly ItemTokenMap<string> _stringsInILMap = new(); private readonly ItemTokenMap<Cci.DebugSourceDocument> _sourceDocumentsInILMap = new(); private ImmutableArray<Cci.AssemblyReferenceAlias> _lazyAssemblyReferenceAliases; private ImmutableArray<Cci.ManagedResource> _lazyManagedResources; private IEnumerable<EmbeddedText> _embeddedTexts = SpecializedCollections.EmptyEnumerable<EmbeddedText>(); // Only set when running tests to allow realized IL for a given method to be looked up by method. internal ConcurrentDictionary<IMethodSymbolInternal, CompilationTestData.MethodData> TestData { get; private set; } internal EmitOptions EmitOptions { get; } internal DebugInformationFormat DebugInformationFormat => EmitOptions.DebugInformationFormat; internal HashAlgorithmName PdbChecksumAlgorithm => EmitOptions.PdbChecksumAlgorithm; public CommonPEModuleBuilder( IEnumerable<ResourceDescription> manifestResources, EmitOptions emitOptions, OutputKind outputKind, Cci.ModulePropertiesForSerialization serializationProperties, Compilation compilation) { Debug.Assert(manifestResources != null); Debug.Assert(serializationProperties != null); Debug.Assert(compilation != null); ManifestResources = manifestResources; DebugDocumentsBuilder = new DebugDocumentsBuilder(compilation.Options.SourceReferenceResolver, compilation.IsCaseSensitive); OutputKind = outputKind; SerializationProperties = serializationProperties; _methodBodyMap = new ConcurrentDictionary<IMethodSymbolInternal, Cci.IMethodBody>(ReferenceEqualityComparer.Instance); EmitOptions = emitOptions; } #nullable enable /// <summary> /// Symbol changes when emitting EnC delta. /// </summary> public abstract SymbolChanges? EncSymbolChanges { get; } /// <summary> /// Previous EnC generation baseline, or null if this is not EnC delta. /// </summary> public abstract EmitBaseline? PreviousGeneration { get; } /// <summary> /// True if this module is an EnC update. /// </summary> public bool IsEncDelta => PreviousGeneration != null; /// <summary> /// EnC generation. 0 if the module is not an EnC delta, 1 if it is the first EnC delta, etc. /// </summary> public int CurrentGenerationOrdinal => (PreviousGeneration?.Ordinal + 1) ?? 0; #nullable disable /// <summary> /// If this module represents an assembly, name of the assembly used in AssemblyDef table. Otherwise name of the module same as <see cref="ModuleName"/>. /// </summary> public abstract string Name { get; } /// <summary> /// Name of the module. Used in ModuleDef table. /// </summary> internal abstract string ModuleName { get; } internal abstract Cci.IAssemblyReference Translate(IAssemblySymbolInternal symbol, DiagnosticBag diagnostics); internal abstract Cci.ITypeReference Translate(ITypeSymbolInternal symbol, SyntaxNode syntaxOpt, DiagnosticBag diagnostics); internal abstract Cci.IMethodReference Translate(IMethodSymbolInternal symbol, DiagnosticBag diagnostics, bool needDeclaration); internal abstract bool SupportsPrivateImplClass { get; } internal abstract Compilation CommonCompilation { get; } internal abstract IModuleSymbolInternal CommonSourceModule { get; } internal abstract IAssemblySymbolInternal CommonCorLibrary { get; } internal abstract CommonModuleCompilationState CommonModuleCompilationState { get; } internal abstract void CompilationFinished(); internal abstract ImmutableDictionary<ISymbolInternal, ImmutableArray<ISymbolInternal>> GetAllSynthesizedMembers(); internal abstract CommonEmbeddedTypesManager CommonEmbeddedTypesManagerOpt { get; } internal abstract Cci.ITypeReference EncTranslateType(ITypeSymbolInternal type, DiagnosticBag diagnostics); public abstract IEnumerable<Cci.ICustomAttribute> GetSourceAssemblyAttributes(bool isRefAssembly); public abstract IEnumerable<Cci.SecurityAttribute> GetSourceAssemblySecurityAttributes(); public abstract IEnumerable<Cci.ICustomAttribute> GetSourceModuleAttributes(); internal abstract Cci.ICustomAttribute SynthesizeAttribute(WellKnownMember attributeConstructor); /// <summary> /// Public types defined in other modules making up this assembly and to which other assemblies may refer to via this assembly /// followed by types forwarded to another assembly. /// </summary> public abstract ImmutableArray<Cci.ExportedType> GetExportedTypes(DiagnosticBag diagnostics); /// <summary> /// Used to distinguish which style to pick while writing native PDB information. /// </summary> /// <remarks> /// The PDB content for custom debug information is different between Visual Basic and CSharp. /// E.g. C# always includes a CustomMetadata Header (MD2) that contains the namespace scope counts, where /// as VB only outputs namespace imports into the namespace scopes. /// C# defines forwards in that header, VB includes them into the scopes list. /// /// Currently the compiler doesn't allow mixing C# and VB method bodies. Thus this flag can be per module. /// It is possible to move this flag to per-method basis but native PDB CDI forwarding would need to be adjusted accordingly. /// </remarks> public abstract bool GenerateVisualBasicStylePdb { get; } /// <summary> /// Linked assembly names to be stored to native PDB (VB only). /// </summary> public abstract IEnumerable<string> LinkedAssembliesDebugInfo { get; } /// <summary> /// Project level imports (VB only, TODO: C# scripts). /// </summary> public abstract ImmutableArray<Cci.UsedNamespaceOrType> GetImports(); /// <summary> /// Default namespace (VB only). /// </summary> public abstract string DefaultNamespace { get; } protected abstract Cci.IAssemblyReference GetCorLibraryReferenceToEmit(EmitContext context); protected abstract IEnumerable<Cci.IAssemblyReference> GetAssemblyReferencesFromAddedModules(DiagnosticBag diagnostics); protected abstract void AddEmbeddedResourcesFromAddedModules(ArrayBuilder<Cci.ManagedResource> builder, DiagnosticBag diagnostics); public abstract Cci.ITypeReference GetPlatformType(Cci.PlatformType platformType, EmitContext context); public abstract bool IsPlatformType(Cci.ITypeReference typeRef, Cci.PlatformType platformType); public abstract IEnumerable<Cci.INamespaceTypeDefinition> GetTopLevelTypeDefinitions(EmitContext context); public IEnumerable<Cci.INamespaceTypeDefinition> GetTopLevelTypeDefinitionsCore(EmitContext context) { foreach (var typeDef in GetAdditionalTopLevelTypeDefinitions(context)) { yield return typeDef; } foreach (var typeDef in GetEmbeddedTypeDefinitions(context)) { yield return typeDef; } foreach (var typeDef in GetTopLevelSourceTypeDefinitions(context)) { yield return typeDef; } } /// <summary> /// Additional top-level types injected by the Expression Evaluators. /// </summary> public abstract IEnumerable<Cci.INamespaceTypeDefinition> GetAdditionalTopLevelTypeDefinitions(EmitContext context); /// <summary> /// Anonymous types defined in the compilation. /// </summary> public abstract IEnumerable<Cci.INamespaceTypeDefinition> GetAnonymousTypeDefinitions(EmitContext context); /// <summary> /// Top-level embedded types (e.g. attribute types that are not present in referenced assemblies). /// </summary> public abstract IEnumerable<Cci.INamespaceTypeDefinition> GetEmbeddedTypeDefinitions(EmitContext context); /// <summary> /// Top-level named types defined in source. /// </summary> public abstract IEnumerable<Cci.INamespaceTypeDefinition> GetTopLevelSourceTypeDefinitions(EmitContext context); /// <summary> /// A list of the files that constitute the assembly. Empty for netmodule. These are not the source language files that may have been /// used to compile the assembly, but the files that contain constituent modules of a multi-module assembly as well /// as any external resources. It corresponds to the File table of the .NET assembly file format. /// </summary> public abstract IEnumerable<Cci.IFileReference> GetFiles(EmitContext context); /// <summary> /// Builds symbol definition to location map used for emitting token -> location info /// into PDB to be consumed by WinMdExp.exe tool (only applicable for /t:winmdobj) /// </summary> public abstract MultiDictionary<Cci.DebugSourceDocument, Cci.DefinitionWithLocation> GetSymbolToLocationMap(); /// <summary> /// Number of debug documents in the module. /// Used to determine capacities of lists and indices when emitting debug info. /// </summary> public int DebugDocumentCount => DebugDocumentsBuilder.DebugDocumentCount; public void Dispatch(Cci.MetadataVisitor visitor) => visitor.Visit(this); IEnumerable<Cci.ICustomAttribute> Cci.IReference.GetAttributes(EmitContext context) => SpecializedCollections.EmptyEnumerable<Cci.ICustomAttribute>(); Cci.IDefinition Cci.IReference.AsDefinition(EmitContext context) { Debug.Assert(ReferenceEquals(context.Module, this)); return this; } Symbols.ISymbolInternal Cci.IReference.GetInternalSymbol() => null; public abstract ISourceAssemblySymbolInternal SourceAssemblyOpt { get; } /// <summary> /// An approximate number of method definitions that can /// provide a basis for approximating the capacities of /// various databases used during Emit. /// </summary> public int HintNumberOfMethodDefinitions // Try to guess at the size of tables to prevent re-allocation. The method body // map is pretty close, but unfortunately it tends to undercount. x1.5 seems like // a healthy amount of room based on compiling Roslyn. => (int)(_methodBodyMap.Count * 1.5); internal Cci.IMethodBody GetMethodBody(IMethodSymbolInternal methodSymbol) { Debug.Assert(methodSymbol.ContainingModule == CommonSourceModule); Debug.Assert(methodSymbol.IsDefinition); Debug.Assert(((IMethodSymbol)methodSymbol.GetISymbol()).PartialDefinitionPart == null); // Must be definition. Cci.IMethodBody body; if (_methodBodyMap.TryGetValue(methodSymbol, out body)) { return body; } return null; } public void SetMethodBody(IMethodSymbolInternal methodSymbol, Cci.IMethodBody body) { Debug.Assert(methodSymbol.ContainingModule == CommonSourceModule); Debug.Assert(methodSymbol.IsDefinition); Debug.Assert(((IMethodSymbol)methodSymbol.GetISymbol()).PartialDefinitionPart == null); // Must be definition. Debug.Assert(body == null || (object)methodSymbol == body.MethodDefinition.GetInternalSymbol()); _methodBodyMap.Add(methodSymbol, body); } internal void SetPEEntryPoint(IMethodSymbolInternal method, DiagnosticBag diagnostics) { Debug.Assert(method == null || IsSourceDefinition(method)); Debug.Assert(OutputKind.IsApplication()); PEEntryPoint = Translate(method, diagnostics, needDeclaration: true); } internal void SetDebugEntryPoint(IMethodSymbolInternal method, DiagnosticBag diagnostics) { Debug.Assert(method == null || IsSourceDefinition(method)); DebugEntryPoint = Translate(method, diagnostics, needDeclaration: true); } private bool IsSourceDefinition(IMethodSymbolInternal method) { return method.ContainingModule == CommonSourceModule && method.IsDefinition; } /// <summary> /// CorLibrary assembly referenced by this module. /// </summary> public Cci.IAssemblyReference GetCorLibrary(EmitContext context) { return Translate(CommonCorLibrary, context.Diagnostics); } public Cci.IAssemblyReference GetContainingAssembly(EmitContext context) { return OutputKind == OutputKind.NetModule ? null : (Cci.IAssemblyReference)this; } /// <summary> /// Returns User Strings referenced from the IL in the module. /// </summary> public IEnumerable<string> GetStrings() { return _stringsInILMap.GetAllItems(); } public uint GetFakeSymbolTokenForIL(Cci.IReference symbol, SyntaxNode syntaxNode, DiagnosticBag diagnostics) { uint token = _referencesInILMap.GetOrAddTokenFor(symbol, out bool added); if (added) { ReferenceDependencyWalker.VisitReference(symbol, new EmitContext(this, syntaxNode, diagnostics, metadataOnly: false, includePrivateMembers: true)); } return token; } public uint GetFakeSymbolTokenForIL(Cci.ISignature symbol, SyntaxNode syntaxNode, DiagnosticBag diagnostics) { uint token = _referencesInILMap.GetOrAddTokenFor(symbol, out bool added); if (added) { ReferenceDependencyWalker.VisitSignature(symbol, new EmitContext(this, syntaxNode, diagnostics, metadataOnly: false, includePrivateMembers: true)); } return token; } public uint GetSourceDocumentIndexForIL(Cci.DebugSourceDocument document) { return _sourceDocumentsInILMap.GetOrAddTokenFor(document); } internal Cci.DebugSourceDocument GetSourceDocumentFromIndex(uint token) { return _sourceDocumentsInILMap.GetItem(token); } public object GetReferenceFromToken(uint token) { return _referencesInILMap.GetItem(token); } public uint GetFakeStringTokenForIL(string str) { return _stringsInILMap.GetOrAddTokenFor(str); } public string GetStringFromToken(uint token) { return _stringsInILMap.GetItem(token); } public ReadOnlySpan<object> ReferencesInIL() { return _referencesInILMap.GetAllItems(); } /// <summary> /// Assembly reference aliases (C# only). /// </summary> public ImmutableArray<Cci.AssemblyReferenceAlias> GetAssemblyReferenceAliases(EmitContext context) { if (_lazyAssemblyReferenceAliases.IsDefault) { ImmutableInterlocked.InterlockedCompareExchange(ref _lazyAssemblyReferenceAliases, CalculateAssemblyReferenceAliases(context), default(ImmutableArray<Cci.AssemblyReferenceAlias>)); } return _lazyAssemblyReferenceAliases; } private ImmutableArray<Cci.AssemblyReferenceAlias> CalculateAssemblyReferenceAliases(EmitContext context) { var result = ArrayBuilder<Cci.AssemblyReferenceAlias>.GetInstance(); foreach (var assemblyAndAliases in CommonCompilation.GetBoundReferenceManager().GetReferencedAssemblyAliases()) { var assembly = assemblyAndAliases.Item1; var aliases = assemblyAndAliases.Item2; for (int i = 0; i < aliases.Length; i++) { string alias = aliases[i]; // filter out duplicates and global aliases: if (alias != MetadataReferenceProperties.GlobalAlias && aliases.IndexOf(alias, 0, i) < 0) { result.Add(new Cci.AssemblyReferenceAlias(alias, Translate(assembly, context.Diagnostics))); } } } return result.ToImmutableAndFree(); } public IEnumerable<Cci.IAssemblyReference> GetAssemblyReferences(EmitContext context) { Cci.IAssemblyReference corLibrary = GetCorLibraryReferenceToEmit(context); // Only add Cor Library reference explicitly, PeWriter will add // other references implicitly on as needed basis. if (corLibrary != null) { yield return corLibrary; } if (OutputKind != OutputKind.NetModule) { // Explicitly add references from added modules foreach (var aRef in GetAssemblyReferencesFromAddedModules(context.Diagnostics)) { yield return aRef; } } } public ImmutableArray<Cci.ManagedResource> GetResources(EmitContext context) { if (context.IsRefAssembly) { // Manifest resources are not included in ref assemblies // Ref assemblies don't support added modules return ImmutableArray<Cci.ManagedResource>.Empty; } if (_lazyManagedResources.IsDefault) { var builder = ArrayBuilder<Cci.ManagedResource>.GetInstance(); foreach (ResourceDescription r in ManifestResources) { builder.Add(r.ToManagedResource(this)); } if (OutputKind != OutputKind.NetModule) { // Explicitly add resources from added modules AddEmbeddedResourcesFromAddedModules(builder, context.Diagnostics); } _lazyManagedResources = builder.ToImmutableAndFree(); } return _lazyManagedResources; } public IEnumerable<EmbeddedText> EmbeddedTexts { get { return _embeddedTexts; } set { Debug.Assert(value != null); _embeddedTexts = value; } } internal bool SaveTestData => TestData != null; internal void SetMethodTestData(IMethodSymbolInternal method, ILBuilder builder) { TestData.Add(method, new CompilationTestData.MethodData(builder, method)); } internal void SetMethodTestData(ConcurrentDictionary<IMethodSymbolInternal, CompilationTestData.MethodData> methods) { Debug.Assert(TestData == null); TestData = methods; } public int GetTypeDefinitionGeneration(Cci.INamedTypeDefinition typeDef) { if (PreviousGeneration != null) { var symbolChanges = EncSymbolChanges!; if (symbolChanges.IsReplaced(typeDef)) { // Type emitted with Replace semantics in this delta, it's name should have the current generation ordinal suffix. return CurrentGenerationOrdinal; } var previousTypeDef = symbolChanges.DefinitionMap.MapDefinition(typeDef); if (previousTypeDef != null && PreviousGeneration.GenerationOrdinals.TryGetValue(previousTypeDef, out int lastEmittedOrdinal)) { // Type previously emitted with Replace semantics is now updated in-place. Use the ordinal used to emit the last version of the type. return lastEmittedOrdinal; } } return 0; } } /// <summary> /// Common base class for C# and VB PE module builder. /// </summary> internal abstract class PEModuleBuilder<TCompilation, TSourceModuleSymbol, TAssemblySymbol, TTypeSymbol, TNamedTypeSymbol, TMethodSymbol, TSyntaxNode, TEmbeddedTypesManager, TModuleCompilationState> : CommonPEModuleBuilder, ITokenDeferral where TCompilation : Compilation where TSourceModuleSymbol : class, IModuleSymbolInternal where TAssemblySymbol : class, IAssemblySymbolInternal where TTypeSymbol : class, ITypeSymbolInternal where TNamedTypeSymbol : class, TTypeSymbol, INamedTypeSymbolInternal where TMethodSymbol : class, IMethodSymbolInternal where TSyntaxNode : SyntaxNode where TEmbeddedTypesManager : CommonEmbeddedTypesManager where TModuleCompilationState : ModuleCompilationState<TNamedTypeSymbol, TMethodSymbol> { internal readonly TSourceModuleSymbol SourceModule; internal readonly TCompilation Compilation; private PrivateImplementationDetails _privateImplementationDetails; private ArrayMethods _lazyArrayMethods; private HashSet<string> _namesOfTopLevelTypes; internal readonly TModuleCompilationState CompilationState; public Cci.RootModuleType RootModuleType { get; } = new Cci.RootModuleType(); public abstract TEmbeddedTypesManager EmbeddedTypesManagerOpt { get; } protected PEModuleBuilder( TCompilation compilation, TSourceModuleSymbol sourceModule, Cci.ModulePropertiesForSerialization serializationProperties, IEnumerable<ResourceDescription> manifestResources, OutputKind outputKind, EmitOptions emitOptions, TModuleCompilationState compilationState) : base(manifestResources, emitOptions, outputKind, serializationProperties, compilation) { Debug.Assert(sourceModule != null); Debug.Assert(serializationProperties != null); Compilation = compilation; SourceModule = sourceModule; this.CompilationState = compilationState; } internal sealed override void CompilationFinished() { this.CompilationState.Freeze(); } internal override IAssemblySymbolInternal CommonCorLibrary => CorLibrary; internal abstract TAssemblySymbol CorLibrary { get; } internal abstract Cci.INamedTypeReference GetSpecialType(SpecialType specialType, TSyntaxNode syntaxNodeOpt, DiagnosticBag diagnostics); internal sealed override Cci.ITypeReference EncTranslateType(ITypeSymbolInternal type, DiagnosticBag diagnostics) { return EncTranslateLocalVariableType((TTypeSymbol)type, diagnostics); } internal virtual Cci.ITypeReference EncTranslateLocalVariableType(TTypeSymbol type, DiagnosticBag diagnostics) { return Translate(type, null, diagnostics); } protected bool HaveDeterminedTopLevelTypes { get { return _namesOfTopLevelTypes != null; } } protected bool ContainsTopLevelType(string fullEmittedName) { return _namesOfTopLevelTypes.Contains(fullEmittedName); } /// <summary> /// Returns all top-level (not nested) types defined in the module. /// </summary> public override IEnumerable<Cci.INamespaceTypeDefinition> GetTopLevelTypeDefinitions(EmitContext context) { Cci.TypeReferenceIndexer typeReferenceIndexer = null; HashSet<string> names; // First time through, we need to collect emitted names of all top level types. if (_namesOfTopLevelTypes == null) { names = new HashSet<string>(); } else { names = null; } // First time through, we need to push things through TypeReferenceIndexer // to make sure we collect all to be embedded NoPia types and members. if (EmbeddedTypesManagerOpt != null && !EmbeddedTypesManagerOpt.IsFrozen) { typeReferenceIndexer = new Cci.TypeReferenceIndexer(context); Debug.Assert(names != null); // Run this reference indexer on the assembly- and module-level attributes first. // We'll run it on all other types below. // The purpose is to trigger Translate on all types. Dispatch(typeReferenceIndexer); } AddTopLevelType(names, RootModuleType); VisitTopLevelType(typeReferenceIndexer, RootModuleType); yield return RootModuleType; foreach (var typeDef in GetAnonymousTypeDefinitions(context)) { AddTopLevelType(names, typeDef); VisitTopLevelType(typeReferenceIndexer, typeDef); yield return typeDef; } foreach (var typeDef in GetTopLevelTypeDefinitionsCore(context)) { AddTopLevelType(names, typeDef); VisitTopLevelType(typeReferenceIndexer, typeDef); yield return typeDef; } var privateImpl = PrivateImplClass; if (privateImpl != null) { AddTopLevelType(names, privateImpl); VisitTopLevelType(typeReferenceIndexer, privateImpl); yield return privateImpl; } if (EmbeddedTypesManagerOpt != null) { foreach (var embedded in EmbeddedTypesManagerOpt.GetTypes(context.Diagnostics, names)) { AddTopLevelType(names, embedded); yield return embedded; } } if (names != null) { Debug.Assert(_namesOfTopLevelTypes == null); _namesOfTopLevelTypes = names; } static void AddTopLevelType(HashSet<string> names, Cci.INamespaceTypeDefinition type) // _namesOfTopLevelTypes are only used to generated exported types, which are not emitted in EnC deltas (hence generation 0): => names?.Add(MetadataHelpers.BuildQualifiedName(type.NamespaceName, Cci.MetadataWriter.GetMangledName(type, generation: 0))); } public virtual ImmutableArray<TNamedTypeSymbol> GetAdditionalTopLevelTypes() => ImmutableArray<TNamedTypeSymbol>.Empty; public virtual ImmutableArray<TNamedTypeSymbol> GetEmbeddedTypes(DiagnosticBag diagnostics) => ImmutableArray<TNamedTypeSymbol>.Empty; internal abstract Cci.IAssemblyReference Translate(TAssemblySymbol symbol, DiagnosticBag diagnostics); internal abstract Cci.ITypeReference Translate(TTypeSymbol symbol, TSyntaxNode syntaxNodeOpt, DiagnosticBag diagnostics); internal abstract Cci.IMethodReference Translate(TMethodSymbol symbol, DiagnosticBag diagnostics, bool needDeclaration); internal sealed override Cci.IAssemblyReference Translate(IAssemblySymbolInternal symbol, DiagnosticBag diagnostics) { return Translate((TAssemblySymbol)symbol, diagnostics); } internal sealed override Cci.ITypeReference Translate(ITypeSymbolInternal symbol, SyntaxNode syntaxNodeOpt, DiagnosticBag diagnostics) { return Translate((TTypeSymbol)symbol, (TSyntaxNode)syntaxNodeOpt, diagnostics); } internal sealed override Cci.IMethodReference Translate(IMethodSymbolInternal symbol, DiagnosticBag diagnostics, bool needDeclaration) { return Translate((TMethodSymbol)symbol, diagnostics, needDeclaration); } internal sealed override IModuleSymbolInternal CommonSourceModule => SourceModule; internal sealed override Compilation CommonCompilation => Compilation; internal sealed override CommonModuleCompilationState CommonModuleCompilationState => CompilationState; internal sealed override CommonEmbeddedTypesManager CommonEmbeddedTypesManagerOpt => EmbeddedTypesManagerOpt; internal MetadataConstant CreateConstant( TTypeSymbol type, object value, TSyntaxNode syntaxNodeOpt, DiagnosticBag diagnostics) { return new MetadataConstant(Translate(type, syntaxNodeOpt, diagnostics), value); } private static void VisitTopLevelType(Cci.TypeReferenceIndexer noPiaIndexer, Cci.INamespaceTypeDefinition type) { noPiaIndexer?.Visit((Cci.ITypeDefinition)type); } internal Cci.IFieldReference GetModuleVersionId(Cci.ITypeReference mvidType, TSyntaxNode syntaxOpt, DiagnosticBag diagnostics) { PrivateImplementationDetails details = GetPrivateImplClass(syntaxOpt, diagnostics); EnsurePrivateImplementationDetailsStaticConstructor(details, syntaxOpt, diagnostics); return details.GetModuleVersionId(mvidType); } internal Cci.IFieldReference GetInstrumentationPayloadRoot(int analysisKind, Cci.ITypeReference payloadType, TSyntaxNode syntaxOpt, DiagnosticBag diagnostics) { PrivateImplementationDetails details = GetPrivateImplClass(syntaxOpt, diagnostics); EnsurePrivateImplementationDetailsStaticConstructor(details, syntaxOpt, diagnostics); return details.GetOrAddInstrumentationPayloadRoot(analysisKind, payloadType); } private void EnsurePrivateImplementationDetailsStaticConstructor(PrivateImplementationDetails details, TSyntaxNode syntaxOpt, DiagnosticBag diagnostics) { if (details.GetMethod(WellKnownMemberNames.StaticConstructorName) == null) { details.TryAddSynthesizedMethod(CreatePrivateImplementationDetailsStaticConstructor(details, syntaxOpt, diagnostics)); } } protected abstract Cci.IMethodDefinition CreatePrivateImplementationDetailsStaticConstructor(PrivateImplementationDetails details, TSyntaxNode syntaxOpt, DiagnosticBag diagnostics); #region Synthesized Members /// <summary> /// Captures the set of synthesized definitions that should be added to a type /// during emit process. /// </summary> private sealed class SynthesizedDefinitions { public ConcurrentQueue<Cci.INestedTypeDefinition> NestedTypes; public ConcurrentQueue<Cci.IMethodDefinition> Methods; public ConcurrentQueue<Cci.IPropertyDefinition> Properties; public ConcurrentQueue<Cci.IFieldDefinition> Fields; public ImmutableArray<ISymbolInternal> GetAllMembers() { var builder = ArrayBuilder<ISymbolInternal>.GetInstance(); if (Fields != null) { foreach (var field in Fields) { builder.Add(field.GetInternalSymbol()); } } if (Methods != null) { foreach (var method in Methods) { builder.Add(method.GetInternalSymbol()); } } if (Properties != null) { foreach (var property in Properties) { builder.Add(property.GetInternalSymbol()); } } if (NestedTypes != null) { foreach (var type in NestedTypes) { builder.Add(type.GetInternalSymbol()); } } return builder.ToImmutableAndFree(); } } private readonly ConcurrentDictionary<TNamedTypeSymbol, SynthesizedDefinitions> _synthesizedTypeMembers = new ConcurrentDictionary<TNamedTypeSymbol, SynthesizedDefinitions>(ReferenceEqualityComparer.Instance); private ConcurrentDictionary<INamespaceSymbolInternal, ConcurrentQueue<INamespaceOrTypeSymbolInternal>> _lazySynthesizedNamespaceMembers; internal abstract IEnumerable<Cci.INestedTypeDefinition> GetSynthesizedNestedTypes(TNamedTypeSymbol container); /// <summary> /// Returns null if there are no compiler generated types. /// </summary> public IEnumerable<Cci.INestedTypeDefinition> GetSynthesizedTypes(TNamedTypeSymbol container) { IEnumerable<Cci.INestedTypeDefinition> declareTypes = GetSynthesizedNestedTypes(container); IEnumerable<Cci.INestedTypeDefinition> compileEmitTypes = null; if (_synthesizedTypeMembers.TryGetValue(container, out var defs)) { compileEmitTypes = defs.NestedTypes; } if (declareTypes == null) { return compileEmitTypes; } if (compileEmitTypes == null) { return declareTypes; } return declareTypes.Concat(compileEmitTypes); } private SynthesizedDefinitions GetOrAddSynthesizedDefinitions(TNamedTypeSymbol container) { Debug.Assert(container.IsDefinition); return _synthesizedTypeMembers.GetOrAdd(container, _ => new SynthesizedDefinitions()); } public void AddSynthesizedDefinition(TNamedTypeSymbol container, Cci.IMethodDefinition method) { Debug.Assert(method != null); SynthesizedDefinitions defs = GetOrAddSynthesizedDefinitions(container); if (defs.Methods == null) { Interlocked.CompareExchange(ref defs.Methods, new ConcurrentQueue<Cci.IMethodDefinition>(), null); } defs.Methods.Enqueue(method); } public void AddSynthesizedDefinition(TNamedTypeSymbol container, Cci.IPropertyDefinition property) { Debug.Assert(property != null); SynthesizedDefinitions defs = GetOrAddSynthesizedDefinitions(container); if (defs.Properties == null) { Interlocked.CompareExchange(ref defs.Properties, new ConcurrentQueue<Cci.IPropertyDefinition>(), null); } defs.Properties.Enqueue(property); } public void AddSynthesizedDefinition(TNamedTypeSymbol container, Cci.IFieldDefinition field) { Debug.Assert(field != null); SynthesizedDefinitions defs = GetOrAddSynthesizedDefinitions(container); if (defs.Fields == null) { Interlocked.CompareExchange(ref defs.Fields, new ConcurrentQueue<Cci.IFieldDefinition>(), null); } defs.Fields.Enqueue(field); } public void AddSynthesizedDefinition(TNamedTypeSymbol container, Cci.INestedTypeDefinition nestedType) { Debug.Assert(nestedType != null); SynthesizedDefinitions defs = GetOrAddSynthesizedDefinitions(container); if (defs.NestedTypes == null) { Interlocked.CompareExchange(ref defs.NestedTypes, new ConcurrentQueue<Cci.INestedTypeDefinition>(), null); } defs.NestedTypes.Enqueue(nestedType); } public void AddSynthesizedDefinition(INamespaceSymbolInternal container, INamespaceOrTypeSymbolInternal typeOrNamespace) { Debug.Assert(typeOrNamespace != null); if (_lazySynthesizedNamespaceMembers == null) { Interlocked.CompareExchange(ref _lazySynthesizedNamespaceMembers, new ConcurrentDictionary<INamespaceSymbolInternal, ConcurrentQueue<INamespaceOrTypeSymbolInternal>>(), null); } _lazySynthesizedNamespaceMembers.GetOrAdd(container, _ => new ConcurrentQueue<INamespaceOrTypeSymbolInternal>()).Enqueue(typeOrNamespace); } /// <summary> /// Returns null if there are no synthesized fields. /// </summary> public IEnumerable<Cci.IFieldDefinition> GetSynthesizedFields(TNamedTypeSymbol container) => _synthesizedTypeMembers.TryGetValue(container, out var defs) ? defs.Fields : null; /// <summary> /// Returns null if there are no synthesized properties. /// </summary> public IEnumerable<Cci.IPropertyDefinition> GetSynthesizedProperties(TNamedTypeSymbol container) => _synthesizedTypeMembers.TryGetValue(container, out var defs) ? defs.Properties : null; /// <summary> /// Returns null if there are no synthesized methods. /// </summary> public IEnumerable<Cci.IMethodDefinition> GetSynthesizedMethods(TNamedTypeSymbol container) => _synthesizedTypeMembers.TryGetValue(container, out var defs) ? defs.Methods : null; internal override ImmutableDictionary<ISymbolInternal, ImmutableArray<ISymbolInternal>> GetAllSynthesizedMembers() { var builder = ImmutableDictionary.CreateBuilder<ISymbolInternal, ImmutableArray<ISymbolInternal>>(); foreach (var entry in _synthesizedTypeMembers) { builder.Add(entry.Key, entry.Value.GetAllMembers()); } var namespaceMembers = _lazySynthesizedNamespaceMembers; if (namespaceMembers != null) { foreach (var entry in namespaceMembers) { builder.Add(entry.Key, entry.Value.ToImmutableArray<ISymbolInternal>()); } } return builder.ToImmutable(); } #endregion #region Token Mapping Cci.IFieldReference ITokenDeferral.GetFieldForData(ImmutableArray<byte> data, SyntaxNode syntaxNode, DiagnosticBag diagnostics) { Debug.Assert(this.SupportsPrivateImplClass); var privateImpl = this.GetPrivateImplClass((TSyntaxNode)syntaxNode, diagnostics); // map a field to the block (that makes it addressable via a token) return privateImpl.CreateDataField(data); } public abstract Cci.IMethodReference GetInitArrayHelper(); public ArrayMethods ArrayMethods { get { ArrayMethods result = _lazyArrayMethods; if (result == null) { result = new ArrayMethods(); if (Interlocked.CompareExchange(ref _lazyArrayMethods, result, null) != null) { result = _lazyArrayMethods; } } return result; } } #endregion #region Private Implementation Details Type internal PrivateImplementationDetails GetPrivateImplClass(TSyntaxNode syntaxNodeOpt, DiagnosticBag diagnostics) { var result = _privateImplementationDetails; if ((result == null) && this.SupportsPrivateImplClass) { result = new PrivateImplementationDetails( this, this.SourceModule.Name, Compilation.GetSubmissionSlotIndex(), this.GetSpecialType(SpecialType.System_Object, syntaxNodeOpt, diagnostics), this.GetSpecialType(SpecialType.System_ValueType, syntaxNodeOpt, diagnostics), this.GetSpecialType(SpecialType.System_Byte, syntaxNodeOpt, diagnostics), this.GetSpecialType(SpecialType.System_Int16, syntaxNodeOpt, diagnostics), this.GetSpecialType(SpecialType.System_Int32, syntaxNodeOpt, diagnostics), this.GetSpecialType(SpecialType.System_Int64, syntaxNodeOpt, diagnostics), SynthesizeAttribute(WellKnownMember.System_Runtime_CompilerServices_CompilerGeneratedAttribute__ctor)); if (Interlocked.CompareExchange(ref _privateImplementationDetails, result, null) != null) { result = _privateImplementationDetails; } } return result; } internal PrivateImplementationDetails PrivateImplClass { get { return _privateImplementationDetails; } } internal override bool SupportsPrivateImplClass { get { return true; } } #endregion public sealed override Cci.ITypeReference GetPlatformType(Cci.PlatformType platformType, EmitContext context) { Debug.Assert((object)this == context.Module); switch (platformType) { case Cci.PlatformType.SystemType: throw ExceptionUtilities.UnexpectedValue(platformType); default: return GetSpecialType((SpecialType)platformType, (TSyntaxNode)context.SyntaxNode, context.Diagnostics); } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/Shared/GlobalAssemblyCacheHelpers/ClrGlobalAssemblyCache.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.InteropServices; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis { using ASM_CACHE = GlobalAssemblyCacheLocation.ASM_CACHE; /// <summary> /// Provides APIs to enumerate and look up assemblies stored in the Global Assembly Cache. /// </summary> internal sealed class ClrGlobalAssemblyCache : GlobalAssemblyCache { #region Interop private const int MAX_PATH = 260; [ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("21b8916c-f28e-11d2-a473-00c04f8ef448")] private interface IAssemblyEnum { [PreserveSig] int GetNextAssembly(out FusionAssemblyIdentity.IApplicationContext ppAppCtx, out FusionAssemblyIdentity.IAssemblyName ppName, uint dwFlags); [PreserveSig] int Reset(); [PreserveSig] int Clone(out IAssemblyEnum ppEnum); } [ComImport, Guid("e707dcde-d1cd-11d2-bab9-00c04f8eceae"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] private interface IAssemblyCache { void UninstallAssembly(); void QueryAssemblyInfo(uint dwFlags, [MarshalAs(UnmanagedType.LPWStr)] string pszAssemblyName, ref ASSEMBLY_INFO pAsmInfo); void CreateAssemblyCacheItem(); void CreateAssemblyScavenger(); void InstallAssembly(); } [StructLayout(LayoutKind.Sequential)] private unsafe struct ASSEMBLY_INFO { public uint cbAssemblyInfo; public readonly uint dwAssemblyFlags; public readonly ulong uliAssemblySizeInKB; public char* pszCurrentAssemblyPathBuf; public uint cchBuf; } [DllImport("clr", PreserveSig = true)] private static extern int CreateAssemblyEnum(out IAssemblyEnum ppEnum, FusionAssemblyIdentity.IApplicationContext pAppCtx, FusionAssemblyIdentity.IAssemblyName pName, ASM_CACHE dwFlags, IntPtr pvReserved); [DllImport("clr", PreserveSig = false)] private static extern void CreateAssemblyCache(out IAssemblyCache ppAsmCache, uint dwReserved); #endregion /// <summary> /// Enumerates assemblies in the GAC returning those that match given partial name and /// architecture. /// </summary> /// <param name="partialName">Optional partial name.</param> /// <param name="architectureFilter">Optional architecture filter.</param> public override IEnumerable<AssemblyIdentity> GetAssemblyIdentities(AssemblyName partialName, ImmutableArray<ProcessorArchitecture> architectureFilter = default(ImmutableArray<ProcessorArchitecture>)) { return GetAssemblyIdentities(FusionAssemblyIdentity.ToAssemblyNameObject(partialName), architectureFilter); } /// <summary> /// Enumerates assemblies in the GAC returning those that match given partial name and /// architecture. /// </summary> /// <param name="partialName">The optional partial name.</param> /// <param name="architectureFilter">The optional architecture filter.</param> public override IEnumerable<AssemblyIdentity> GetAssemblyIdentities(string partialName = null, ImmutableArray<ProcessorArchitecture> architectureFilter = default(ImmutableArray<ProcessorArchitecture>)) { FusionAssemblyIdentity.IAssemblyName nameObj; if (partialName != null) { nameObj = FusionAssemblyIdentity.ToAssemblyNameObject(partialName); if (nameObj == null) { return SpecializedCollections.EmptyEnumerable<AssemblyIdentity>(); } } else { nameObj = null; } return GetAssemblyIdentities(nameObj, architectureFilter); } /// <summary> /// Enumerates assemblies in the GAC returning their simple names. /// </summary> /// <param name="architectureFilter">Optional architecture filter.</param> /// <returns>Unique simple names of GAC assemblies.</returns> public override IEnumerable<string> GetAssemblySimpleNames(ImmutableArray<ProcessorArchitecture> architectureFilter = default(ImmutableArray<ProcessorArchitecture>)) { var q = from nameObject in GetAssemblyObjects(partialNameFilter: null, architectureFilter: architectureFilter) select FusionAssemblyIdentity.GetName(nameObject); return q.Distinct(); } private static IEnumerable<AssemblyIdentity> GetAssemblyIdentities( FusionAssemblyIdentity.IAssemblyName partialName, ImmutableArray<ProcessorArchitecture> architectureFilter) { return from nameObject in GetAssemblyObjects(partialName, architectureFilter) select FusionAssemblyIdentity.ToAssemblyIdentity(nameObject); } private const int S_OK = 0; private const int S_FALSE = 1; // Internal for testing. internal static IEnumerable<FusionAssemblyIdentity.IAssemblyName> GetAssemblyObjects( FusionAssemblyIdentity.IAssemblyName partialNameFilter, ImmutableArray<ProcessorArchitecture> architectureFilter) { IAssemblyEnum enumerator; FusionAssemblyIdentity.IApplicationContext applicationContext = null; int hr = CreateAssemblyEnum(out enumerator, applicationContext, partialNameFilter, ASM_CACHE.GAC, IntPtr.Zero); if (hr == S_FALSE) { // no assembly found yield break; } else if (hr != S_OK) { Exception e = Marshal.GetExceptionForHR(hr); if (e is FileNotFoundException || e is DirectoryNotFoundException) { // invalid assembly name: yield break; } else if (e != null) { throw e; } else { // for some reason it might happen that CreateAssemblyEnum returns non-zero HR that doesn't correspond to any exception: #if SCRIPTING throw new ArgumentException(Microsoft.CodeAnalysis.Scripting.ScriptingResources.InvalidAssemblyName); #else throw new ArgumentException(Editor.EditorFeaturesResources.Invalid_assembly_name); #endif } } while (true) { FusionAssemblyIdentity.IAssemblyName nameObject; hr = enumerator.GetNextAssembly(out applicationContext, out nameObject, 0); if (hr != 0) { if (hr < 0) { Marshal.ThrowExceptionForHR(hr); } break; } if (!architectureFilter.IsDefault) { var assemblyArchitecture = FusionAssemblyIdentity.GetProcessorArchitecture(nameObject); if (!architectureFilter.Contains(assemblyArchitecture)) { continue; } } yield return nameObject; } } public override AssemblyIdentity ResolvePartialName( string displayName, out string location, ImmutableArray<ProcessorArchitecture> architectureFilter, CultureInfo preferredCulture) { if (displayName == null) { throw new ArgumentNullException(nameof(displayName)); } location = null; FusionAssemblyIdentity.IAssemblyName nameObject = FusionAssemblyIdentity.ToAssemblyNameObject(displayName); if (nameObject == null) { return null; } var candidates = GetAssemblyObjects(nameObject, architectureFilter); string cultureName = (preferredCulture != null && !preferredCulture.IsNeutralCulture) ? preferredCulture.Name : null; var bestMatch = FusionAssemblyIdentity.GetBestMatch(candidates, cultureName); if (bestMatch == null) { return null; } location = GetAssemblyLocation(bestMatch); return FusionAssemblyIdentity.ToAssemblyIdentity(bestMatch); } internal static unsafe string GetAssemblyLocation(FusionAssemblyIdentity.IAssemblyName nameObject) { // NAME | VERSION | CULTURE | PUBLIC_KEY_TOKEN | RETARGET | PROCESSORARCHITECTURE string fullName = FusionAssemblyIdentity.GetDisplayName(nameObject, FusionAssemblyIdentity.ASM_DISPLAYF.FULL); fixed (char* p = new char[MAX_PATH]) { ASSEMBLY_INFO info = new ASSEMBLY_INFO { cbAssemblyInfo = (uint)Marshal.SizeOf<ASSEMBLY_INFO>(), pszCurrentAssemblyPathBuf = p, cchBuf = MAX_PATH }; IAssemblyCache assemblyCacheObject; CreateAssemblyCache(out assemblyCacheObject, 0); assemblyCacheObject.QueryAssemblyInfo(0, fullName, ref info); Debug.Assert(info.pszCurrentAssemblyPathBuf != null); Debug.Assert(info.pszCurrentAssemblyPathBuf[info.cchBuf - 1] == '\0'); var result = Marshal.PtrToStringUni((IntPtr)info.pszCurrentAssemblyPathBuf, (int)info.cchBuf - 1); Debug.Assert(result.IndexOf('\0') == -1); return result; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.InteropServices; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis { using ASM_CACHE = GlobalAssemblyCacheLocation.ASM_CACHE; /// <summary> /// Provides APIs to enumerate and look up assemblies stored in the Global Assembly Cache. /// </summary> internal sealed class ClrGlobalAssemblyCache : GlobalAssemblyCache { #region Interop private const int MAX_PATH = 260; [ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("21b8916c-f28e-11d2-a473-00c04f8ef448")] private interface IAssemblyEnum { [PreserveSig] int GetNextAssembly(out FusionAssemblyIdentity.IApplicationContext ppAppCtx, out FusionAssemblyIdentity.IAssemblyName ppName, uint dwFlags); [PreserveSig] int Reset(); [PreserveSig] int Clone(out IAssemblyEnum ppEnum); } [ComImport, Guid("e707dcde-d1cd-11d2-bab9-00c04f8eceae"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] private interface IAssemblyCache { void UninstallAssembly(); void QueryAssemblyInfo(uint dwFlags, [MarshalAs(UnmanagedType.LPWStr)] string pszAssemblyName, ref ASSEMBLY_INFO pAsmInfo); void CreateAssemblyCacheItem(); void CreateAssemblyScavenger(); void InstallAssembly(); } [StructLayout(LayoutKind.Sequential)] private unsafe struct ASSEMBLY_INFO { public uint cbAssemblyInfo; public readonly uint dwAssemblyFlags; public readonly ulong uliAssemblySizeInKB; public char* pszCurrentAssemblyPathBuf; public uint cchBuf; } [DllImport("clr", PreserveSig = true)] private static extern int CreateAssemblyEnum(out IAssemblyEnum ppEnum, FusionAssemblyIdentity.IApplicationContext pAppCtx, FusionAssemblyIdentity.IAssemblyName pName, ASM_CACHE dwFlags, IntPtr pvReserved); [DllImport("clr", PreserveSig = false)] private static extern void CreateAssemblyCache(out IAssemblyCache ppAsmCache, uint dwReserved); #endregion /// <summary> /// Enumerates assemblies in the GAC returning those that match given partial name and /// architecture. /// </summary> /// <param name="partialName">Optional partial name.</param> /// <param name="architectureFilter">Optional architecture filter.</param> public override IEnumerable<AssemblyIdentity> GetAssemblyIdentities(AssemblyName partialName, ImmutableArray<ProcessorArchitecture> architectureFilter = default(ImmutableArray<ProcessorArchitecture>)) { return GetAssemblyIdentities(FusionAssemblyIdentity.ToAssemblyNameObject(partialName), architectureFilter); } /// <summary> /// Enumerates assemblies in the GAC returning those that match given partial name and /// architecture. /// </summary> /// <param name="partialName">The optional partial name.</param> /// <param name="architectureFilter">The optional architecture filter.</param> public override IEnumerable<AssemblyIdentity> GetAssemblyIdentities(string partialName = null, ImmutableArray<ProcessorArchitecture> architectureFilter = default(ImmutableArray<ProcessorArchitecture>)) { FusionAssemblyIdentity.IAssemblyName nameObj; if (partialName != null) { nameObj = FusionAssemblyIdentity.ToAssemblyNameObject(partialName); if (nameObj == null) { return SpecializedCollections.EmptyEnumerable<AssemblyIdentity>(); } } else { nameObj = null; } return GetAssemblyIdentities(nameObj, architectureFilter); } /// <summary> /// Enumerates assemblies in the GAC returning their simple names. /// </summary> /// <param name="architectureFilter">Optional architecture filter.</param> /// <returns>Unique simple names of GAC assemblies.</returns> public override IEnumerable<string> GetAssemblySimpleNames(ImmutableArray<ProcessorArchitecture> architectureFilter = default(ImmutableArray<ProcessorArchitecture>)) { var q = from nameObject in GetAssemblyObjects(partialNameFilter: null, architectureFilter: architectureFilter) select FusionAssemblyIdentity.GetName(nameObject); return q.Distinct(); } private static IEnumerable<AssemblyIdentity> GetAssemblyIdentities( FusionAssemblyIdentity.IAssemblyName partialName, ImmutableArray<ProcessorArchitecture> architectureFilter) { return from nameObject in GetAssemblyObjects(partialName, architectureFilter) select FusionAssemblyIdentity.ToAssemblyIdentity(nameObject); } private const int S_OK = 0; private const int S_FALSE = 1; // Internal for testing. internal static IEnumerable<FusionAssemblyIdentity.IAssemblyName> GetAssemblyObjects( FusionAssemblyIdentity.IAssemblyName partialNameFilter, ImmutableArray<ProcessorArchitecture> architectureFilter) { IAssemblyEnum enumerator; FusionAssemblyIdentity.IApplicationContext applicationContext = null; int hr = CreateAssemblyEnum(out enumerator, applicationContext, partialNameFilter, ASM_CACHE.GAC, IntPtr.Zero); if (hr == S_FALSE) { // no assembly found yield break; } else if (hr != S_OK) { Exception e = Marshal.GetExceptionForHR(hr); if (e is FileNotFoundException || e is DirectoryNotFoundException) { // invalid assembly name: yield break; } else if (e != null) { throw e; } else { // for some reason it might happen that CreateAssemblyEnum returns non-zero HR that doesn't correspond to any exception: #if SCRIPTING throw new ArgumentException(Microsoft.CodeAnalysis.Scripting.ScriptingResources.InvalidAssemblyName); #else throw new ArgumentException(Editor.EditorFeaturesResources.Invalid_assembly_name); #endif } } while (true) { FusionAssemblyIdentity.IAssemblyName nameObject; hr = enumerator.GetNextAssembly(out applicationContext, out nameObject, 0); if (hr != 0) { if (hr < 0) { Marshal.ThrowExceptionForHR(hr); } break; } if (!architectureFilter.IsDefault) { var assemblyArchitecture = FusionAssemblyIdentity.GetProcessorArchitecture(nameObject); if (!architectureFilter.Contains(assemblyArchitecture)) { continue; } } yield return nameObject; } } public override AssemblyIdentity ResolvePartialName( string displayName, out string location, ImmutableArray<ProcessorArchitecture> architectureFilter, CultureInfo preferredCulture) { if (displayName == null) { throw new ArgumentNullException(nameof(displayName)); } location = null; FusionAssemblyIdentity.IAssemblyName nameObject = FusionAssemblyIdentity.ToAssemblyNameObject(displayName); if (nameObject == null) { return null; } var candidates = GetAssemblyObjects(nameObject, architectureFilter); string cultureName = (preferredCulture != null && !preferredCulture.IsNeutralCulture) ? preferredCulture.Name : null; var bestMatch = FusionAssemblyIdentity.GetBestMatch(candidates, cultureName); if (bestMatch == null) { return null; } location = GetAssemblyLocation(bestMatch); return FusionAssemblyIdentity.ToAssemblyIdentity(bestMatch); } internal static unsafe string GetAssemblyLocation(FusionAssemblyIdentity.IAssemblyName nameObject) { // NAME | VERSION | CULTURE | PUBLIC_KEY_TOKEN | RETARGET | PROCESSORARCHITECTURE string fullName = FusionAssemblyIdentity.GetDisplayName(nameObject, FusionAssemblyIdentity.ASM_DISPLAYF.FULL); fixed (char* p = new char[MAX_PATH]) { ASSEMBLY_INFO info = new ASSEMBLY_INFO { cbAssemblyInfo = (uint)Marshal.SizeOf<ASSEMBLY_INFO>(), pszCurrentAssemblyPathBuf = p, cchBuf = MAX_PATH }; IAssemblyCache assemblyCacheObject; CreateAssemblyCache(out assemblyCacheObject, 0); assemblyCacheObject.QueryAssemblyInfo(0, fullName, ref info); Debug.Assert(info.pszCurrentAssemblyPathBuf != null); Debug.Assert(info.pszCurrentAssemblyPathBuf[info.cchBuf - 1] == '\0'); var result = Marshal.PtrToStringUni((IntPtr)info.pszCurrentAssemblyPathBuf, (int)info.cchBuf - 1); Debug.Assert(result.IndexOf('\0') == -1); return result; } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/SharedUtilitiesAndExtensions/Compiler/VisualBasic/xlf/VisualBasicCompilerExtensionsResources.cs.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="cs" original="../VisualBasicCompilerExtensionsResources.resx"> <body> <trans-unit id="EmptyResource"> <source>Remove this value when another is added.</source> <target state="translated">Odebrat tuto hodnotu, když se přidá jiná</target> <note>https://github.com/Microsoft/msbuild/issues/1661</note> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="cs" original="../VisualBasicCompilerExtensionsResources.resx"> <body> <trans-unit id="EmptyResource"> <source>Remove this value when another is added.</source> <target state="translated">Odebrat tuto hodnotu, když se přidá jiná</target> <note>https://github.com/Microsoft/msbuild/issues/1661</note> </trans-unit> </body> </file> </xliff>
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/CSharp/Portable/Syntax/TypeDeclarationSyntax.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.CSharp.Syntax { public abstract partial class TypeDeclarationSyntax { public int Arity { get { return this.TypeParameterList == null ? 0 : this.TypeParameterList.Parameters.Count; } } public new TypeDeclarationSyntax AddAttributeLists(params AttributeListSyntax[] items) => (TypeDeclarationSyntax)AddAttributeListsCore(items); public new TypeDeclarationSyntax AddModifiers(params SyntaxToken[] items) => (TypeDeclarationSyntax)AddModifiersCore(items); public new TypeDeclarationSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => (TypeDeclarationSyntax)WithAttributeListsCore(attributeLists); public new TypeDeclarationSyntax WithModifiers(SyntaxTokenList modifiers) => (TypeDeclarationSyntax)WithModifiersCore(modifiers); } } namespace Microsoft.CodeAnalysis.CSharp { public static partial class SyntaxFactory { internal static SyntaxKind GetTypeDeclarationKeywordKind(DeclarationKind kind) { switch (kind) { case DeclarationKind.Class: return SyntaxKind.ClassKeyword; case DeclarationKind.Struct: return SyntaxKind.StructKeyword; case DeclarationKind.Interface: return SyntaxKind.InterfaceKeyword; default: throw ExceptionUtilities.UnexpectedValue(kind); } } private static SyntaxKind GetTypeDeclarationKeywordKind(SyntaxKind kind) { switch (kind) { case SyntaxKind.ClassDeclaration: return SyntaxKind.ClassKeyword; case SyntaxKind.StructDeclaration: return SyntaxKind.StructKeyword; case SyntaxKind.InterfaceDeclaration: return SyntaxKind.InterfaceKeyword; case SyntaxKind.RecordDeclaration: case SyntaxKind.RecordStructDeclaration: return SyntaxKind.RecordKeyword; default: throw ExceptionUtilities.UnexpectedValue(kind); } } public static TypeDeclarationSyntax TypeDeclaration(SyntaxKind kind, SyntaxToken identifier) { return TypeDeclaration( kind, default(SyntaxList<AttributeListSyntax>), default(SyntaxTokenList), SyntaxFactory.Token(GetTypeDeclarationKeywordKind(kind)), identifier, typeParameterList: null, baseList: null, default(SyntaxList<TypeParameterConstraintClauseSyntax>), SyntaxFactory.Token(SyntaxKind.OpenBraceToken), default(SyntaxList<MemberDeclarationSyntax>), SyntaxFactory.Token(SyntaxKind.CloseBraceToken), default(SyntaxToken)); } public static TypeDeclarationSyntax TypeDeclaration(SyntaxKind kind, string identifier) { return SyntaxFactory.TypeDeclaration(kind, SyntaxFactory.Identifier(identifier)); } public static TypeDeclarationSyntax TypeDeclaration( SyntaxKind kind, SyntaxList<AttributeListSyntax> attributes, SyntaxTokenList modifiers, SyntaxToken keyword, SyntaxToken identifier, TypeParameterListSyntax? typeParameterList, BaseListSyntax? baseList, SyntaxList<TypeParameterConstraintClauseSyntax> constraintClauses, SyntaxToken openBraceToken, SyntaxList<MemberDeclarationSyntax> members, SyntaxToken closeBraceToken, SyntaxToken semicolonToken) { switch (kind) { case SyntaxKind.ClassDeclaration: return SyntaxFactory.ClassDeclaration(attributes, modifiers, keyword, identifier, typeParameterList, baseList, constraintClauses, openBraceToken, members, closeBraceToken, semicolonToken); case SyntaxKind.StructDeclaration: return SyntaxFactory.StructDeclaration(attributes, modifiers, keyword, identifier, typeParameterList, baseList, constraintClauses, openBraceToken, members, closeBraceToken, semicolonToken); case SyntaxKind.InterfaceDeclaration: return SyntaxFactory.InterfaceDeclaration(attributes, modifiers, keyword, identifier, typeParameterList, baseList, constraintClauses, openBraceToken, members, closeBraceToken, semicolonToken); case SyntaxKind.RecordDeclaration: return SyntaxFactory.RecordDeclaration(SyntaxKind.RecordDeclaration, attributes, modifiers, keyword, classOrStructKeyword: default, identifier, typeParameterList, parameterList: null, baseList, constraintClauses, openBraceToken, members, closeBraceToken, semicolonToken); case SyntaxKind.RecordStructDeclaration: return SyntaxFactory.RecordDeclaration(SyntaxKind.RecordStructDeclaration, attributes, modifiers, keyword, classOrStructKeyword: SyntaxFactory.Token(SyntaxKind.StructKeyword), identifier, typeParameterList, parameterList: null, baseList, constraintClauses, openBraceToken, members, closeBraceToken, semicolonToken); default: throw ExceptionUtilities.UnexpectedValue(kind); } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.CSharp.Syntax { public abstract partial class TypeDeclarationSyntax { public int Arity { get { return this.TypeParameterList == null ? 0 : this.TypeParameterList.Parameters.Count; } } public new TypeDeclarationSyntax AddAttributeLists(params AttributeListSyntax[] items) => (TypeDeclarationSyntax)AddAttributeListsCore(items); public new TypeDeclarationSyntax AddModifiers(params SyntaxToken[] items) => (TypeDeclarationSyntax)AddModifiersCore(items); public new TypeDeclarationSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => (TypeDeclarationSyntax)WithAttributeListsCore(attributeLists); public new TypeDeclarationSyntax WithModifiers(SyntaxTokenList modifiers) => (TypeDeclarationSyntax)WithModifiersCore(modifiers); } } namespace Microsoft.CodeAnalysis.CSharp { public static partial class SyntaxFactory { internal static SyntaxKind GetTypeDeclarationKeywordKind(DeclarationKind kind) { switch (kind) { case DeclarationKind.Class: return SyntaxKind.ClassKeyword; case DeclarationKind.Struct: return SyntaxKind.StructKeyword; case DeclarationKind.Interface: return SyntaxKind.InterfaceKeyword; default: throw ExceptionUtilities.UnexpectedValue(kind); } } private static SyntaxKind GetTypeDeclarationKeywordKind(SyntaxKind kind) { switch (kind) { case SyntaxKind.ClassDeclaration: return SyntaxKind.ClassKeyword; case SyntaxKind.StructDeclaration: return SyntaxKind.StructKeyword; case SyntaxKind.InterfaceDeclaration: return SyntaxKind.InterfaceKeyword; case SyntaxKind.RecordDeclaration: case SyntaxKind.RecordStructDeclaration: return SyntaxKind.RecordKeyword; default: throw ExceptionUtilities.UnexpectedValue(kind); } } public static TypeDeclarationSyntax TypeDeclaration(SyntaxKind kind, SyntaxToken identifier) { return TypeDeclaration( kind, default(SyntaxList<AttributeListSyntax>), default(SyntaxTokenList), SyntaxFactory.Token(GetTypeDeclarationKeywordKind(kind)), identifier, typeParameterList: null, baseList: null, default(SyntaxList<TypeParameterConstraintClauseSyntax>), SyntaxFactory.Token(SyntaxKind.OpenBraceToken), default(SyntaxList<MemberDeclarationSyntax>), SyntaxFactory.Token(SyntaxKind.CloseBraceToken), default(SyntaxToken)); } public static TypeDeclarationSyntax TypeDeclaration(SyntaxKind kind, string identifier) { return SyntaxFactory.TypeDeclaration(kind, SyntaxFactory.Identifier(identifier)); } public static TypeDeclarationSyntax TypeDeclaration( SyntaxKind kind, SyntaxList<AttributeListSyntax> attributes, SyntaxTokenList modifiers, SyntaxToken keyword, SyntaxToken identifier, TypeParameterListSyntax? typeParameterList, BaseListSyntax? baseList, SyntaxList<TypeParameterConstraintClauseSyntax> constraintClauses, SyntaxToken openBraceToken, SyntaxList<MemberDeclarationSyntax> members, SyntaxToken closeBraceToken, SyntaxToken semicolonToken) { switch (kind) { case SyntaxKind.ClassDeclaration: return SyntaxFactory.ClassDeclaration(attributes, modifiers, keyword, identifier, typeParameterList, baseList, constraintClauses, openBraceToken, members, closeBraceToken, semicolonToken); case SyntaxKind.StructDeclaration: return SyntaxFactory.StructDeclaration(attributes, modifiers, keyword, identifier, typeParameterList, baseList, constraintClauses, openBraceToken, members, closeBraceToken, semicolonToken); case SyntaxKind.InterfaceDeclaration: return SyntaxFactory.InterfaceDeclaration(attributes, modifiers, keyword, identifier, typeParameterList, baseList, constraintClauses, openBraceToken, members, closeBraceToken, semicolonToken); case SyntaxKind.RecordDeclaration: return SyntaxFactory.RecordDeclaration(SyntaxKind.RecordDeclaration, attributes, modifiers, keyword, classOrStructKeyword: default, identifier, typeParameterList, parameterList: null, baseList, constraintClauses, openBraceToken, members, closeBraceToken, semicolonToken); case SyntaxKind.RecordStructDeclaration: return SyntaxFactory.RecordDeclaration(SyntaxKind.RecordStructDeclaration, attributes, modifiers, keyword, classOrStructKeyword: SyntaxFactory.Token(SyntaxKind.StructKeyword), identifier, typeParameterList, parameterList: null, baseList, constraintClauses, openBraceToken, members, closeBraceToken, semicolonToken); default: throw ExceptionUtilities.UnexpectedValue(kind); } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/ExpressionEvaluator/CSharp/Test/ResultProvider/TypeNameFormatterTests.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Immutable; using System.Collections.ObjectModel; using Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator; using Microsoft.CodeAnalysis.CSharp.Test.Utilities; using Microsoft.CodeAnalysis.ExpressionEvaluator; using Microsoft.VisualStudio.Debugger.Clr; using Microsoft.VisualStudio.Debugger.Evaluation.ClrCompilation; using Roslyn.Test.Utilities; using Xunit; namespace Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.UnitTests { public class TypeNameFormatterTests : CSharpResultProviderTestBase { [Fact] public void Primitives() { Assert.Equal("object", typeof(object).GetTypeName()); Assert.Equal("bool", typeof(bool).GetTypeName()); Assert.Equal("char", typeof(char).GetTypeName()); Assert.Equal("sbyte", typeof(sbyte).GetTypeName()); Assert.Equal("byte", typeof(byte).GetTypeName()); Assert.Equal("short", typeof(short).GetTypeName()); Assert.Equal("ushort", typeof(ushort).GetTypeName()); Assert.Equal("int", typeof(int).GetTypeName()); Assert.Equal("uint", typeof(uint).GetTypeName()); Assert.Equal("long", typeof(long).GetTypeName()); Assert.Equal("ulong", typeof(ulong).GetTypeName()); Assert.Equal("float", typeof(float).GetTypeName()); Assert.Equal("double", typeof(double).GetTypeName()); Assert.Equal("decimal", typeof(decimal).GetTypeName()); Assert.Equal("string", typeof(string).GetTypeName()); } [Fact, WorkItem(1016796, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1016796")] public void NestedTypes() { var source = @" public class A { public class B { } } namespace N { public class A { public class B { } } public class G1<T> { public class G2<T> { public class G3<U> { } class G4<U, V> { } } } } "; var assembly = GetAssembly(source); Assert.Equal("A", assembly.GetType("A").GetTypeName()); Assert.Equal("A.B", assembly.GetType("A+B").GetTypeName()); Assert.Equal("N.A", assembly.GetType("N.A").GetTypeName()); Assert.Equal("N.A.B", assembly.GetType("N.A+B").GetTypeName()); Assert.Equal("N.G1<int>.G2<float>.G3<double>", assembly.GetType("N.G1`1+G2`1+G3`1").MakeGenericType(typeof(int), typeof(float), typeof(double)).GetTypeName()); Assert.Equal("N.G1<int>.G2<float>.G4<double, ushort>", assembly.GetType("N.G1`1+G2`1+G4`2").MakeGenericType(typeof(int), typeof(float), typeof(double), typeof(ushort)).GetTypeName()); } [Fact] public void GenericTypes() { var source = @" public class A { public class B { } } namespace N { public class C<T, U> { public class D<V, W> { } } } "; var assembly = GetAssembly(source); var typeA = assembly.GetType("A"); var typeB = typeA.GetNestedType("B"); var typeC = assembly.GetType("N.C`2"); var typeD = typeC.GetNestedType("D`2"); var typeInt = typeof(int); var typeString = typeof(string); var typeCIntString = typeC.MakeGenericType(typeInt, typeString); Assert.Equal("N.C<T, U>", typeC.GetTypeName()); Assert.Equal("N.C<int, string>", typeCIntString.GetTypeName()); Assert.Equal("N.C<A, A.B>", typeC.MakeGenericType(typeA, typeB).GetTypeName()); Assert.Equal("N.C<int, string>.D<A, A.B>", typeD.MakeGenericType(typeInt, typeString, typeA, typeB).GetTypeName()); Assert.Equal("N.C<A, N.C<int, string>>.D<N.C<int, string>, A.B>", typeD.MakeGenericType(typeA, typeCIntString, typeCIntString, typeB).GetTypeName()); } [Fact] public void NonGenericInGeneric() { var source = @" public class A<T> { public class B { } } "; var assembly = GetAssembly(source); var typeA = assembly.GetType("A`1"); var typeB = typeA.GetNestedType("B"); Assert.Equal("A<int>.B", typeB.MakeGenericType(typeof(int)).GetTypeName()); } [Fact] public void PrimitiveNullableTypes() { Assert.Equal("int?", typeof(int?).GetTypeName()); Assert.Equal("bool?", typeof(bool?).GetTypeName()); } [Fact] public void NullableTypes() { var source = @" namespace N { public struct A<T> { public struct B<U> { } } public struct C { } } "; var typeNullable = typeof(System.Nullable<>); var assembly = GetAssembly(source); var typeA = assembly.GetType("N.A`1"); var typeB = typeA.GetNestedType("B`1"); var typeC = assembly.GetType("N.C"); Assert.Equal("N.C?", typeNullable.MakeGenericType(typeC).GetTypeName()); Assert.Equal("N.A<N.C>?", typeNullable.MakeGenericType(typeA.MakeGenericType(typeC)).GetTypeName()); Assert.Equal("N.A<N.C>.B<N.C>?", typeNullable.MakeGenericType(typeB.MakeGenericType(typeC, typeC)).GetTypeName()); } [Fact] public void PrimitiveArrayTypes() { Assert.Equal("int[]", typeof(int[]).GetTypeName()); Assert.Equal("int[,]", typeof(int[,]).GetTypeName()); Assert.Equal("int[][,]", typeof(int[][,]).GetTypeName()); Assert.Equal("int[,][]", typeof(int[,][]).GetTypeName()); } [Fact] public void ArrayTypes() { var source = @" namespace N { public class A<T> { public class B<U> { } } public class C { } } "; var assembly = GetAssembly(source); var typeA = assembly.GetType("N.A`1"); var typeB = typeA.GetNestedType("B`1"); var typeC = assembly.GetType("N.C"); Assert.NotEqual(typeC.MakeArrayType(), typeC.MakeArrayType(1)); Assert.Equal("N.C[]", typeC.MakeArrayType().GetTypeName()); Assert.Equal("N.C[]", typeC.MakeArrayType(1).GetTypeName()); // NOTE: Multi-dimensional array that happens to exactly one dimension. Assert.Equal("N.A<N.C>[,]", typeA.MakeGenericType(typeC).MakeArrayType(2).GetTypeName()); Assert.Equal("N.A<N.C[]>.B<N.C>[,,]", typeB.MakeGenericType(typeC.MakeArrayType(), typeC).MakeArrayType(3).GetTypeName()); } [Fact] public void CustomBoundsArrayTypes() { Array instance = Array.CreateInstance(typeof(int), new[] { 1, 2, 3, }, new[] { 4, 5, 6, }); Assert.Equal("int[,,]", instance.GetType().GetTypeName()); Assert.Equal("int[][,,]", instance.GetType().MakeArrayType().GetTypeName()); } [Fact] public void PrimitivePointerTypes() { Assert.Equal("int*", typeof(int).MakePointerType().GetTypeName()); Assert.Equal("int**", typeof(int).MakePointerType().MakePointerType().GetTypeName()); Assert.Equal("int*[]", typeof(int).MakePointerType().MakeArrayType().GetTypeName()); } [Fact] public void PointerTypes() { var source = @" namespace N { public struct A<T> { public struct B<U> { } } public struct C { } } "; var assembly = GetAssembly(source); var typeA = assembly.GetType("N.A`1"); var typeB = typeA.GetNestedType("B`1"); var typeC = assembly.GetType("N.C"); Assert.Equal("N.C*", typeC.MakePointerType().GetTypeName()); Assert.Equal("N.A<N.C>*", typeA.MakeGenericType(typeC).MakePointerType().GetTypeName()); Assert.Equal("N.A<N.C>.B<N.C>*", typeB.MakeGenericType(typeC, typeC).MakePointerType().GetTypeName()); } [Fact] public void Void() { Assert.Equal("void", typeof(void).GetTypeName()); Assert.Equal("void*", typeof(void).MakePointerType().GetTypeName()); } [Fact] public void KeywordIdentifiers() { var source = @" public class @object { public class @true { } } namespace @return { public class @yield<@async> { public class @await { } } namespace @false { public class @null { } } } "; var assembly = GetAssembly(source); var objectType = assembly.GetType("object"); var trueType = objectType.GetNestedType("true"); var nullType = assembly.GetType("return.false.null"); var yieldType = assembly.GetType("return.yield`1"); var constructedYieldType = yieldType.MakeGenericType(nullType); var awaitType = yieldType.GetNestedType("await"); var constructedAwaitType = awaitType.MakeGenericType(nullType); Assert.Equal("object", objectType.GetTypeName(escapeKeywordIdentifiers: false)); Assert.Equal("object.true", trueType.GetTypeName(escapeKeywordIdentifiers: false)); Assert.Equal("return.false.null", nullType.GetTypeName(escapeKeywordIdentifiers: false)); Assert.Equal("return.yield<async>", yieldType.GetTypeName(escapeKeywordIdentifiers: false)); Assert.Equal("return.yield<return.false.null>", constructedYieldType.GetTypeName(escapeKeywordIdentifiers: false)); Assert.Equal("return.yield<return.false.null>.await", constructedAwaitType.GetTypeName(escapeKeywordIdentifiers: false)); Assert.Equal("@object", objectType.GetTypeName(escapeKeywordIdentifiers: true)); Assert.Equal("@object.@true", trueType.GetTypeName(escapeKeywordIdentifiers: true)); Assert.Equal("@return.@false.@null", nullType.GetTypeName(escapeKeywordIdentifiers: true)); Assert.Equal("@return.@yield<@async>", yieldType.GetTypeName(escapeKeywordIdentifiers: true)); Assert.Equal("@return.@yield<@return.@false.@null>", constructedYieldType.GetTypeName(escapeKeywordIdentifiers: true)); Assert.Equal("@return.@yield<@return.@false.@null>.@await", constructedAwaitType.GetTypeName(escapeKeywordIdentifiers: true)); } [WorkItem(1087216, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1087216")] [Fact] public void DynamicAttribute_KeywordEscaping() { var attributes = new[] { true }; Assert.Equal("dynamic", typeof(object).GetTypeName(MakeCustomTypeInfo(attributes), escapeKeywordIdentifiers: false)); Assert.Equal("dynamic", typeof(object).GetTypeName(MakeCustomTypeInfo(attributes), escapeKeywordIdentifiers: true)); } [WorkItem(1087216, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1087216")] [Fact] public void DynamicAttribute_Locations() { // Standalone. Assert.Equal("dynamic", typeof(object).GetTypeName(MakeCustomTypeInfo(true))); // Array element type. Assert.Equal("dynamic[]", typeof(object[]).GetTypeName(MakeCustomTypeInfo(false, true))); Assert.Equal("dynamic[][]", typeof(object[][]).GetTypeName(MakeCustomTypeInfo(false, false, true))); // Type argument of top-level type. Assert.Equal("System.Func<dynamic>", typeof(Func<object>).GetTypeName(MakeCustomTypeInfo(false, true))); var source = @" namespace N { public struct A<T> { public struct B<U> { } } public struct C { } } "; var assembly = GetAssembly(source); var typeA = assembly.GetType("N.A`1"); var typeB = typeA.GetNestedType("B`1"); var typeBConstructed = typeB.MakeGenericType(typeof(object), typeof(object)); // Type argument of nested type. Assert.Equal("N.A<object>.B<dynamic>", typeBConstructed.GetTypeName(MakeCustomTypeInfo(false, false, true))); Assert.Equal("N.A<dynamic>.B<object>", typeBConstructed.GetTypeName(MakeCustomTypeInfo(false, true, false))); Assert.Equal("N.A<dynamic>.B<dynamic>[]", typeBConstructed.MakeArrayType().GetTypeName(MakeCustomTypeInfo(false, false, true, true))); } [WorkItem(1087216, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1087216")] [Fact] public void DynamicAttribute_InvalidFlags() { // Invalid true. Assert.Equal("int", typeof(int).GetTypeName(MakeCustomTypeInfo(true))); Assert.Equal("dynamic[]", typeof(object[]).GetTypeName(MakeCustomTypeInfo(true, true))); // Too many. Assert.Equal("dynamic", typeof(object).GetTypeName(MakeCustomTypeInfo(true, true))); Assert.Equal("object", typeof(object).GetTypeName(MakeCustomTypeInfo(false, true))); // Too few. Assert.Equal("object[]", typeof(object[]).GetTypeName(MakeCustomTypeInfo(true))); Assert.Equal("object[]", typeof(object[]).GetTypeName(MakeCustomTypeInfo(false))); // Type argument of top-level type. Assert.Equal("System.Func<object>", typeof(Func<object>).GetTypeName(MakeCustomTypeInfo(true))); var source = @" namespace N { public struct A<T> { public struct B<U> { } } public struct C { } } "; var assembly = GetAssembly(source); var typeA = assembly.GetType("N.A`1"); var typeB = typeA.GetNestedType("B`1"); var typeBConstructed = typeB.MakeGenericType(typeof(object), typeof(object)); // Type argument of nested type. Assert.Equal("N.A<object>.B<object>", typeBConstructed.GetTypeName(MakeCustomTypeInfo(false))); Assert.Equal("N.A<dynamic>.B<object>", typeBConstructed.GetTypeName(MakeCustomTypeInfo(false, true))); Assert.Equal("N.A<dynamic>.B<object>[]", typeBConstructed.MakeArrayType().GetTypeName(MakeCustomTypeInfo(false, false, true))); } [WorkItem(1087216, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1087216")] [Fact] public void DynamicAttribute_OtherGuid() { var typeInfo = DkmClrCustomTypeInfo.Create(Guid.NewGuid(), new ReadOnlyCollection<byte>(new byte[] { 1 })); Assert.Equal("object", typeof(object).GetTypeName(typeInfo)); Assert.Equal("object[]", typeof(object[]).GetTypeName(typeInfo)); } [Fact] public void MangledTypeParameterName() { var il = @" .class public auto ansi beforefieldinit Type`1<'<>Mangled'> extends [mscorlib]System.Object { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } "; ImmutableArray<byte> assemblyBytes; ImmutableArray<byte> pdbBytes; CSharpTestBase.EmitILToArray(il, appendDefaultHeader: true, includePdb: false, assemblyBytes: out assemblyBytes, pdbBytes: out pdbBytes); var assembly = ReflectionUtilities.Load(assemblyBytes); var type = assembly.GetType("Type`1"); var typeName = type.GetTypeName(); Assert.Equal("Type<<>Mangled>", typeName); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Immutable; using System.Collections.ObjectModel; using Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator; using Microsoft.CodeAnalysis.CSharp.Test.Utilities; using Microsoft.CodeAnalysis.ExpressionEvaluator; using Microsoft.VisualStudio.Debugger.Clr; using Microsoft.VisualStudio.Debugger.Evaluation.ClrCompilation; using Roslyn.Test.Utilities; using Xunit; namespace Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.UnitTests { public class TypeNameFormatterTests : CSharpResultProviderTestBase { [Fact] public void Primitives() { Assert.Equal("object", typeof(object).GetTypeName()); Assert.Equal("bool", typeof(bool).GetTypeName()); Assert.Equal("char", typeof(char).GetTypeName()); Assert.Equal("sbyte", typeof(sbyte).GetTypeName()); Assert.Equal("byte", typeof(byte).GetTypeName()); Assert.Equal("short", typeof(short).GetTypeName()); Assert.Equal("ushort", typeof(ushort).GetTypeName()); Assert.Equal("int", typeof(int).GetTypeName()); Assert.Equal("uint", typeof(uint).GetTypeName()); Assert.Equal("long", typeof(long).GetTypeName()); Assert.Equal("ulong", typeof(ulong).GetTypeName()); Assert.Equal("float", typeof(float).GetTypeName()); Assert.Equal("double", typeof(double).GetTypeName()); Assert.Equal("decimal", typeof(decimal).GetTypeName()); Assert.Equal("string", typeof(string).GetTypeName()); } [Fact, WorkItem(1016796, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1016796")] public void NestedTypes() { var source = @" public class A { public class B { } } namespace N { public class A { public class B { } } public class G1<T> { public class G2<T> { public class G3<U> { } class G4<U, V> { } } } } "; var assembly = GetAssembly(source); Assert.Equal("A", assembly.GetType("A").GetTypeName()); Assert.Equal("A.B", assembly.GetType("A+B").GetTypeName()); Assert.Equal("N.A", assembly.GetType("N.A").GetTypeName()); Assert.Equal("N.A.B", assembly.GetType("N.A+B").GetTypeName()); Assert.Equal("N.G1<int>.G2<float>.G3<double>", assembly.GetType("N.G1`1+G2`1+G3`1").MakeGenericType(typeof(int), typeof(float), typeof(double)).GetTypeName()); Assert.Equal("N.G1<int>.G2<float>.G4<double, ushort>", assembly.GetType("N.G1`1+G2`1+G4`2").MakeGenericType(typeof(int), typeof(float), typeof(double), typeof(ushort)).GetTypeName()); } [Fact] public void GenericTypes() { var source = @" public class A { public class B { } } namespace N { public class C<T, U> { public class D<V, W> { } } } "; var assembly = GetAssembly(source); var typeA = assembly.GetType("A"); var typeB = typeA.GetNestedType("B"); var typeC = assembly.GetType("N.C`2"); var typeD = typeC.GetNestedType("D`2"); var typeInt = typeof(int); var typeString = typeof(string); var typeCIntString = typeC.MakeGenericType(typeInt, typeString); Assert.Equal("N.C<T, U>", typeC.GetTypeName()); Assert.Equal("N.C<int, string>", typeCIntString.GetTypeName()); Assert.Equal("N.C<A, A.B>", typeC.MakeGenericType(typeA, typeB).GetTypeName()); Assert.Equal("N.C<int, string>.D<A, A.B>", typeD.MakeGenericType(typeInt, typeString, typeA, typeB).GetTypeName()); Assert.Equal("N.C<A, N.C<int, string>>.D<N.C<int, string>, A.B>", typeD.MakeGenericType(typeA, typeCIntString, typeCIntString, typeB).GetTypeName()); } [Fact] public void NonGenericInGeneric() { var source = @" public class A<T> { public class B { } } "; var assembly = GetAssembly(source); var typeA = assembly.GetType("A`1"); var typeB = typeA.GetNestedType("B"); Assert.Equal("A<int>.B", typeB.MakeGenericType(typeof(int)).GetTypeName()); } [Fact] public void PrimitiveNullableTypes() { Assert.Equal("int?", typeof(int?).GetTypeName()); Assert.Equal("bool?", typeof(bool?).GetTypeName()); } [Fact] public void NullableTypes() { var source = @" namespace N { public struct A<T> { public struct B<U> { } } public struct C { } } "; var typeNullable = typeof(System.Nullable<>); var assembly = GetAssembly(source); var typeA = assembly.GetType("N.A`1"); var typeB = typeA.GetNestedType("B`1"); var typeC = assembly.GetType("N.C"); Assert.Equal("N.C?", typeNullable.MakeGenericType(typeC).GetTypeName()); Assert.Equal("N.A<N.C>?", typeNullable.MakeGenericType(typeA.MakeGenericType(typeC)).GetTypeName()); Assert.Equal("N.A<N.C>.B<N.C>?", typeNullable.MakeGenericType(typeB.MakeGenericType(typeC, typeC)).GetTypeName()); } [Fact] public void PrimitiveArrayTypes() { Assert.Equal("int[]", typeof(int[]).GetTypeName()); Assert.Equal("int[,]", typeof(int[,]).GetTypeName()); Assert.Equal("int[][,]", typeof(int[][,]).GetTypeName()); Assert.Equal("int[,][]", typeof(int[,][]).GetTypeName()); } [Fact] public void ArrayTypes() { var source = @" namespace N { public class A<T> { public class B<U> { } } public class C { } } "; var assembly = GetAssembly(source); var typeA = assembly.GetType("N.A`1"); var typeB = typeA.GetNestedType("B`1"); var typeC = assembly.GetType("N.C"); Assert.NotEqual(typeC.MakeArrayType(), typeC.MakeArrayType(1)); Assert.Equal("N.C[]", typeC.MakeArrayType().GetTypeName()); Assert.Equal("N.C[]", typeC.MakeArrayType(1).GetTypeName()); // NOTE: Multi-dimensional array that happens to exactly one dimension. Assert.Equal("N.A<N.C>[,]", typeA.MakeGenericType(typeC).MakeArrayType(2).GetTypeName()); Assert.Equal("N.A<N.C[]>.B<N.C>[,,]", typeB.MakeGenericType(typeC.MakeArrayType(), typeC).MakeArrayType(3).GetTypeName()); } [Fact] public void CustomBoundsArrayTypes() { Array instance = Array.CreateInstance(typeof(int), new[] { 1, 2, 3, }, new[] { 4, 5, 6, }); Assert.Equal("int[,,]", instance.GetType().GetTypeName()); Assert.Equal("int[][,,]", instance.GetType().MakeArrayType().GetTypeName()); } [Fact] public void PrimitivePointerTypes() { Assert.Equal("int*", typeof(int).MakePointerType().GetTypeName()); Assert.Equal("int**", typeof(int).MakePointerType().MakePointerType().GetTypeName()); Assert.Equal("int*[]", typeof(int).MakePointerType().MakeArrayType().GetTypeName()); } [Fact] public void PointerTypes() { var source = @" namespace N { public struct A<T> { public struct B<U> { } } public struct C { } } "; var assembly = GetAssembly(source); var typeA = assembly.GetType("N.A`1"); var typeB = typeA.GetNestedType("B`1"); var typeC = assembly.GetType("N.C"); Assert.Equal("N.C*", typeC.MakePointerType().GetTypeName()); Assert.Equal("N.A<N.C>*", typeA.MakeGenericType(typeC).MakePointerType().GetTypeName()); Assert.Equal("N.A<N.C>.B<N.C>*", typeB.MakeGenericType(typeC, typeC).MakePointerType().GetTypeName()); } [Fact] public void Void() { Assert.Equal("void", typeof(void).GetTypeName()); Assert.Equal("void*", typeof(void).MakePointerType().GetTypeName()); } [Fact] public void KeywordIdentifiers() { var source = @" public class @object { public class @true { } } namespace @return { public class @yield<@async> { public class @await { } } namespace @false { public class @null { } } } "; var assembly = GetAssembly(source); var objectType = assembly.GetType("object"); var trueType = objectType.GetNestedType("true"); var nullType = assembly.GetType("return.false.null"); var yieldType = assembly.GetType("return.yield`1"); var constructedYieldType = yieldType.MakeGenericType(nullType); var awaitType = yieldType.GetNestedType("await"); var constructedAwaitType = awaitType.MakeGenericType(nullType); Assert.Equal("object", objectType.GetTypeName(escapeKeywordIdentifiers: false)); Assert.Equal("object.true", trueType.GetTypeName(escapeKeywordIdentifiers: false)); Assert.Equal("return.false.null", nullType.GetTypeName(escapeKeywordIdentifiers: false)); Assert.Equal("return.yield<async>", yieldType.GetTypeName(escapeKeywordIdentifiers: false)); Assert.Equal("return.yield<return.false.null>", constructedYieldType.GetTypeName(escapeKeywordIdentifiers: false)); Assert.Equal("return.yield<return.false.null>.await", constructedAwaitType.GetTypeName(escapeKeywordIdentifiers: false)); Assert.Equal("@object", objectType.GetTypeName(escapeKeywordIdentifiers: true)); Assert.Equal("@object.@true", trueType.GetTypeName(escapeKeywordIdentifiers: true)); Assert.Equal("@return.@false.@null", nullType.GetTypeName(escapeKeywordIdentifiers: true)); Assert.Equal("@return.@yield<@async>", yieldType.GetTypeName(escapeKeywordIdentifiers: true)); Assert.Equal("@return.@yield<@return.@false.@null>", constructedYieldType.GetTypeName(escapeKeywordIdentifiers: true)); Assert.Equal("@return.@yield<@return.@false.@null>.@await", constructedAwaitType.GetTypeName(escapeKeywordIdentifiers: true)); } [WorkItem(1087216, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1087216")] [Fact] public void DynamicAttribute_KeywordEscaping() { var attributes = new[] { true }; Assert.Equal("dynamic", typeof(object).GetTypeName(MakeCustomTypeInfo(attributes), escapeKeywordIdentifiers: false)); Assert.Equal("dynamic", typeof(object).GetTypeName(MakeCustomTypeInfo(attributes), escapeKeywordIdentifiers: true)); } [WorkItem(1087216, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1087216")] [Fact] public void DynamicAttribute_Locations() { // Standalone. Assert.Equal("dynamic", typeof(object).GetTypeName(MakeCustomTypeInfo(true))); // Array element type. Assert.Equal("dynamic[]", typeof(object[]).GetTypeName(MakeCustomTypeInfo(false, true))); Assert.Equal("dynamic[][]", typeof(object[][]).GetTypeName(MakeCustomTypeInfo(false, false, true))); // Type argument of top-level type. Assert.Equal("System.Func<dynamic>", typeof(Func<object>).GetTypeName(MakeCustomTypeInfo(false, true))); var source = @" namespace N { public struct A<T> { public struct B<U> { } } public struct C { } } "; var assembly = GetAssembly(source); var typeA = assembly.GetType("N.A`1"); var typeB = typeA.GetNestedType("B`1"); var typeBConstructed = typeB.MakeGenericType(typeof(object), typeof(object)); // Type argument of nested type. Assert.Equal("N.A<object>.B<dynamic>", typeBConstructed.GetTypeName(MakeCustomTypeInfo(false, false, true))); Assert.Equal("N.A<dynamic>.B<object>", typeBConstructed.GetTypeName(MakeCustomTypeInfo(false, true, false))); Assert.Equal("N.A<dynamic>.B<dynamic>[]", typeBConstructed.MakeArrayType().GetTypeName(MakeCustomTypeInfo(false, false, true, true))); } [WorkItem(1087216, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1087216")] [Fact] public void DynamicAttribute_InvalidFlags() { // Invalid true. Assert.Equal("int", typeof(int).GetTypeName(MakeCustomTypeInfo(true))); Assert.Equal("dynamic[]", typeof(object[]).GetTypeName(MakeCustomTypeInfo(true, true))); // Too many. Assert.Equal("dynamic", typeof(object).GetTypeName(MakeCustomTypeInfo(true, true))); Assert.Equal("object", typeof(object).GetTypeName(MakeCustomTypeInfo(false, true))); // Too few. Assert.Equal("object[]", typeof(object[]).GetTypeName(MakeCustomTypeInfo(true))); Assert.Equal("object[]", typeof(object[]).GetTypeName(MakeCustomTypeInfo(false))); // Type argument of top-level type. Assert.Equal("System.Func<object>", typeof(Func<object>).GetTypeName(MakeCustomTypeInfo(true))); var source = @" namespace N { public struct A<T> { public struct B<U> { } } public struct C { } } "; var assembly = GetAssembly(source); var typeA = assembly.GetType("N.A`1"); var typeB = typeA.GetNestedType("B`1"); var typeBConstructed = typeB.MakeGenericType(typeof(object), typeof(object)); // Type argument of nested type. Assert.Equal("N.A<object>.B<object>", typeBConstructed.GetTypeName(MakeCustomTypeInfo(false))); Assert.Equal("N.A<dynamic>.B<object>", typeBConstructed.GetTypeName(MakeCustomTypeInfo(false, true))); Assert.Equal("N.A<dynamic>.B<object>[]", typeBConstructed.MakeArrayType().GetTypeName(MakeCustomTypeInfo(false, false, true))); } [WorkItem(1087216, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1087216")] [Fact] public void DynamicAttribute_OtherGuid() { var typeInfo = DkmClrCustomTypeInfo.Create(Guid.NewGuid(), new ReadOnlyCollection<byte>(new byte[] { 1 })); Assert.Equal("object", typeof(object).GetTypeName(typeInfo)); Assert.Equal("object[]", typeof(object[]).GetTypeName(typeInfo)); } [Fact] public void MangledTypeParameterName() { var il = @" .class public auto ansi beforefieldinit Type`1<'<>Mangled'> extends [mscorlib]System.Object { .method public hidebysig specialname rtspecialname instance void .ctor() cil managed { ldarg.0 call instance void [mscorlib]System.Object::.ctor() ret } } "; ImmutableArray<byte> assemblyBytes; ImmutableArray<byte> pdbBytes; CSharpTestBase.EmitILToArray(il, appendDefaultHeader: true, includePdb: false, assemblyBytes: out assemblyBytes, pdbBytes: out pdbBytes); var assembly = ReflectionUtilities.Load(assemblyBytes); var type = assembly.GetType("Type`1"); var typeName = type.GetTypeName(); Assert.Equal("Type<<>Mangled>", typeName); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/Core/Rebuild/VisualBasicCompilationFactory.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.IO; using System.Linq; using Microsoft.Cci; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Text; using Microsoft.CodeAnalysis.VisualBasic; using Roslyn.Utilities; using VB = Microsoft.CodeAnalysis.VisualBasic; namespace Microsoft.CodeAnalysis.Rebuild { public sealed class VisualBasicCompilationFactory : CompilationFactory { public new VisualBasicCompilationOptions CompilationOptions { get; } public new VisualBasicParseOptions ParseOptions => CompilationOptions.ParseOptions; protected override ParseOptions CommonParseOptions => ParseOptions; protected override CompilationOptions CommonCompilationOptions => CompilationOptions; private VisualBasicCompilationFactory( string assemblyFileName, CompilationOptionsReader optionsReader, VisualBasicCompilationOptions compilationOptions) : base(assemblyFileName, optionsReader) { CompilationOptions = compilationOptions; } internal static new VisualBasicCompilationFactory Create(string assemblyFileName, CompilationOptionsReader optionsReader) { Debug.Assert(optionsReader.GetLanguageName() == LanguageNames.VisualBasic); var compilationOptions = CreateVisualBasicCompilationOptions(assemblyFileName, optionsReader); return new VisualBasicCompilationFactory(assemblyFileName, optionsReader, compilationOptions); } public override SyntaxTree CreateSyntaxTree(string filePath, SourceText sourceText) => VisualBasicSyntaxTree.ParseText(sourceText, ParseOptions, filePath); public override Compilation CreateCompilation( ImmutableArray<SyntaxTree> syntaxTrees, ImmutableArray<MetadataReference> metadataReferences) => VisualBasicCompilation.Create( Path.GetFileNameWithoutExtension(AssemblyFileName), syntaxTrees: syntaxTrees, references: metadataReferences, options: CompilationOptions); private static VisualBasicCompilationOptions CreateVisualBasicCompilationOptions(string assemblyFileName, CompilationOptionsReader optionsReader) { var pdbOptions = optionsReader.GetMetadataCompilationOptions(); var langVersionString = pdbOptions.GetUniqueOption(CompilationOptionNames.LanguageVersion); pdbOptions.TryGetUniqueOption(CompilationOptionNames.Optimization, out var optimization); pdbOptions.TryGetUniqueOption(CompilationOptionNames.Platform, out var platform); pdbOptions.TryGetUniqueOption(CompilationOptionNames.GlobalNamespaces, out var globalNamespacesString); IEnumerable<GlobalImport>? globalImports = null; if (!string.IsNullOrEmpty(globalNamespacesString)) { globalImports = GlobalImport.Parse(globalNamespacesString.Split(';')); } VB.LanguageVersion langVersion = default; VB.LanguageVersionFacts.TryParse(langVersionString, ref langVersion); IReadOnlyDictionary<string, object>? preprocessorSymbols = null; if (pdbOptions.OptionToString(CompilationOptionNames.Define) is string defineString) { preprocessorSymbols = VisualBasicCommandLineParser.ParseConditionalCompilationSymbols(defineString, out var diagnostics); var diagnostic = diagnostics?.FirstOrDefault(x => x.IsUnsuppressedError); if (diagnostic is object) { throw new Exception(string.Format(RebuildResources.Cannot_create_compilation_options_0, diagnostic)); } } var parseOptions = VisualBasicParseOptions .Default .WithLanguageVersion(langVersion) .WithPreprocessorSymbols(preprocessorSymbols.ToImmutableArrayOrEmpty()); var (optimizationLevel, plus) = GetOptimizationLevel(optimization); var isChecked = pdbOptions.OptionToBool(CompilationOptionNames.Checked) ?? true; var embedVBRuntime = pdbOptions.OptionToBool(CompilationOptionNames.EmbedRuntime) ?? false; var rootNamespace = pdbOptions.OptionToString(CompilationOptionNames.RootNamespace); var compilationOptions = new VisualBasicCompilationOptions( pdbOptions.OptionToEnum<OutputKind>(CompilationOptionNames.OutputKind) ?? OutputKind.DynamicallyLinkedLibrary, moduleName: assemblyFileName, mainTypeName: optionsReader.GetMainTypeName(), scriptClassName: "Script", globalImports: globalImports, rootNamespace: rootNamespace, optionStrict: pdbOptions.OptionToEnum<OptionStrict>(CompilationOptionNames.OptionStrict) ?? OptionStrict.Off, optionInfer: pdbOptions.OptionToBool(CompilationOptionNames.OptionInfer) ?? false, optionExplicit: pdbOptions.OptionToBool(CompilationOptionNames.OptionExplicit) ?? false, optionCompareText: pdbOptions.OptionToBool(CompilationOptionNames.OptionCompareText) ?? false, parseOptions: parseOptions, embedVbCoreRuntime: embedVBRuntime, optimizationLevel: optimizationLevel, checkOverflow: isChecked, cryptoKeyContainer: null, cryptoKeyFile: null, cryptoPublicKey: optionsReader.GetPublicKey()?.ToImmutableArray() ?? default, delaySign: null, platform: GetPlatform(platform), generalDiagnosticOption: ReportDiagnostic.Default, specificDiagnosticOptions: null, concurrentBuild: true, deterministic: true, xmlReferenceResolver: null, sourceReferenceResolver: RebuildSourceReferenceResolver.Instance, metadataReferenceResolver: null, assemblyIdentityComparer: null, strongNameProvider: null, publicSign: false, reportSuppressedDiagnostics: false, metadataImportOptions: MetadataImportOptions.Public); compilationOptions.DebugPlusMode = plus; return compilationOptions; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.IO; using System.Linq; using Microsoft.Cci; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Text; using Microsoft.CodeAnalysis.VisualBasic; using Roslyn.Utilities; using VB = Microsoft.CodeAnalysis.VisualBasic; namespace Microsoft.CodeAnalysis.Rebuild { public sealed class VisualBasicCompilationFactory : CompilationFactory { public new VisualBasicCompilationOptions CompilationOptions { get; } public new VisualBasicParseOptions ParseOptions => CompilationOptions.ParseOptions; protected override ParseOptions CommonParseOptions => ParseOptions; protected override CompilationOptions CommonCompilationOptions => CompilationOptions; private VisualBasicCompilationFactory( string assemblyFileName, CompilationOptionsReader optionsReader, VisualBasicCompilationOptions compilationOptions) : base(assemblyFileName, optionsReader) { CompilationOptions = compilationOptions; } internal static new VisualBasicCompilationFactory Create(string assemblyFileName, CompilationOptionsReader optionsReader) { Debug.Assert(optionsReader.GetLanguageName() == LanguageNames.VisualBasic); var compilationOptions = CreateVisualBasicCompilationOptions(assemblyFileName, optionsReader); return new VisualBasicCompilationFactory(assemblyFileName, optionsReader, compilationOptions); } public override SyntaxTree CreateSyntaxTree(string filePath, SourceText sourceText) => VisualBasicSyntaxTree.ParseText(sourceText, ParseOptions, filePath); public override Compilation CreateCompilation( ImmutableArray<SyntaxTree> syntaxTrees, ImmutableArray<MetadataReference> metadataReferences) => VisualBasicCompilation.Create( Path.GetFileNameWithoutExtension(AssemblyFileName), syntaxTrees: syntaxTrees, references: metadataReferences, options: CompilationOptions); private static VisualBasicCompilationOptions CreateVisualBasicCompilationOptions(string assemblyFileName, CompilationOptionsReader optionsReader) { var pdbOptions = optionsReader.GetMetadataCompilationOptions(); var langVersionString = pdbOptions.GetUniqueOption(CompilationOptionNames.LanguageVersion); pdbOptions.TryGetUniqueOption(CompilationOptionNames.Optimization, out var optimization); pdbOptions.TryGetUniqueOption(CompilationOptionNames.Platform, out var platform); pdbOptions.TryGetUniqueOption(CompilationOptionNames.GlobalNamespaces, out var globalNamespacesString); IEnumerable<GlobalImport>? globalImports = null; if (!string.IsNullOrEmpty(globalNamespacesString)) { globalImports = GlobalImport.Parse(globalNamespacesString.Split(';')); } VB.LanguageVersion langVersion = default; VB.LanguageVersionFacts.TryParse(langVersionString, ref langVersion); IReadOnlyDictionary<string, object>? preprocessorSymbols = null; if (pdbOptions.OptionToString(CompilationOptionNames.Define) is string defineString) { preprocessorSymbols = VisualBasicCommandLineParser.ParseConditionalCompilationSymbols(defineString, out var diagnostics); var diagnostic = diagnostics?.FirstOrDefault(x => x.IsUnsuppressedError); if (diagnostic is object) { throw new Exception(string.Format(RebuildResources.Cannot_create_compilation_options_0, diagnostic)); } } var parseOptions = VisualBasicParseOptions .Default .WithLanguageVersion(langVersion) .WithPreprocessorSymbols(preprocessorSymbols.ToImmutableArrayOrEmpty()); var (optimizationLevel, plus) = GetOptimizationLevel(optimization); var isChecked = pdbOptions.OptionToBool(CompilationOptionNames.Checked) ?? true; var embedVBRuntime = pdbOptions.OptionToBool(CompilationOptionNames.EmbedRuntime) ?? false; var rootNamespace = pdbOptions.OptionToString(CompilationOptionNames.RootNamespace); var compilationOptions = new VisualBasicCompilationOptions( pdbOptions.OptionToEnum<OutputKind>(CompilationOptionNames.OutputKind) ?? OutputKind.DynamicallyLinkedLibrary, moduleName: assemblyFileName, mainTypeName: optionsReader.GetMainTypeName(), scriptClassName: "Script", globalImports: globalImports, rootNamespace: rootNamespace, optionStrict: pdbOptions.OptionToEnum<OptionStrict>(CompilationOptionNames.OptionStrict) ?? OptionStrict.Off, optionInfer: pdbOptions.OptionToBool(CompilationOptionNames.OptionInfer) ?? false, optionExplicit: pdbOptions.OptionToBool(CompilationOptionNames.OptionExplicit) ?? false, optionCompareText: pdbOptions.OptionToBool(CompilationOptionNames.OptionCompareText) ?? false, parseOptions: parseOptions, embedVbCoreRuntime: embedVBRuntime, optimizationLevel: optimizationLevel, checkOverflow: isChecked, cryptoKeyContainer: null, cryptoKeyFile: null, cryptoPublicKey: optionsReader.GetPublicKey()?.ToImmutableArray() ?? default, delaySign: null, platform: GetPlatform(platform), generalDiagnosticOption: ReportDiagnostic.Default, specificDiagnosticOptions: null, concurrentBuild: true, deterministic: true, xmlReferenceResolver: null, sourceReferenceResolver: RebuildSourceReferenceResolver.Instance, metadataReferenceResolver: null, assemblyIdentityComparer: null, strongNameProvider: null, publicSign: false, reportSuppressedDiagnostics: false, metadataImportOptions: MetadataImportOptions.Public); compilationOptions.DebugPlusMode = plus; return compilationOptions; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/Core/Portable/QuickInfo/QuickInfoContext.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Threading; namespace Microsoft.CodeAnalysis.QuickInfo { /// <summary> /// The context presented to a <see cref="QuickInfoProvider"/> when providing quick info. /// </summary> internal sealed class QuickInfoContext { /// <summary> /// The document that quick info was requested within. /// </summary> public Document Document { get; } /// <summary> /// The caret position where quick info was requested from. /// </summary> public int Position { get; } /// <summary> /// The cancellation token to use for this operation. /// </summary> public CancellationToken CancellationToken { get; } /// <summary> /// Creates a <see cref="QuickInfoContext"/> instance. /// </summary> public QuickInfoContext( Document document, int position, CancellationToken cancellationToken) { Document = document ?? throw new ArgumentNullException(nameof(document)); Position = position; CancellationToken = cancellationToken; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Threading; namespace Microsoft.CodeAnalysis.QuickInfo { /// <summary> /// The context presented to a <see cref="QuickInfoProvider"/> when providing quick info. /// </summary> internal sealed class QuickInfoContext { /// <summary> /// The document that quick info was requested within. /// </summary> public Document Document { get; } /// <summary> /// The caret position where quick info was requested from. /// </summary> public int Position { get; } /// <summary> /// The cancellation token to use for this operation. /// </summary> public CancellationToken CancellationToken { get; } /// <summary> /// Creates a <see cref="QuickInfoContext"/> instance. /// </summary> public QuickInfoContext( Document document, int position, CancellationToken cancellationToken) { Document = document ?? throw new ArgumentNullException(nameof(document)); Position = position; CancellationToken = cancellationToken; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/CSharp/Portable/Completion/KeywordRecommenders/GetKeywordRecommender.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Threading; using Microsoft.CodeAnalysis.CSharp.Extensions.ContextQuery; using Microsoft.CodeAnalysis.CSharp.Syntax; namespace Microsoft.CodeAnalysis.CSharp.Completion.KeywordRecommenders { internal class GetKeywordRecommender : AbstractSyntacticSingleKeywordRecommender { public GetKeywordRecommender() : base(SyntaxKind.GetKeyword) { } protected override bool IsValidContext(int position, CSharpSyntaxContext context, CancellationToken cancellationToken) { return context.TargetToken.IsAccessorDeclarationContext<PropertyDeclarationSyntax>(position, SyntaxKind.GetKeyword) || context.TargetToken.IsAccessorDeclarationContext<IndexerDeclarationSyntax>(position, SyntaxKind.GetKeyword); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Threading; using Microsoft.CodeAnalysis.CSharp.Extensions.ContextQuery; using Microsoft.CodeAnalysis.CSharp.Syntax; namespace Microsoft.CodeAnalysis.CSharp.Completion.KeywordRecommenders { internal class GetKeywordRecommender : AbstractSyntacticSingleKeywordRecommender { public GetKeywordRecommender() : base(SyntaxKind.GetKeyword) { } protected override bool IsValidContext(int position, CSharpSyntaxContext context, CancellationToken cancellationToken) { return context.TargetToken.IsAccessorDeclarationContext<PropertyDeclarationSyntax>(position, SyntaxKind.GetKeyword) || context.TargetToken.IsAccessorDeclarationContext<IndexerDeclarationSyntax>(position, SyntaxKind.GetKeyword); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Tools/ExternalAccess/FSharp/Internal/SignatureHelp/FSharpSignatureHelpTriggerReasonHelpers.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using Microsoft.CodeAnalysis.ExternalAccess.FSharp.SignatureHelp; using Microsoft.CodeAnalysis.SignatureHelp; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.ExternalAccess.FSharp.Internal.SignatureHelp { internal static class FSharpSignatureHelpTriggerReasonHelpers { public static FSharpSignatureHelpTriggerReason ConvertFrom(SignatureHelpTriggerReason triggerReason) { switch (triggerReason) { case SignatureHelpTriggerReason.InvokeSignatureHelpCommand: { return FSharpSignatureHelpTriggerReason.InvokeSignatureHelpCommand; } case SignatureHelpTriggerReason.RetriggerCommand: { return FSharpSignatureHelpTriggerReason.RetriggerCommand; } case SignatureHelpTriggerReason.TypeCharCommand: { return FSharpSignatureHelpTriggerReason.TypeCharCommand; } default: { throw ExceptionUtilities.UnexpectedValue(triggerReason); } } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using Microsoft.CodeAnalysis.ExternalAccess.FSharp.SignatureHelp; using Microsoft.CodeAnalysis.SignatureHelp; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.ExternalAccess.FSharp.Internal.SignatureHelp { internal static class FSharpSignatureHelpTriggerReasonHelpers { public static FSharpSignatureHelpTriggerReason ConvertFrom(SignatureHelpTriggerReason triggerReason) { switch (triggerReason) { case SignatureHelpTriggerReason.InvokeSignatureHelpCommand: { return FSharpSignatureHelpTriggerReason.InvokeSignatureHelpCommand; } case SignatureHelpTriggerReason.RetriggerCommand: { return FSharpSignatureHelpTriggerReason.RetriggerCommand; } case SignatureHelpTriggerReason.TypeCharCommand: { return FSharpSignatureHelpTriggerReason.TypeCharCommand; } default: { throw ExceptionUtilities.UnexpectedValue(triggerReason); } } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/CSharp/Portable/Lowering/AsyncRewriter/AsyncRewriter.AsyncIteratorRewriter.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Linq; using Microsoft.CodeAnalysis.CodeGen; using Microsoft.CodeAnalysis.CSharp.Symbols; using Microsoft.CodeAnalysis.PooledObjects; namespace Microsoft.CodeAnalysis.CSharp { internal partial class AsyncRewriter : StateMachineRewriter { /// <summary> /// This rewriter rewrites an async-iterator method. See async-streams.md for design overview. /// </summary> private sealed class AsyncIteratorRewriter : AsyncRewriter { private FieldSymbol _promiseOfValueOrEndField; // this struct implements the IValueTaskSource logic private FieldSymbol _currentField; // stores the current/yielded value private FieldSymbol _disposeModeField; // whether the state machine is in dispose mode (ie. skipping all logic except that in `catch` and `finally`, yielding no new elements) private FieldSymbol _combinedTokensField; // CancellationTokenSource for combining tokens // true if the iterator implements IAsyncEnumerable<T>, // false if it implements IAsyncEnumerator<T> private readonly bool _isEnumerable; internal AsyncIteratorRewriter( BoundStatement body, MethodSymbol method, int methodOrdinal, AsyncStateMachine stateMachineType, VariableSlotAllocator slotAllocatorOpt, TypeCompilationState compilationState, BindingDiagnosticBag diagnostics) : base(body, method, methodOrdinal, stateMachineType, slotAllocatorOpt, compilationState, diagnostics) { Debug.Assert(!TypeSymbol.Equals(method.IteratorElementTypeWithAnnotations.Type, null, TypeCompareKind.ConsiderEverything2)); _isEnumerable = method.IsAsyncReturningIAsyncEnumerable(method.DeclaringCompilation); Debug.Assert(_isEnumerable != method.IsAsyncReturningIAsyncEnumerator(method.DeclaringCompilation)); } protected override void VerifyPresenceOfRequiredAPIs(BindingDiagnosticBag bag) { base.VerifyPresenceOfRequiredAPIs(bag); if (_isEnumerable) { EnsureWellKnownMember(WellKnownMember.System_Collections_Generic_IAsyncEnumerable_T__GetAsyncEnumerator, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_CancellationToken__Equals, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_CancellationTokenSource__CreateLinkedTokenSource, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_CancellationTokenSource__Token, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_CancellationTokenSource__Dispose, bag); } EnsureWellKnownMember(WellKnownMember.System_Collections_Generic_IAsyncEnumerator_T__MoveNextAsync, bag); EnsureWellKnownMember(WellKnownMember.System_Collections_Generic_IAsyncEnumerator_T__get_Current, bag); EnsureWellKnownMember(WellKnownMember.System_IAsyncDisposable__DisposeAsync, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_ValueTask_T__ctorSourceAndToken, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_ValueTask_T__ctorValue, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_ValueTask__ctor, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetResult, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetStatus, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__get_Version, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__OnCompleted, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__Reset, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__SetException, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__SetResult, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource_T__GetResult, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource_T__GetStatus, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource_T__OnCompleted, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource__GetResult, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource__GetStatus, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource__OnCompleted, bag); } protected override void GenerateMethodImplementations() { // IAsyncStateMachine methods and constructor base.GenerateMethodImplementations(); if (_isEnumerable) { // IAsyncEnumerable GenerateIAsyncEnumerableImplementation_GetAsyncEnumerator(); } // IAsyncEnumerator GenerateIAsyncEnumeratorImplementation_MoveNextAsync(); GenerateIAsyncEnumeratorImplementation_Current(); // IValueTaskSource<bool> GenerateIValueTaskSourceBoolImplementation_GetResult(); GenerateIValueTaskSourceBoolImplementation_GetStatus(); GenerateIValueTaskSourceBoolImplementation_OnCompleted(); // IValueTaskSource GenerateIValueTaskSourceImplementation_GetResult(); GenerateIValueTaskSourceImplementation_GetStatus(); GenerateIValueTaskSourceImplementation_OnCompleted(); // IAsyncDisposable GenerateIAsyncDisposable_DisposeAsync(); } protected override bool PreserveInitialParameterValuesAndThreadId => _isEnumerable; protected override void GenerateControlFields() { // the fields are initialized from entry-point method (which replaces the async-iterator method), so they need to be public base.GenerateControlFields(); NamedTypeSymbol boolType = F.SpecialType(SpecialType.System_Boolean); // Add a field: ManualResetValueTaskSourceLogic<bool> promiseOfValueOrEnd _promiseOfValueOrEndField = F.StateMachineField( F.WellKnownType(WellKnownType.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T).Construct(boolType), GeneratedNames.MakeAsyncIteratorPromiseOfValueOrEndFieldName(), isPublic: true); // the element type may contain method type parameters, which are now alpha-renamed into type parameters of the generated class TypeSymbol elementType = ((AsyncStateMachine)stateMachineType).IteratorElementType; // Add a field: T current _currentField = F.StateMachineField(elementType, GeneratedNames.MakeIteratorCurrentFieldName()); // Add a field: bool disposeMode _disposeModeField = F.StateMachineField(boolType, GeneratedNames.MakeDisposeModeFieldName()); if (_isEnumerable && this.method.Parameters.Any(p => p.IsSourceParameterWithEnumeratorCancellationAttribute())) { // Add a field: CancellationTokenSource combinedTokens _combinedTokensField = F.StateMachineField( F.WellKnownType(WellKnownType.System_Threading_CancellationTokenSource), GeneratedNames.MakeAsyncIteratorCombinedTokensFieldName()); } } protected override void GenerateConstructor() { // Produces: // .ctor(int state) // { // this.builder = System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create(); // this.state = state; // this.initialThreadId = {managedThreadId}; // } Debug.Assert(stateMachineType.Constructor is IteratorConstructor); F.CurrentFunction = stateMachineType.Constructor; var bodyBuilder = ArrayBuilder<BoundStatement>.GetInstance(); bodyBuilder.Add(F.BaseInitialization()); // this.builder = System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create(); bodyBuilder.Add(GenerateCreateAndAssignBuilder()); bodyBuilder.Add(F.Assignment(F.InstanceField(stateField), F.Parameter(F.CurrentFunction.Parameters[0]))); // this.state = state; var managedThreadId = MakeCurrentThreadId(); if (managedThreadId != null && (object)initialThreadIdField != null) { // this.initialThreadId = {managedThreadId}; bodyBuilder.Add(F.Assignment(F.InstanceField(initialThreadIdField), managedThreadId)); } bodyBuilder.Add(F.Return()); F.CloseMethod(F.Block(bodyBuilder.ToImmutableAndFree())); bodyBuilder = null; } private BoundExpressionStatement GenerateCreateAndAssignBuilder() { // Produce: // this.builder = System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create(); return F.Assignment( F.InstanceField(_builderField), F.StaticCall( null, _asyncMethodBuilderMemberCollection.CreateBuilder)); } protected override void InitializeStateMachine(ArrayBuilder<BoundStatement> bodyBuilder, NamedTypeSymbol frameType, LocalSymbol stateMachineLocal) { // var stateMachineLocal = new {StateMachineType}({initialState}) int initialState = _isEnumerable ? StateMachineStates.FinishedStateMachine : StateMachineStates.InitialAsyncIteratorStateMachine; bodyBuilder.Add( F.Assignment( F.Local(stateMachineLocal), F.New(stateMachineType.Constructor.AsMember(frameType), F.Literal(initialState)))); } protected override BoundStatement InitializeParameterField(MethodSymbol getEnumeratorMethod, ParameterSymbol parameter, BoundExpression resultParameter, BoundExpression parameterProxy) { BoundStatement result; if (_combinedTokensField is object && parameter.IsSourceParameterWithEnumeratorCancellationAttribute() && parameter.Type.Equals(F.Compilation.GetWellKnownType(WellKnownType.System_Threading_CancellationToken), TypeCompareKind.ConsiderEverything)) { // For a parameter of type CancellationToken with [EnumeratorCancellation] // if (this.parameterProxy.Equals(default)) // { // result.parameter = token; // } // else if (token.Equals(this.parameterProxy) || token.Equals(default)) // { // result.parameter = this.parameterProxy; // } // else // { // result.combinedTokens = CancellationTokenSource.CreateLinkedTokenSource(this.parameterProxy, token); // result.parameter = combinedTokens.Token; // } BoundParameter tokenParameter = F.Parameter(getEnumeratorMethod.Parameters[0]); BoundFieldAccess combinedTokens = F.Field(F.This(), _combinedTokensField); result = F.If( // if (this.parameterProxy.Equals(default)) F.Call(parameterProxy, WellKnownMember.System_Threading_CancellationToken__Equals, F.Default(parameterProxy.Type)), // result.parameter = token; thenClause: F.Assignment(resultParameter, tokenParameter), elseClauseOpt: F.If( // else if (token.Equals(this.parameterProxy) || token.Equals(default)) F.LogicalOr( F.Call(tokenParameter, WellKnownMember.System_Threading_CancellationToken__Equals, parameterProxy), F.Call(tokenParameter, WellKnownMember.System_Threading_CancellationToken__Equals, F.Default(tokenParameter.Type))), // result.parameter = this.parameterProxy; thenClause: F.Assignment(resultParameter, parameterProxy), elseClauseOpt: F.Block( // result.combinedTokens = CancellationTokenSource.CreateLinkedTokenSource(this.parameterProxy, token); F.Assignment(combinedTokens, F.StaticCall(WellKnownMember.System_Threading_CancellationTokenSource__CreateLinkedTokenSource, parameterProxy, tokenParameter)), // result.parameter = result.combinedTokens.Token; F.Assignment(resultParameter, F.Property(combinedTokens, WellKnownMember.System_Threading_CancellationTokenSource__Token))))); } else { // For parameters that don't have [EnumeratorCancellation], initialize their parameter fields // result.parameter = this.parameterProxy; result = F.Assignment(resultParameter, parameterProxy); } return result; } protected override BoundStatement GenerateStateMachineCreation(LocalSymbol stateMachineVariable, NamedTypeSymbol frameType, IReadOnlyDictionary<Symbol, CapturedSymbolReplacement> proxies) { var bodyBuilder = ArrayBuilder<BoundStatement>.GetInstance(); bodyBuilder.Add(GenerateParameterStorage(stateMachineVariable, proxies)); // return local; bodyBuilder.Add( F.Return( F.Local(stateMachineVariable))); return F.Block(bodyBuilder.ToImmutableAndFree()); } /// <summary> /// Generates the `ValueTask&lt;bool> MoveNextAsync()` method. /// </summary> [SuppressMessage("Style", "VSTHRD200:Use \"Async\" suffix for async methods", Justification = "Standard naming convention for generating 'IAsyncEnumerator.MoveNextAsync'")] private void GenerateIAsyncEnumeratorImplementation_MoveNextAsync() { // Produce: // if (state == StateMachineStates.FinishedStateMachine) // { // return default; // } // _valueOrEndPromise.Reset(); // var inst = this; // _builder.Start(ref inst); // var version = _valueOrEndPromise.Version; // if (_valueOrEndPromise.GetStatus(version) == ValueTaskSourceStatus.Succeeded) // { // return new ValueTask<bool>(_valueOrEndPromise.GetResult(version)); // } // return new ValueTask<bool>(this, version); NamedTypeSymbol IAsyncEnumeratorOfElementType = F.WellKnownType(WellKnownType.System_Collections_Generic_IAsyncEnumerator_T) .Construct(_currentField.Type); MethodSymbol IAsyncEnumerableOfElementType_MoveNextAsync = F.WellKnownMethod(WellKnownMember.System_Collections_Generic_IAsyncEnumerator_T__MoveNextAsync) .AsMember(IAsyncEnumeratorOfElementType); var promiseType = (NamedTypeSymbol)_promiseOfValueOrEndField.Type; MethodSymbol promise_GetStatus = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetStatus) .AsMember(promiseType); MethodSymbol promise_GetResult = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetResult) .AsMember(promiseType); var moveNextAsyncReturnType = (NamedTypeSymbol)IAsyncEnumerableOfElementType_MoveNextAsync.ReturnType; MethodSymbol valueTaskT_ctorValue = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_ValueTask_T__ctorValue) .AsMember(moveNextAsyncReturnType); MethodSymbol valueTaskT_ctor = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_ValueTask_T__ctorSourceAndToken) .AsMember(moveNextAsyncReturnType); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IAsyncEnumerableOfElementType_MoveNextAsync, hasMethodBodyDependency: false); GetPartsForStartingMachine(out BoundExpressionStatement callReset, out LocalSymbol instSymbol, out BoundStatement instAssignment, out BoundExpressionStatement startCall, out MethodSymbol promise_get_Version); BoundStatement ifFinished = F.If( // if (state == StateMachineStates.FinishedStateMachine) F.IntEqual(F.InstanceField(stateField), F.Literal(StateMachineStates.FinishedStateMachine)), // return default; thenClause: F.Return(F.Default(moveNextAsyncReturnType))); // var version = _valueOrEndPromise.Version; var versionSymbol = F.SynthesizedLocal(F.SpecialType(SpecialType.System_Int16)); var versionLocal = F.Local(versionSymbol); var versionInit = F.Assignment(versionLocal, F.Call(F.Field(F.This(), _promiseOfValueOrEndField), promise_get_Version)); var ifPromiseReady = F.If( // if (_valueOrEndPromise.GetStatus(version) == ValueTaskSourceStatus.Succeeded) F.IntEqual( F.Call(F.Field(F.This(), _promiseOfValueOrEndField), promise_GetStatus, versionLocal), F.Literal(1)), // return new ValueTask<bool>(_valueOrEndPromise.GetResult(version)); thenClause: F.Return(F.New(valueTaskT_ctorValue, F.Call(F.Field(F.This(), _promiseOfValueOrEndField), promise_GetResult, versionLocal)))); // return new ValueTask<bool>(this, version); // Note: we fall back to this slower method of returning when the promise doesn't yet have a value. // This method of returning relies on two interface calls (`IValueTaskSource<bool>.GetStatus(version)` and `IValueTaskSource<bool>.GetResult(version)`). var returnStatement = F.Return(F.New(valueTaskT_ctor, F.This(), versionLocal)); F.CloseMethod(F.Block( ImmutableArray.Create(instSymbol, versionSymbol), ifFinished, callReset, // _promiseOfValueOrEnd.Reset(); instAssignment, // var inst = this; startCall, // _builder.Start(ref inst); versionInit, ifPromiseReady, returnStatement)); } /// <summary> /// Prepares most of the parts for MoveNextAsync() and DisposeAsync() methods. /// </summary> private void GetPartsForStartingMachine(out BoundExpressionStatement callReset, out LocalSymbol instSymbol, out BoundStatement instAssignment, out BoundExpressionStatement startCall, out MethodSymbol promise_get_Version) { // Produce the following parts: // - _promiseOfValueOrEnd.Reset(); // - var inst = this; // - _builder.Start(ref inst); // - _valueOrEndPromise.Version // _promiseOfValueOrEnd.Reset(); BoundFieldAccess promiseField = F.InstanceField(_promiseOfValueOrEndField); var resetMethod = (MethodSymbol)F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__Reset, isOptional: true) .SymbolAsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); callReset = F.ExpressionStatement(F.Call(promiseField, resetMethod)); // _builder.Start(ref inst); Debug.Assert(!_asyncMethodBuilderMemberCollection.CheckGenericMethodConstraints); MethodSymbol startMethod = _asyncMethodBuilderMemberCollection.Start.Construct(this.stateMachineType); instSymbol = F.SynthesizedLocal(this.stateMachineType); // var inst = this; var instLocal = F.Local(instSymbol); instAssignment = F.Assignment(instLocal, F.This()); // _builder.Start(ref inst); startCall = F.ExpressionStatement( F.Call( F.InstanceField(_builderField), startMethod, ImmutableArray.Create<BoundExpression>(instLocal))); // _valueOrEndPromise.Version promise_get_Version = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__get_Version) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); } /// <summary> /// Generates the `ValueTask IAsyncDisposable.DisposeAsync()` method. /// The DisposeAsync method should not be called from states -1 (running) or 0-and-up (awaits). /// </summary> [SuppressMessage("Style", "VSTHRD200:Use \"Async\" suffix for async methods", Justification = "Standard naming convention for generating 'IAsyncDisposable.DisposeAsync'")] private void GenerateIAsyncDisposable_DisposeAsync() { // Produce: // if (state >= StateMachineStates.NotStartedStateMachine /* -3 */) // { // throw new NotSupportedException(); // } // if (state == StateMachineStates.FinishedStateMachine /* -2 */) // { // return default; // } // disposeMode = true; // _valueOrEndPromise.Reset(); // var inst = this; // _builder.Start(ref inst); // return new ValueTask(this, _valueOrEndPromise.Version); MethodSymbol IAsyncDisposable_DisposeAsync = F.WellKnownMethod(WellKnownMember.System_IAsyncDisposable__DisposeAsync); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IAsyncDisposable_DisposeAsync, hasMethodBodyDependency: false); TypeSymbol returnType = IAsyncDisposable_DisposeAsync.ReturnType; GetPartsForStartingMachine(out BoundExpressionStatement callReset, out LocalSymbol instSymbol, out BoundStatement instAssignment, out BoundExpressionStatement startCall, out MethodSymbol promise_get_Version); BoundStatement ifInvalidState = F.If( // if (state >= StateMachineStates.NotStartedStateMachine /* -1 */) F.IntGreaterThanOrEqual(F.InstanceField(stateField), F.Literal(StateMachineStates.NotStartedStateMachine)), // throw new NotSupportedException(); thenClause: F.Throw(F.New(F.WellKnownType(WellKnownType.System_NotSupportedException)))); BoundStatement ifFinished = F.If( // if (state == StateMachineStates.FinishedStateMachine) F.IntEqual(F.InstanceField(stateField), F.Literal(StateMachineStates.FinishedStateMachine)), // return default; thenClause: F.Return(F.Default(returnType))); MethodSymbol valueTask_ctor = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_ValueTask__ctor) .AsMember((NamedTypeSymbol)IAsyncDisposable_DisposeAsync.ReturnType); // return new ValueTask(this, _valueOrEndPromise.Version); var returnStatement = F.Return(F.New(valueTask_ctor, F.This(), F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_get_Version))); F.CloseMethod(F.Block( ImmutableArray.Create(instSymbol), ifInvalidState, ifFinished, F.Assignment(F.InstanceField(_disposeModeField), F.Literal(true)), // disposeMode = true; callReset, // _promiseOfValueOrEnd.Reset(); instAssignment, // var inst = this; startCall, // _builder.Start(ref inst); returnStatement)); } /// <summary> /// Generates the Current property. /// </summary> private void GenerateIAsyncEnumeratorImplementation_Current() { // Produce the implementation for `T Current { get; }`: // return _current; NamedTypeSymbol IAsyncEnumeratorOfElementType = F.WellKnownType(WellKnownType.System_Collections_Generic_IAsyncEnumerator_T) .Construct(_currentField.Type); MethodSymbol IAsyncEnumerableOfElementType_get_Current = F.WellKnownMethod(WellKnownMember.System_Collections_Generic_IAsyncEnumerator_T__get_Current) .AsMember(IAsyncEnumeratorOfElementType); OpenPropertyImplementation(IAsyncEnumerableOfElementType_get_Current); F.CloseMethod(F.Block(F.Return(F.InstanceField(_currentField)))); } private void GenerateIValueTaskSourceBoolImplementation_GetResult() { // Produce the implementation for `bool IValueTaskSource<bool>.GetResult(short token)`: // return _valueOrEndPromise.GetResult(token); NamedTypeSymbol IValueTaskSourceOfBool = F.WellKnownType(WellKnownType.System_Threading_Tasks_Sources_IValueTaskSource_T) .Construct(F.SpecialType(SpecialType.System_Boolean)); MethodSymbol IValueTaskSourceOfBool_GetResult = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource_T__GetResult) .AsMember(IValueTaskSourceOfBool); MethodSymbol promise_GetResult = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetResult) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IValueTaskSourceOfBool_GetResult, hasMethodBodyDependency: false); // return this._valueOrEndPromise.GetResult(token); F.CloseMethod(F.Return( F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_GetResult, F.Parameter(IValueTaskSourceOfBool_GetResult.Parameters[0])))); } private void GenerateIValueTaskSourceBoolImplementation_GetStatus() { // Produce the implementation for `ValueTaskSourceStatus IValueTaskSource<bool>.GetStatus(short token)`: // return this._valueOrEndPromise.GetStatus(token); NamedTypeSymbol IValueTaskSourceOfBool = F.WellKnownType(WellKnownType.System_Threading_Tasks_Sources_IValueTaskSource_T) .Construct(F.SpecialType(SpecialType.System_Boolean)); MethodSymbol IValueTaskSourceOfBool_GetStatus = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource_T__GetStatus) .AsMember(IValueTaskSourceOfBool); MethodSymbol promise_GetStatus = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetStatus) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IValueTaskSourceOfBool_GetStatus, hasMethodBodyDependency: false); // return this._valueOrEndPromise.GetStatus(token); F.CloseMethod(F.Return( F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_GetStatus, F.Parameter(IValueTaskSourceOfBool_GetStatus.Parameters[0])))); } private void GenerateIValueTaskSourceBoolImplementation_OnCompleted() { // Produce the implementation for `void IValueTaskSource<bool>.OnCompleted(Action<object> continuation, object state, short token, ValueTaskSourceOnCompletedFlags flags)`: // this._valueOrEndPromise.OnCompleted(continuation, state, token, flags); // return; NamedTypeSymbol IValueTaskSourceOfBool = F.WellKnownType(WellKnownType.System_Threading_Tasks_Sources_IValueTaskSource_T) .Construct(F.SpecialType(SpecialType.System_Boolean)); MethodSymbol IValueTaskSourceOfBool_OnCompleted = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource_T__OnCompleted) .AsMember(IValueTaskSourceOfBool); MethodSymbol promise_OnCompleted = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__OnCompleted) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IValueTaskSourceOfBool_OnCompleted, hasMethodBodyDependency: false); F.CloseMethod(F.Block( // this._valueOrEndPromise.OnCompleted(continuation, state, token, flags); F.ExpressionStatement( F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_OnCompleted, F.Parameter(IValueTaskSourceOfBool_OnCompleted.Parameters[0]), F.Parameter(IValueTaskSourceOfBool_OnCompleted.Parameters[1]), F.Parameter(IValueTaskSourceOfBool_OnCompleted.Parameters[2]), F.Parameter(IValueTaskSourceOfBool_OnCompleted.Parameters[3]))), F.Return())); // return; } private void GenerateIValueTaskSourceImplementation_GetResult() { // Produce an implementation for `void IValueTaskSource.GetResult(short token)`: // this._valueOrEndPromise.GetResult(token); // return; MethodSymbol IValueTaskSource_GetResult = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource__GetResult); MethodSymbol promise_GetResult = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetResult) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IValueTaskSource_GetResult, hasMethodBodyDependency: false); F.CloseMethod(F.Block( // this._valueOrEndPromise.GetResult(token); F.ExpressionStatement(F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_GetResult, F.Parameter(IValueTaskSource_GetResult.Parameters[0]))), // return; F.Return())); } // Consider factoring with IValueTaskSource<bool> implementation // See https://github.com/dotnet/roslyn/issues/31517 private void GenerateIValueTaskSourceImplementation_GetStatus() { // Produce the implementation for `ValueTaskSourceStatus IValueTaskSource.GetStatus(short token)`: // return this._valueOrEndPromise.GetStatus(token); MethodSymbol IValueTaskSource_GetStatus = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource__GetStatus); MethodSymbol promise_GetStatus = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetStatus) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IValueTaskSource_GetStatus, hasMethodBodyDependency: false); // return this._valueOrEndPromise.GetStatus(token); F.CloseMethod(F.Return( F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_GetStatus, F.Parameter(IValueTaskSource_GetStatus.Parameters[0])))); } // Consider factoring with IValueTaskSource<bool> implementation // See https://github.com/dotnet/roslyn/issues/31517 private void GenerateIValueTaskSourceImplementation_OnCompleted() { // Produce the implementation for `void IValueTaskSource.OnCompleted(Action<object> continuation, object state, short token, ValueTaskSourceOnCompletedFlags flags)`: // this._valueOrEndPromise.OnCompleted(continuation, state, token, flags); // return; MethodSymbol IValueTaskSource_OnCompleted = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource__OnCompleted); MethodSymbol promise_OnCompleted = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__OnCompleted) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IValueTaskSource_OnCompleted, hasMethodBodyDependency: false); F.CloseMethod(F.Block( // this._valueOrEndPromise.OnCompleted(continuation, state, token, flags); F.ExpressionStatement( F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_OnCompleted, F.Parameter(IValueTaskSource_OnCompleted.Parameters[0]), F.Parameter(IValueTaskSource_OnCompleted.Parameters[1]), F.Parameter(IValueTaskSource_OnCompleted.Parameters[2]), F.Parameter(IValueTaskSource_OnCompleted.Parameters[3]))), F.Return())); // return; } /// <summary> /// Generates the GetAsyncEnumerator method. /// </summary> private void GenerateIAsyncEnumerableImplementation_GetAsyncEnumerator() { NamedTypeSymbol IAsyncEnumerableOfElementType = F.WellKnownType(WellKnownType.System_Collections_Generic_IAsyncEnumerable_T) .Construct(_currentField.Type); MethodSymbol IAsyncEnumerableOfElementType_GetEnumerator = F.WellKnownMethod(WellKnownMember.System_Collections_Generic_IAsyncEnumerable_T__GetAsyncEnumerator) .AsMember(IAsyncEnumerableOfElementType); BoundExpression managedThreadId = null; GenerateIteratorGetEnumerator(IAsyncEnumerableOfElementType_GetEnumerator, ref managedThreadId, initialState: StateMachineStates.InitialAsyncIteratorStateMachine); } protected override void GenerateResetInstance(ArrayBuilder<BoundStatement> builder, int initialState) { // this.state = {initialState}; // this.builder = System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create(); // this.disposeMode = false; builder.Add( // this.state = {initialState}; F.Assignment(F.Field(F.This(), stateField), F.Literal(initialState))); builder.Add( // this.builder = System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create(); GenerateCreateAndAssignBuilder()); builder.Add( // disposeMode = false; F.Assignment(F.InstanceField(_disposeModeField), F.Literal(false))); } protected override void GenerateMoveNext(SynthesizedImplementationMethod moveNextMethod) { MethodSymbol setResultMethod = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__SetResult, isOptional: true); if (setResultMethod is { }) { setResultMethod = (MethodSymbol)setResultMethod.SymbolAsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); } MethodSymbol setExceptionMethod = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__SetException, isOptional: true); if (setExceptionMethod is { }) { setExceptionMethod = (MethodSymbol)setExceptionMethod.SymbolAsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); } var rewriter = new AsyncIteratorMethodToStateMachineRewriter( method: method, methodOrdinal: _methodOrdinal, asyncMethodBuilderMemberCollection: _asyncMethodBuilderMemberCollection, asyncIteratorInfo: new AsyncIteratorInfo(_promiseOfValueOrEndField, _combinedTokensField, _currentField, _disposeModeField, setResultMethod, setExceptionMethod), F: F, state: stateField, builder: _builderField, hoistedVariables: hoistedVariables, nonReusableLocalProxies: nonReusableLocalProxies, synthesizedLocalOrdinals: synthesizedLocalOrdinals, slotAllocatorOpt: slotAllocatorOpt, nextFreeHoistedLocalSlot: nextFreeHoistedLocalSlot, diagnostics: diagnostics); rewriter.GenerateMoveNext(body, moveNextMethod); } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Linq; using Microsoft.CodeAnalysis.CodeGen; using Microsoft.CodeAnalysis.CSharp.Symbols; using Microsoft.CodeAnalysis.PooledObjects; namespace Microsoft.CodeAnalysis.CSharp { internal partial class AsyncRewriter : StateMachineRewriter { /// <summary> /// This rewriter rewrites an async-iterator method. See async-streams.md for design overview. /// </summary> private sealed class AsyncIteratorRewriter : AsyncRewriter { private FieldSymbol _promiseOfValueOrEndField; // this struct implements the IValueTaskSource logic private FieldSymbol _currentField; // stores the current/yielded value private FieldSymbol _disposeModeField; // whether the state machine is in dispose mode (ie. skipping all logic except that in `catch` and `finally`, yielding no new elements) private FieldSymbol _combinedTokensField; // CancellationTokenSource for combining tokens // true if the iterator implements IAsyncEnumerable<T>, // false if it implements IAsyncEnumerator<T> private readonly bool _isEnumerable; internal AsyncIteratorRewriter( BoundStatement body, MethodSymbol method, int methodOrdinal, AsyncStateMachine stateMachineType, VariableSlotAllocator slotAllocatorOpt, TypeCompilationState compilationState, BindingDiagnosticBag diagnostics) : base(body, method, methodOrdinal, stateMachineType, slotAllocatorOpt, compilationState, diagnostics) { Debug.Assert(!TypeSymbol.Equals(method.IteratorElementTypeWithAnnotations.Type, null, TypeCompareKind.ConsiderEverything2)); _isEnumerable = method.IsAsyncReturningIAsyncEnumerable(method.DeclaringCompilation); Debug.Assert(_isEnumerable != method.IsAsyncReturningIAsyncEnumerator(method.DeclaringCompilation)); } protected override void VerifyPresenceOfRequiredAPIs(BindingDiagnosticBag bag) { base.VerifyPresenceOfRequiredAPIs(bag); if (_isEnumerable) { EnsureWellKnownMember(WellKnownMember.System_Collections_Generic_IAsyncEnumerable_T__GetAsyncEnumerator, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_CancellationToken__Equals, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_CancellationTokenSource__CreateLinkedTokenSource, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_CancellationTokenSource__Token, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_CancellationTokenSource__Dispose, bag); } EnsureWellKnownMember(WellKnownMember.System_Collections_Generic_IAsyncEnumerator_T__MoveNextAsync, bag); EnsureWellKnownMember(WellKnownMember.System_Collections_Generic_IAsyncEnumerator_T__get_Current, bag); EnsureWellKnownMember(WellKnownMember.System_IAsyncDisposable__DisposeAsync, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_ValueTask_T__ctorSourceAndToken, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_ValueTask_T__ctorValue, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_ValueTask__ctor, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetResult, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetStatus, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__get_Version, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__OnCompleted, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__Reset, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__SetException, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__SetResult, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource_T__GetResult, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource_T__GetStatus, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource_T__OnCompleted, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource__GetResult, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource__GetStatus, bag); EnsureWellKnownMember(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource__OnCompleted, bag); } protected override void GenerateMethodImplementations() { // IAsyncStateMachine methods and constructor base.GenerateMethodImplementations(); if (_isEnumerable) { // IAsyncEnumerable GenerateIAsyncEnumerableImplementation_GetAsyncEnumerator(); } // IAsyncEnumerator GenerateIAsyncEnumeratorImplementation_MoveNextAsync(); GenerateIAsyncEnumeratorImplementation_Current(); // IValueTaskSource<bool> GenerateIValueTaskSourceBoolImplementation_GetResult(); GenerateIValueTaskSourceBoolImplementation_GetStatus(); GenerateIValueTaskSourceBoolImplementation_OnCompleted(); // IValueTaskSource GenerateIValueTaskSourceImplementation_GetResult(); GenerateIValueTaskSourceImplementation_GetStatus(); GenerateIValueTaskSourceImplementation_OnCompleted(); // IAsyncDisposable GenerateIAsyncDisposable_DisposeAsync(); } protected override bool PreserveInitialParameterValuesAndThreadId => _isEnumerable; protected override void GenerateControlFields() { // the fields are initialized from entry-point method (which replaces the async-iterator method), so they need to be public base.GenerateControlFields(); NamedTypeSymbol boolType = F.SpecialType(SpecialType.System_Boolean); // Add a field: ManualResetValueTaskSourceLogic<bool> promiseOfValueOrEnd _promiseOfValueOrEndField = F.StateMachineField( F.WellKnownType(WellKnownType.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T).Construct(boolType), GeneratedNames.MakeAsyncIteratorPromiseOfValueOrEndFieldName(), isPublic: true); // the element type may contain method type parameters, which are now alpha-renamed into type parameters of the generated class TypeSymbol elementType = ((AsyncStateMachine)stateMachineType).IteratorElementType; // Add a field: T current _currentField = F.StateMachineField(elementType, GeneratedNames.MakeIteratorCurrentFieldName()); // Add a field: bool disposeMode _disposeModeField = F.StateMachineField(boolType, GeneratedNames.MakeDisposeModeFieldName()); if (_isEnumerable && this.method.Parameters.Any(p => p.IsSourceParameterWithEnumeratorCancellationAttribute())) { // Add a field: CancellationTokenSource combinedTokens _combinedTokensField = F.StateMachineField( F.WellKnownType(WellKnownType.System_Threading_CancellationTokenSource), GeneratedNames.MakeAsyncIteratorCombinedTokensFieldName()); } } protected override void GenerateConstructor() { // Produces: // .ctor(int state) // { // this.builder = System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create(); // this.state = state; // this.initialThreadId = {managedThreadId}; // } Debug.Assert(stateMachineType.Constructor is IteratorConstructor); F.CurrentFunction = stateMachineType.Constructor; var bodyBuilder = ArrayBuilder<BoundStatement>.GetInstance(); bodyBuilder.Add(F.BaseInitialization()); // this.builder = System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create(); bodyBuilder.Add(GenerateCreateAndAssignBuilder()); bodyBuilder.Add(F.Assignment(F.InstanceField(stateField), F.Parameter(F.CurrentFunction.Parameters[0]))); // this.state = state; var managedThreadId = MakeCurrentThreadId(); if (managedThreadId != null && (object)initialThreadIdField != null) { // this.initialThreadId = {managedThreadId}; bodyBuilder.Add(F.Assignment(F.InstanceField(initialThreadIdField), managedThreadId)); } bodyBuilder.Add(F.Return()); F.CloseMethod(F.Block(bodyBuilder.ToImmutableAndFree())); bodyBuilder = null; } private BoundExpressionStatement GenerateCreateAndAssignBuilder() { // Produce: // this.builder = System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create(); return F.Assignment( F.InstanceField(_builderField), F.StaticCall( null, _asyncMethodBuilderMemberCollection.CreateBuilder)); } protected override void InitializeStateMachine(ArrayBuilder<BoundStatement> bodyBuilder, NamedTypeSymbol frameType, LocalSymbol stateMachineLocal) { // var stateMachineLocal = new {StateMachineType}({initialState}) int initialState = _isEnumerable ? StateMachineStates.FinishedStateMachine : StateMachineStates.InitialAsyncIteratorStateMachine; bodyBuilder.Add( F.Assignment( F.Local(stateMachineLocal), F.New(stateMachineType.Constructor.AsMember(frameType), F.Literal(initialState)))); } protected override BoundStatement InitializeParameterField(MethodSymbol getEnumeratorMethod, ParameterSymbol parameter, BoundExpression resultParameter, BoundExpression parameterProxy) { BoundStatement result; if (_combinedTokensField is object && parameter.IsSourceParameterWithEnumeratorCancellationAttribute() && parameter.Type.Equals(F.Compilation.GetWellKnownType(WellKnownType.System_Threading_CancellationToken), TypeCompareKind.ConsiderEverything)) { // For a parameter of type CancellationToken with [EnumeratorCancellation] // if (this.parameterProxy.Equals(default)) // { // result.parameter = token; // } // else if (token.Equals(this.parameterProxy) || token.Equals(default)) // { // result.parameter = this.parameterProxy; // } // else // { // result.combinedTokens = CancellationTokenSource.CreateLinkedTokenSource(this.parameterProxy, token); // result.parameter = combinedTokens.Token; // } BoundParameter tokenParameter = F.Parameter(getEnumeratorMethod.Parameters[0]); BoundFieldAccess combinedTokens = F.Field(F.This(), _combinedTokensField); result = F.If( // if (this.parameterProxy.Equals(default)) F.Call(parameterProxy, WellKnownMember.System_Threading_CancellationToken__Equals, F.Default(parameterProxy.Type)), // result.parameter = token; thenClause: F.Assignment(resultParameter, tokenParameter), elseClauseOpt: F.If( // else if (token.Equals(this.parameterProxy) || token.Equals(default)) F.LogicalOr( F.Call(tokenParameter, WellKnownMember.System_Threading_CancellationToken__Equals, parameterProxy), F.Call(tokenParameter, WellKnownMember.System_Threading_CancellationToken__Equals, F.Default(tokenParameter.Type))), // result.parameter = this.parameterProxy; thenClause: F.Assignment(resultParameter, parameterProxy), elseClauseOpt: F.Block( // result.combinedTokens = CancellationTokenSource.CreateLinkedTokenSource(this.parameterProxy, token); F.Assignment(combinedTokens, F.StaticCall(WellKnownMember.System_Threading_CancellationTokenSource__CreateLinkedTokenSource, parameterProxy, tokenParameter)), // result.parameter = result.combinedTokens.Token; F.Assignment(resultParameter, F.Property(combinedTokens, WellKnownMember.System_Threading_CancellationTokenSource__Token))))); } else { // For parameters that don't have [EnumeratorCancellation], initialize their parameter fields // result.parameter = this.parameterProxy; result = F.Assignment(resultParameter, parameterProxy); } return result; } protected override BoundStatement GenerateStateMachineCreation(LocalSymbol stateMachineVariable, NamedTypeSymbol frameType, IReadOnlyDictionary<Symbol, CapturedSymbolReplacement> proxies) { var bodyBuilder = ArrayBuilder<BoundStatement>.GetInstance(); bodyBuilder.Add(GenerateParameterStorage(stateMachineVariable, proxies)); // return local; bodyBuilder.Add( F.Return( F.Local(stateMachineVariable))); return F.Block(bodyBuilder.ToImmutableAndFree()); } /// <summary> /// Generates the `ValueTask&lt;bool> MoveNextAsync()` method. /// </summary> [SuppressMessage("Style", "VSTHRD200:Use \"Async\" suffix for async methods", Justification = "Standard naming convention for generating 'IAsyncEnumerator.MoveNextAsync'")] private void GenerateIAsyncEnumeratorImplementation_MoveNextAsync() { // Produce: // if (state == StateMachineStates.FinishedStateMachine) // { // return default; // } // _valueOrEndPromise.Reset(); // var inst = this; // _builder.Start(ref inst); // var version = _valueOrEndPromise.Version; // if (_valueOrEndPromise.GetStatus(version) == ValueTaskSourceStatus.Succeeded) // { // return new ValueTask<bool>(_valueOrEndPromise.GetResult(version)); // } // return new ValueTask<bool>(this, version); NamedTypeSymbol IAsyncEnumeratorOfElementType = F.WellKnownType(WellKnownType.System_Collections_Generic_IAsyncEnumerator_T) .Construct(_currentField.Type); MethodSymbol IAsyncEnumerableOfElementType_MoveNextAsync = F.WellKnownMethod(WellKnownMember.System_Collections_Generic_IAsyncEnumerator_T__MoveNextAsync) .AsMember(IAsyncEnumeratorOfElementType); var promiseType = (NamedTypeSymbol)_promiseOfValueOrEndField.Type; MethodSymbol promise_GetStatus = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetStatus) .AsMember(promiseType); MethodSymbol promise_GetResult = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetResult) .AsMember(promiseType); var moveNextAsyncReturnType = (NamedTypeSymbol)IAsyncEnumerableOfElementType_MoveNextAsync.ReturnType; MethodSymbol valueTaskT_ctorValue = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_ValueTask_T__ctorValue) .AsMember(moveNextAsyncReturnType); MethodSymbol valueTaskT_ctor = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_ValueTask_T__ctorSourceAndToken) .AsMember(moveNextAsyncReturnType); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IAsyncEnumerableOfElementType_MoveNextAsync, hasMethodBodyDependency: false); GetPartsForStartingMachine(out BoundExpressionStatement callReset, out LocalSymbol instSymbol, out BoundStatement instAssignment, out BoundExpressionStatement startCall, out MethodSymbol promise_get_Version); BoundStatement ifFinished = F.If( // if (state == StateMachineStates.FinishedStateMachine) F.IntEqual(F.InstanceField(stateField), F.Literal(StateMachineStates.FinishedStateMachine)), // return default; thenClause: F.Return(F.Default(moveNextAsyncReturnType))); // var version = _valueOrEndPromise.Version; var versionSymbol = F.SynthesizedLocal(F.SpecialType(SpecialType.System_Int16)); var versionLocal = F.Local(versionSymbol); var versionInit = F.Assignment(versionLocal, F.Call(F.Field(F.This(), _promiseOfValueOrEndField), promise_get_Version)); var ifPromiseReady = F.If( // if (_valueOrEndPromise.GetStatus(version) == ValueTaskSourceStatus.Succeeded) F.IntEqual( F.Call(F.Field(F.This(), _promiseOfValueOrEndField), promise_GetStatus, versionLocal), F.Literal(1)), // return new ValueTask<bool>(_valueOrEndPromise.GetResult(version)); thenClause: F.Return(F.New(valueTaskT_ctorValue, F.Call(F.Field(F.This(), _promiseOfValueOrEndField), promise_GetResult, versionLocal)))); // return new ValueTask<bool>(this, version); // Note: we fall back to this slower method of returning when the promise doesn't yet have a value. // This method of returning relies on two interface calls (`IValueTaskSource<bool>.GetStatus(version)` and `IValueTaskSource<bool>.GetResult(version)`). var returnStatement = F.Return(F.New(valueTaskT_ctor, F.This(), versionLocal)); F.CloseMethod(F.Block( ImmutableArray.Create(instSymbol, versionSymbol), ifFinished, callReset, // _promiseOfValueOrEnd.Reset(); instAssignment, // var inst = this; startCall, // _builder.Start(ref inst); versionInit, ifPromiseReady, returnStatement)); } /// <summary> /// Prepares most of the parts for MoveNextAsync() and DisposeAsync() methods. /// </summary> private void GetPartsForStartingMachine(out BoundExpressionStatement callReset, out LocalSymbol instSymbol, out BoundStatement instAssignment, out BoundExpressionStatement startCall, out MethodSymbol promise_get_Version) { // Produce the following parts: // - _promiseOfValueOrEnd.Reset(); // - var inst = this; // - _builder.Start(ref inst); // - _valueOrEndPromise.Version // _promiseOfValueOrEnd.Reset(); BoundFieldAccess promiseField = F.InstanceField(_promiseOfValueOrEndField); var resetMethod = (MethodSymbol)F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__Reset, isOptional: true) .SymbolAsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); callReset = F.ExpressionStatement(F.Call(promiseField, resetMethod)); // _builder.Start(ref inst); Debug.Assert(!_asyncMethodBuilderMemberCollection.CheckGenericMethodConstraints); MethodSymbol startMethod = _asyncMethodBuilderMemberCollection.Start.Construct(this.stateMachineType); instSymbol = F.SynthesizedLocal(this.stateMachineType); // var inst = this; var instLocal = F.Local(instSymbol); instAssignment = F.Assignment(instLocal, F.This()); // _builder.Start(ref inst); startCall = F.ExpressionStatement( F.Call( F.InstanceField(_builderField), startMethod, ImmutableArray.Create<BoundExpression>(instLocal))); // _valueOrEndPromise.Version promise_get_Version = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__get_Version) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); } /// <summary> /// Generates the `ValueTask IAsyncDisposable.DisposeAsync()` method. /// The DisposeAsync method should not be called from states -1 (running) or 0-and-up (awaits). /// </summary> [SuppressMessage("Style", "VSTHRD200:Use \"Async\" suffix for async methods", Justification = "Standard naming convention for generating 'IAsyncDisposable.DisposeAsync'")] private void GenerateIAsyncDisposable_DisposeAsync() { // Produce: // if (state >= StateMachineStates.NotStartedStateMachine /* -3 */) // { // throw new NotSupportedException(); // } // if (state == StateMachineStates.FinishedStateMachine /* -2 */) // { // return default; // } // disposeMode = true; // _valueOrEndPromise.Reset(); // var inst = this; // _builder.Start(ref inst); // return new ValueTask(this, _valueOrEndPromise.Version); MethodSymbol IAsyncDisposable_DisposeAsync = F.WellKnownMethod(WellKnownMember.System_IAsyncDisposable__DisposeAsync); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IAsyncDisposable_DisposeAsync, hasMethodBodyDependency: false); TypeSymbol returnType = IAsyncDisposable_DisposeAsync.ReturnType; GetPartsForStartingMachine(out BoundExpressionStatement callReset, out LocalSymbol instSymbol, out BoundStatement instAssignment, out BoundExpressionStatement startCall, out MethodSymbol promise_get_Version); BoundStatement ifInvalidState = F.If( // if (state >= StateMachineStates.NotStartedStateMachine /* -1 */) F.IntGreaterThanOrEqual(F.InstanceField(stateField), F.Literal(StateMachineStates.NotStartedStateMachine)), // throw new NotSupportedException(); thenClause: F.Throw(F.New(F.WellKnownType(WellKnownType.System_NotSupportedException)))); BoundStatement ifFinished = F.If( // if (state == StateMachineStates.FinishedStateMachine) F.IntEqual(F.InstanceField(stateField), F.Literal(StateMachineStates.FinishedStateMachine)), // return default; thenClause: F.Return(F.Default(returnType))); MethodSymbol valueTask_ctor = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_ValueTask__ctor) .AsMember((NamedTypeSymbol)IAsyncDisposable_DisposeAsync.ReturnType); // return new ValueTask(this, _valueOrEndPromise.Version); var returnStatement = F.Return(F.New(valueTask_ctor, F.This(), F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_get_Version))); F.CloseMethod(F.Block( ImmutableArray.Create(instSymbol), ifInvalidState, ifFinished, F.Assignment(F.InstanceField(_disposeModeField), F.Literal(true)), // disposeMode = true; callReset, // _promiseOfValueOrEnd.Reset(); instAssignment, // var inst = this; startCall, // _builder.Start(ref inst); returnStatement)); } /// <summary> /// Generates the Current property. /// </summary> private void GenerateIAsyncEnumeratorImplementation_Current() { // Produce the implementation for `T Current { get; }`: // return _current; NamedTypeSymbol IAsyncEnumeratorOfElementType = F.WellKnownType(WellKnownType.System_Collections_Generic_IAsyncEnumerator_T) .Construct(_currentField.Type); MethodSymbol IAsyncEnumerableOfElementType_get_Current = F.WellKnownMethod(WellKnownMember.System_Collections_Generic_IAsyncEnumerator_T__get_Current) .AsMember(IAsyncEnumeratorOfElementType); OpenPropertyImplementation(IAsyncEnumerableOfElementType_get_Current); F.CloseMethod(F.Block(F.Return(F.InstanceField(_currentField)))); } private void GenerateIValueTaskSourceBoolImplementation_GetResult() { // Produce the implementation for `bool IValueTaskSource<bool>.GetResult(short token)`: // return _valueOrEndPromise.GetResult(token); NamedTypeSymbol IValueTaskSourceOfBool = F.WellKnownType(WellKnownType.System_Threading_Tasks_Sources_IValueTaskSource_T) .Construct(F.SpecialType(SpecialType.System_Boolean)); MethodSymbol IValueTaskSourceOfBool_GetResult = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource_T__GetResult) .AsMember(IValueTaskSourceOfBool); MethodSymbol promise_GetResult = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetResult) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IValueTaskSourceOfBool_GetResult, hasMethodBodyDependency: false); // return this._valueOrEndPromise.GetResult(token); F.CloseMethod(F.Return( F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_GetResult, F.Parameter(IValueTaskSourceOfBool_GetResult.Parameters[0])))); } private void GenerateIValueTaskSourceBoolImplementation_GetStatus() { // Produce the implementation for `ValueTaskSourceStatus IValueTaskSource<bool>.GetStatus(short token)`: // return this._valueOrEndPromise.GetStatus(token); NamedTypeSymbol IValueTaskSourceOfBool = F.WellKnownType(WellKnownType.System_Threading_Tasks_Sources_IValueTaskSource_T) .Construct(F.SpecialType(SpecialType.System_Boolean)); MethodSymbol IValueTaskSourceOfBool_GetStatus = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource_T__GetStatus) .AsMember(IValueTaskSourceOfBool); MethodSymbol promise_GetStatus = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetStatus) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IValueTaskSourceOfBool_GetStatus, hasMethodBodyDependency: false); // return this._valueOrEndPromise.GetStatus(token); F.CloseMethod(F.Return( F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_GetStatus, F.Parameter(IValueTaskSourceOfBool_GetStatus.Parameters[0])))); } private void GenerateIValueTaskSourceBoolImplementation_OnCompleted() { // Produce the implementation for `void IValueTaskSource<bool>.OnCompleted(Action<object> continuation, object state, short token, ValueTaskSourceOnCompletedFlags flags)`: // this._valueOrEndPromise.OnCompleted(continuation, state, token, flags); // return; NamedTypeSymbol IValueTaskSourceOfBool = F.WellKnownType(WellKnownType.System_Threading_Tasks_Sources_IValueTaskSource_T) .Construct(F.SpecialType(SpecialType.System_Boolean)); MethodSymbol IValueTaskSourceOfBool_OnCompleted = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource_T__OnCompleted) .AsMember(IValueTaskSourceOfBool); MethodSymbol promise_OnCompleted = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__OnCompleted) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IValueTaskSourceOfBool_OnCompleted, hasMethodBodyDependency: false); F.CloseMethod(F.Block( // this._valueOrEndPromise.OnCompleted(continuation, state, token, flags); F.ExpressionStatement( F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_OnCompleted, F.Parameter(IValueTaskSourceOfBool_OnCompleted.Parameters[0]), F.Parameter(IValueTaskSourceOfBool_OnCompleted.Parameters[1]), F.Parameter(IValueTaskSourceOfBool_OnCompleted.Parameters[2]), F.Parameter(IValueTaskSourceOfBool_OnCompleted.Parameters[3]))), F.Return())); // return; } private void GenerateIValueTaskSourceImplementation_GetResult() { // Produce an implementation for `void IValueTaskSource.GetResult(short token)`: // this._valueOrEndPromise.GetResult(token); // return; MethodSymbol IValueTaskSource_GetResult = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource__GetResult); MethodSymbol promise_GetResult = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetResult) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IValueTaskSource_GetResult, hasMethodBodyDependency: false); F.CloseMethod(F.Block( // this._valueOrEndPromise.GetResult(token); F.ExpressionStatement(F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_GetResult, F.Parameter(IValueTaskSource_GetResult.Parameters[0]))), // return; F.Return())); } // Consider factoring with IValueTaskSource<bool> implementation // See https://github.com/dotnet/roslyn/issues/31517 private void GenerateIValueTaskSourceImplementation_GetStatus() { // Produce the implementation for `ValueTaskSourceStatus IValueTaskSource.GetStatus(short token)`: // return this._valueOrEndPromise.GetStatus(token); MethodSymbol IValueTaskSource_GetStatus = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource__GetStatus); MethodSymbol promise_GetStatus = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__GetStatus) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IValueTaskSource_GetStatus, hasMethodBodyDependency: false); // return this._valueOrEndPromise.GetStatus(token); F.CloseMethod(F.Return( F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_GetStatus, F.Parameter(IValueTaskSource_GetStatus.Parameters[0])))); } // Consider factoring with IValueTaskSource<bool> implementation // See https://github.com/dotnet/roslyn/issues/31517 private void GenerateIValueTaskSourceImplementation_OnCompleted() { // Produce the implementation for `void IValueTaskSource.OnCompleted(Action<object> continuation, object state, short token, ValueTaskSourceOnCompletedFlags flags)`: // this._valueOrEndPromise.OnCompleted(continuation, state, token, flags); // return; MethodSymbol IValueTaskSource_OnCompleted = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_IValueTaskSource__OnCompleted); MethodSymbol promise_OnCompleted = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__OnCompleted) .AsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); // The implementation doesn't depend on the method body of the iterator method. OpenMethodImplementation(IValueTaskSource_OnCompleted, hasMethodBodyDependency: false); F.CloseMethod(F.Block( // this._valueOrEndPromise.OnCompleted(continuation, state, token, flags); F.ExpressionStatement( F.Call(F.InstanceField(_promiseOfValueOrEndField), promise_OnCompleted, F.Parameter(IValueTaskSource_OnCompleted.Parameters[0]), F.Parameter(IValueTaskSource_OnCompleted.Parameters[1]), F.Parameter(IValueTaskSource_OnCompleted.Parameters[2]), F.Parameter(IValueTaskSource_OnCompleted.Parameters[3]))), F.Return())); // return; } /// <summary> /// Generates the GetAsyncEnumerator method. /// </summary> private void GenerateIAsyncEnumerableImplementation_GetAsyncEnumerator() { NamedTypeSymbol IAsyncEnumerableOfElementType = F.WellKnownType(WellKnownType.System_Collections_Generic_IAsyncEnumerable_T) .Construct(_currentField.Type); MethodSymbol IAsyncEnumerableOfElementType_GetEnumerator = F.WellKnownMethod(WellKnownMember.System_Collections_Generic_IAsyncEnumerable_T__GetAsyncEnumerator) .AsMember(IAsyncEnumerableOfElementType); BoundExpression managedThreadId = null; GenerateIteratorGetEnumerator(IAsyncEnumerableOfElementType_GetEnumerator, ref managedThreadId, initialState: StateMachineStates.InitialAsyncIteratorStateMachine); } protected override void GenerateResetInstance(ArrayBuilder<BoundStatement> builder, int initialState) { // this.state = {initialState}; // this.builder = System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create(); // this.disposeMode = false; builder.Add( // this.state = {initialState}; F.Assignment(F.Field(F.This(), stateField), F.Literal(initialState))); builder.Add( // this.builder = System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create(); GenerateCreateAndAssignBuilder()); builder.Add( // disposeMode = false; F.Assignment(F.InstanceField(_disposeModeField), F.Literal(false))); } protected override void GenerateMoveNext(SynthesizedImplementationMethod moveNextMethod) { MethodSymbol setResultMethod = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__SetResult, isOptional: true); if (setResultMethod is { }) { setResultMethod = (MethodSymbol)setResultMethod.SymbolAsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); } MethodSymbol setExceptionMethod = F.WellKnownMethod(WellKnownMember.System_Threading_Tasks_Sources_ManualResetValueTaskSourceCore_T__SetException, isOptional: true); if (setExceptionMethod is { }) { setExceptionMethod = (MethodSymbol)setExceptionMethod.SymbolAsMember((NamedTypeSymbol)_promiseOfValueOrEndField.Type); } var rewriter = new AsyncIteratorMethodToStateMachineRewriter( method: method, methodOrdinal: _methodOrdinal, asyncMethodBuilderMemberCollection: _asyncMethodBuilderMemberCollection, asyncIteratorInfo: new AsyncIteratorInfo(_promiseOfValueOrEndField, _combinedTokensField, _currentField, _disposeModeField, setResultMethod, setExceptionMethod), F: F, state: stateField, builder: _builderField, hoistedVariables: hoistedVariables, nonReusableLocalProxies: nonReusableLocalProxies, synthesizedLocalOrdinals: synthesizedLocalOrdinals, slotAllocatorOpt: slotAllocatorOpt, nextFreeHoistedLocalSlot: nextFreeHoistedLocalSlot, diagnostics: diagnostics); rewriter.GenerateMoveNext(body, moveNextMethod); } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/EditorFeatures/CSharp/BraceMatching/StringLiteralBraceMatcher.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.ComponentModel.Composition; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Extensions; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.Editor.CSharp.BraceMatching { [ExportBraceMatcher(LanguageNames.CSharp)] internal class StringLiteralBraceMatcher : IBraceMatcher { [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public StringLiteralBraceMatcher() { } public async Task<BraceMatchingResult?> FindBracesAsync(Document document, int position, CancellationToken cancellationToken) { var root = await document.GetSyntaxRootAsync(cancellationToken).ConfigureAwait(false); var token = root.FindToken(position); if (!token.ContainsDiagnostics) { if (token.IsKind(SyntaxKind.StringLiteralToken)) { if (token.IsVerbatimStringLiteral()) { return new BraceMatchingResult( new TextSpan(token.SpanStart, 2), new TextSpan(token.Span.End - 1, 1)); } else { return new BraceMatchingResult( new TextSpan(token.SpanStart, 1), new TextSpan(token.Span.End - 1, 1)); } } else if (token.IsKind(SyntaxKind.InterpolatedStringStartToken, SyntaxKind.InterpolatedVerbatimStringStartToken)) { if (token.Parent is InterpolatedStringExpressionSyntax interpolatedString) { return new BraceMatchingResult(token.Span, interpolatedString.StringEndToken.Span); } } else if (token.IsKind(SyntaxKind.InterpolatedStringEndToken)) { if (token.Parent is InterpolatedStringExpressionSyntax interpolatedString) { return new BraceMatchingResult(interpolatedString.StringStartToken.Span, token.Span); } } } return null; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.ComponentModel.Composition; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Extensions; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.Editor.CSharp.BraceMatching { [ExportBraceMatcher(LanguageNames.CSharp)] internal class StringLiteralBraceMatcher : IBraceMatcher { [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public StringLiteralBraceMatcher() { } public async Task<BraceMatchingResult?> FindBracesAsync(Document document, int position, CancellationToken cancellationToken) { var root = await document.GetSyntaxRootAsync(cancellationToken).ConfigureAwait(false); var token = root.FindToken(position); if (!token.ContainsDiagnostics) { if (token.IsKind(SyntaxKind.StringLiteralToken)) { if (token.IsVerbatimStringLiteral()) { return new BraceMatchingResult( new TextSpan(token.SpanStart, 2), new TextSpan(token.Span.End - 1, 1)); } else { return new BraceMatchingResult( new TextSpan(token.SpanStart, 1), new TextSpan(token.Span.End - 1, 1)); } } else if (token.IsKind(SyntaxKind.InterpolatedStringStartToken, SyntaxKind.InterpolatedVerbatimStringStartToken)) { if (token.Parent is InterpolatedStringExpressionSyntax interpolatedString) { return new BraceMatchingResult(token.Span, interpolatedString.StringEndToken.Span); } } else if (token.IsKind(SyntaxKind.InterpolatedStringEndToken)) { if (token.Parent is InterpolatedStringExpressionSyntax interpolatedString) { return new BraceMatchingResult(interpolatedString.StringStartToken.Span, token.Span); } } } return null; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Analyzers/Core/Analyzers/ConvertAnonymousTypeToTuple/AbstractConvertAnonymousTypeToTupleDiagnosticAnalyzer.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using Microsoft.CodeAnalysis.CodeStyle; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.LanguageServices; namespace Microsoft.CodeAnalysis.ConvertAnonymousTypeToTuple { internal abstract class AbstractConvertAnonymousTypeToTupleDiagnosticAnalyzer< TSyntaxKind, TAnonymousObjectCreationExpressionSyntax> : AbstractBuiltInCodeStyleDiagnosticAnalyzer where TSyntaxKind : struct where TAnonymousObjectCreationExpressionSyntax : SyntaxNode { private readonly ISyntaxKinds _syntaxKinds; protected AbstractConvertAnonymousTypeToTupleDiagnosticAnalyzer(ISyntaxKinds syntaxKinds) : base(IDEDiagnosticIds.ConvertAnonymousTypeToTupleDiagnosticId, EnforceOnBuildValues.ConvertAnonymousTypeToTuple, option: null, new LocalizableResourceString(nameof(AnalyzersResources.Convert_to_tuple), AnalyzersResources.ResourceManager, typeof(AnalyzersResources)), new LocalizableResourceString(nameof(AnalyzersResources.Convert_to_tuple), AnalyzersResources.ResourceManager, typeof(AnalyzersResources)), // This analyzer is not configurable. The intent is just to act as a refactoring, just benefiting from fix-all configurable: false) { _syntaxKinds = syntaxKinds; } protected abstract int GetInitializerCount(TAnonymousObjectCreationExpressionSyntax anonymousType); public override DiagnosticAnalyzerCategory GetAnalyzerCategory() => DiagnosticAnalyzerCategory.SemanticSpanAnalysis; protected override void InitializeWorker(AnalysisContext context) => context.RegisterSyntaxNodeAction( AnalyzeSyntax, _syntaxKinds.Convert<TSyntaxKind>(_syntaxKinds.AnonymousObjectCreationExpression)); // Analysis is trivial. All anonymous types with more than two fields are marked as being // convertible to a tuple. private void AnalyzeSyntax(SyntaxNodeAnalysisContext context) { var anonymousType = (TAnonymousObjectCreationExpressionSyntax)context.Node; if (GetInitializerCount(anonymousType) < 2) { return; } context.ReportDiagnostic( DiagnosticHelper.Create( Descriptor, context.Node.GetFirstToken().GetLocation(), ReportDiagnostic.Hidden, additionalLocations: null, properties: null)); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using Microsoft.CodeAnalysis.CodeStyle; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.LanguageServices; namespace Microsoft.CodeAnalysis.ConvertAnonymousTypeToTuple { internal abstract class AbstractConvertAnonymousTypeToTupleDiagnosticAnalyzer< TSyntaxKind, TAnonymousObjectCreationExpressionSyntax> : AbstractBuiltInCodeStyleDiagnosticAnalyzer where TSyntaxKind : struct where TAnonymousObjectCreationExpressionSyntax : SyntaxNode { private readonly ISyntaxKinds _syntaxKinds; protected AbstractConvertAnonymousTypeToTupleDiagnosticAnalyzer(ISyntaxKinds syntaxKinds) : base(IDEDiagnosticIds.ConvertAnonymousTypeToTupleDiagnosticId, EnforceOnBuildValues.ConvertAnonymousTypeToTuple, option: null, new LocalizableResourceString(nameof(AnalyzersResources.Convert_to_tuple), AnalyzersResources.ResourceManager, typeof(AnalyzersResources)), new LocalizableResourceString(nameof(AnalyzersResources.Convert_to_tuple), AnalyzersResources.ResourceManager, typeof(AnalyzersResources)), // This analyzer is not configurable. The intent is just to act as a refactoring, just benefiting from fix-all configurable: false) { _syntaxKinds = syntaxKinds; } protected abstract int GetInitializerCount(TAnonymousObjectCreationExpressionSyntax anonymousType); public override DiagnosticAnalyzerCategory GetAnalyzerCategory() => DiagnosticAnalyzerCategory.SemanticSpanAnalysis; protected override void InitializeWorker(AnalysisContext context) => context.RegisterSyntaxNodeAction( AnalyzeSyntax, _syntaxKinds.Convert<TSyntaxKind>(_syntaxKinds.AnonymousObjectCreationExpression)); // Analysis is trivial. All anonymous types with more than two fields are marked as being // convertible to a tuple. private void AnalyzeSyntax(SyntaxNodeAnalysisContext context) { var anonymousType = (TAnonymousObjectCreationExpressionSyntax)context.Node; if (GetInitializerCount(anonymousType) < 2) { return; } context.ReportDiagnostic( DiagnosticHelper.Create( Descriptor, context.Node.GetFirstToken().GetLocation(), ReportDiagnostic.Hidden, additionalLocations: null, properties: null)); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/EditorFeatures/CSharp/EndConstruct/CSharpEndConstructGenerationService.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Composition; using System.Diagnostics.CodeAnalysis; using System.Threading; using Microsoft.CodeAnalysis.Editor.Implementation.EndConstructGeneration; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.VisualStudio.Text; using Microsoft.VisualStudio.Text.Editor; namespace Microsoft.CodeAnalysis.Editor.CSharp.EndConstructGeneration { [ExportLanguageService(typeof(IEndConstructGenerationService), LanguageNames.CSharp), Shared] [ExcludeFromCodeCoverage] internal class CSharpEndConstructGenerationService : IEndConstructGenerationService { [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public CSharpEndConstructGenerationService() { } public bool TryDo( ITextView textView, ITextBuffer subjectBuffer, char typedChar, CancellationToken cancellationToken) { return false; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Composition; using System.Diagnostics.CodeAnalysis; using System.Threading; using Microsoft.CodeAnalysis.Editor.Implementation.EndConstructGeneration; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.VisualStudio.Text; using Microsoft.VisualStudio.Text.Editor; namespace Microsoft.CodeAnalysis.Editor.CSharp.EndConstructGeneration { [ExportLanguageService(typeof(IEndConstructGenerationService), LanguageNames.CSharp), Shared] [ExcludeFromCodeCoverage] internal class CSharpEndConstructGenerationService : IEndConstructGenerationService { [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public CSharpEndConstructGenerationService() { } public bool TryDo( ITextView textView, ITextBuffer subjectBuffer, char typedChar, CancellationToken cancellationToken) { return false; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/SharedUtilitiesAndExtensions/Compiler/Core/Extensions/IAssemblySymbolExtensions.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; namespace Microsoft.CodeAnalysis.Shared.Extensions { internal static class IAssemblySymbolExtensions { private const string AttributeSuffix = "Attribute"; public static bool ContainsNamespaceName( this List<IAssemblySymbol> assemblies, string namespaceName) { // PERF: Expansion of "assemblies.Any(a => a.NamespaceNames.Contains(namespaceName))" // to avoid allocating a lambda. foreach (var a in assemblies) { if (a.NamespaceNames.Contains(namespaceName)) { return true; } } return false; } public static bool ContainsTypeName(this List<IAssemblySymbol> assemblies, string typeName, bool tryWithAttributeSuffix = false) { if (!tryWithAttributeSuffix) { // PERF: Expansion of "assemblies.Any(a => a.TypeNames.Contains(typeName))" // to avoid allocating a lambda. foreach (var a in assemblies) { if (a.TypeNames.Contains(typeName)) { return true; } } } else { var attributeName = typeName + AttributeSuffix; foreach (var a in assemblies) { var typeNames = a.TypeNames; if (typeNames.Contains(typeName) || typeNames.Contains(attributeName)) { return true; } } } return false; } public static bool IsSameAssemblyOrHasFriendAccessTo(this IAssemblySymbol assembly, IAssemblySymbol toAssembly) { return Equals(assembly, toAssembly) || (assembly.IsInteractive && toAssembly.IsInteractive) || toAssembly.GivesAccessTo(assembly); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; namespace Microsoft.CodeAnalysis.Shared.Extensions { internal static class IAssemblySymbolExtensions { private const string AttributeSuffix = "Attribute"; public static bool ContainsNamespaceName( this List<IAssemblySymbol> assemblies, string namespaceName) { // PERF: Expansion of "assemblies.Any(a => a.NamespaceNames.Contains(namespaceName))" // to avoid allocating a lambda. foreach (var a in assemblies) { if (a.NamespaceNames.Contains(namespaceName)) { return true; } } return false; } public static bool ContainsTypeName(this List<IAssemblySymbol> assemblies, string typeName, bool tryWithAttributeSuffix = false) { if (!tryWithAttributeSuffix) { // PERF: Expansion of "assemblies.Any(a => a.TypeNames.Contains(typeName))" // to avoid allocating a lambda. foreach (var a in assemblies) { if (a.TypeNames.Contains(typeName)) { return true; } } } else { var attributeName = typeName + AttributeSuffix; foreach (var a in assemblies) { var typeNames = a.TypeNames; if (typeNames.Contains(typeName) || typeNames.Contains(attributeName)) { return true; } } } return false; } public static bool IsSameAssemblyOrHasFriendAccessTo(this IAssemblySymbol assembly, IAssemblySymbol toAssembly) { return Equals(assembly, toAssembly) || (assembly.IsInteractive && toAssembly.IsInteractive) || toAssembly.GivesAccessTo(assembly); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Tools/ExternalAccess/FSharp/FSharpGlyphTags.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Immutable; using Microsoft.CodeAnalysis.ExternalAccess.FSharp.Internal; namespace Microsoft.CodeAnalysis.ExternalAccess.FSharp { internal static class FSharpGlyphTags { public static ImmutableArray<string> GetTags(FSharpGlyph glyph) { return GlyphTags.GetTags(FSharpGlyphHelpers.ConvertTo(glyph)); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Collections.Immutable; using Microsoft.CodeAnalysis.ExternalAccess.FSharp.Internal; namespace Microsoft.CodeAnalysis.ExternalAccess.FSharp { internal static class FSharpGlyphTags { public static ImmutableArray<string> GetTags(FSharpGlyph glyph) { return GlyphTags.GetTags(FSharpGlyphHelpers.ConvertTo(glyph)); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/CSharp/Portable/CodeStyle/CSharpCodeStyleOptionsProvider.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Immutable; using System.Composition; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.Options; using Microsoft.CodeAnalysis.Options.Providers; namespace Microsoft.CodeAnalysis.CSharp.CodeStyle { [ExportOptionProvider(LanguageNames.CSharp), Shared] internal class CSharpCodeStyleOptionsProvider : IOptionProvider { [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public CSharpCodeStyleOptionsProvider() { } public ImmutableArray<IOption> Options { get; } = CSharpCodeStyleOptions.AllOptions.As<IOption>(); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Immutable; using System.Composition; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.Options; using Microsoft.CodeAnalysis.Options.Providers; namespace Microsoft.CodeAnalysis.CSharp.CodeStyle { [ExportOptionProvider(LanguageNames.CSharp), Shared] internal class CSharpCodeStyleOptionsProvider : IOptionProvider { [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public CSharpCodeStyleOptionsProvider() { } public ImmutableArray<IOption> Options { get; } = CSharpCodeStyleOptions.AllOptions.As<IOption>(); } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/LanguageServer/Protocol/Handler/FoldingRanges/FoldingRangesHandler.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Composition; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Host; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.Options; using Microsoft.CodeAnalysis.PooledObjects; using Microsoft.CodeAnalysis.Structure; using Microsoft.CodeAnalysis.Text; using Microsoft.VisualStudio.LanguageServer.Protocol; namespace Microsoft.CodeAnalysis.LanguageServer.Handler { [ExportRoslynLanguagesLspRequestHandlerProvider, Shared] [ProvidesMethod(Methods.TextDocumentFoldingRangeName)] internal sealed class FoldingRangesHandler : AbstractStatelessRequestHandler<FoldingRangeParams, FoldingRange[]> { public override string Method => Methods.TextDocumentFoldingRangeName; public override bool MutatesSolutionState => false; public override bool RequiresLSPSolution => true; [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public FoldingRangesHandler() { } public override TextDocumentIdentifier? GetTextDocumentIdentifier(FoldingRangeParams request) => request.TextDocument; public override async Task<FoldingRange[]> HandleRequestAsync(FoldingRangeParams request, RequestContext context, CancellationToken cancellationToken) { var document = context.Document; if (document == null) { return Array.Empty<FoldingRange>(); } var blockStructureService = document.Project.LanguageServices.GetService<BlockStructureService>(); if (blockStructureService == null) { return Array.Empty<FoldingRange>(); } var blockStructure = await blockStructureService.GetBlockStructureAsync(document, cancellationToken).ConfigureAwait(false); if (blockStructure == null) { return Array.Empty<FoldingRange>(); } var text = await document.GetTextAsync(cancellationToken).ConfigureAwait(false); return GetFoldingRanges(blockStructure, text); } public static FoldingRange[] GetFoldingRanges( SyntaxTree syntaxTree, HostLanguageServices languageServices, OptionSet options, bool isMetadataAsSource, CancellationToken cancellationToken) { var blockStructureService = (BlockStructureServiceWithProviders)languageServices.GetRequiredService<BlockStructureService>(); var blockStructure = blockStructureService.GetBlockStructure(syntaxTree, options, isMetadataAsSource, cancellationToken); if (blockStructure == null) { return Array.Empty<FoldingRange>(); } var text = syntaxTree.GetText(cancellationToken); return GetFoldingRanges(blockStructure, text); } private static FoldingRange[] GetFoldingRanges(BlockStructure blockStructure, SourceText text) { if (blockStructure.Spans.IsEmpty) { return Array.Empty<FoldingRange>(); } using var _ = ArrayBuilder<FoldingRange>.GetInstance(out var foldingRanges); foreach (var span in blockStructure.Spans) { if (!span.IsCollapsible) { continue; } var linePositionSpan = text.Lines.GetLinePositionSpan(span.TextSpan); // Filter out single line spans. if (linePositionSpan.Start.Line == linePositionSpan.End.Line) { continue; } // TODO - Figure out which blocks should be returned as a folding range (and what kind). // https://github.com/dotnet/roslyn/projects/45#card-20049168 FoldingRangeKind? foldingRangeKind = span.Type switch { BlockTypes.Comment => FoldingRangeKind.Comment, BlockTypes.Imports => FoldingRangeKind.Imports, BlockTypes.PreprocessorRegion => FoldingRangeKind.Region, _ => null, }; foldingRanges.Add(new FoldingRange() { StartLine = linePositionSpan.Start.Line, StartCharacter = linePositionSpan.Start.Character, EndLine = linePositionSpan.End.Line, EndCharacter = linePositionSpan.End.Character, Kind = foldingRangeKind }); } return foldingRanges.ToArray(); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Composition; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Host; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.Options; using Microsoft.CodeAnalysis.PooledObjects; using Microsoft.CodeAnalysis.Structure; using Microsoft.CodeAnalysis.Text; using Microsoft.VisualStudio.LanguageServer.Protocol; namespace Microsoft.CodeAnalysis.LanguageServer.Handler { [ExportRoslynLanguagesLspRequestHandlerProvider, Shared] [ProvidesMethod(Methods.TextDocumentFoldingRangeName)] internal sealed class FoldingRangesHandler : AbstractStatelessRequestHandler<FoldingRangeParams, FoldingRange[]> { public override string Method => Methods.TextDocumentFoldingRangeName; public override bool MutatesSolutionState => false; public override bool RequiresLSPSolution => true; [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public FoldingRangesHandler() { } public override TextDocumentIdentifier? GetTextDocumentIdentifier(FoldingRangeParams request) => request.TextDocument; public override async Task<FoldingRange[]> HandleRequestAsync(FoldingRangeParams request, RequestContext context, CancellationToken cancellationToken) { var document = context.Document; if (document == null) { return Array.Empty<FoldingRange>(); } var blockStructureService = document.Project.LanguageServices.GetService<BlockStructureService>(); if (blockStructureService == null) { return Array.Empty<FoldingRange>(); } var blockStructure = await blockStructureService.GetBlockStructureAsync(document, cancellationToken).ConfigureAwait(false); if (blockStructure == null) { return Array.Empty<FoldingRange>(); } var text = await document.GetTextAsync(cancellationToken).ConfigureAwait(false); return GetFoldingRanges(blockStructure, text); } public static FoldingRange[] GetFoldingRanges( SyntaxTree syntaxTree, HostLanguageServices languageServices, OptionSet options, bool isMetadataAsSource, CancellationToken cancellationToken) { var blockStructureService = (BlockStructureServiceWithProviders)languageServices.GetRequiredService<BlockStructureService>(); var blockStructure = blockStructureService.GetBlockStructure(syntaxTree, options, isMetadataAsSource, cancellationToken); if (blockStructure == null) { return Array.Empty<FoldingRange>(); } var text = syntaxTree.GetText(cancellationToken); return GetFoldingRanges(blockStructure, text); } private static FoldingRange[] GetFoldingRanges(BlockStructure blockStructure, SourceText text) { if (blockStructure.Spans.IsEmpty) { return Array.Empty<FoldingRange>(); } using var _ = ArrayBuilder<FoldingRange>.GetInstance(out var foldingRanges); foreach (var span in blockStructure.Spans) { if (!span.IsCollapsible) { continue; } var linePositionSpan = text.Lines.GetLinePositionSpan(span.TextSpan); // Filter out single line spans. if (linePositionSpan.Start.Line == linePositionSpan.End.Line) { continue; } // TODO - Figure out which blocks should be returned as a folding range (and what kind). // https://github.com/dotnet/roslyn/projects/45#card-20049168 FoldingRangeKind? foldingRangeKind = span.Type switch { BlockTypes.Comment => FoldingRangeKind.Comment, BlockTypes.Imports => FoldingRangeKind.Imports, BlockTypes.PreprocessorRegion => FoldingRangeKind.Region, _ => null, }; foldingRanges.Add(new FoldingRange() { StartLine = linePositionSpan.Start.Line, StartCharacter = linePositionSpan.Start.Character, EndLine = linePositionSpan.End.Line, EndCharacter = linePositionSpan.End.Character, Kind = foldingRangeKind }); } return foldingRanges.ToArray(); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/CSharp/Portable/Workspace/LanguageServices/CSharpSyntaxTreeFactory.PathSyntaxReference.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.CSharp { internal partial class CSharpSyntaxTreeFactoryServiceFactory { private partial class CSharpSyntaxTreeFactoryService { /// <summary> /// Represents a syntax reference that doesn't actually hold onto the /// referenced node. Instead, enough data is held onto so that the node /// can be recovered and returned if necessary. /// </summary> private class PathSyntaxReference : SyntaxReference { private readonly SyntaxTree _tree; private readonly SyntaxKind _kind; private readonly TextSpan _textSpan; private readonly ImmutableArray<int> _pathFromRoot; public PathSyntaxReference(SyntaxNode node) { _tree = node.SyntaxTree; _kind = node.Kind(); _textSpan = node.Span; _pathFromRoot = ComputePathFromRoot(node); } public override SyntaxTree SyntaxTree { get { return _tree; } } public override TextSpan Span { get { return _textSpan; } } private ImmutableArray<int> ComputePathFromRoot(SyntaxNode node) { var path = new List<int>(); var root = _tree.GetRoot(); while (node != root) { for (; node.Parent != null; node = node.Parent) { var index = GetChildIndex(node); path.Add(index); } // if we were part of structure trivia, continue searching until we get to the true root if (node.IsStructuredTrivia) { var trivia = node.ParentTrivia; var triviaIndex = GetTriviaIndex(trivia); path.Add(triviaIndex); var tokenIndex = GetChildIndex(trivia.Token); path.Add(tokenIndex); node = trivia.Token.Parent; continue; } else if (node != root) { throw new InvalidOperationException(CSharpWorkspaceResources.Node_does_not_descend_from_root); } } path.Reverse(); return path.ToImmutableArray(); } private static int GetChildIndex(SyntaxNodeOrToken child) { var parent = child.Parent; var index = 0; foreach (var nodeOrToken in parent.ChildNodesAndTokens()) { if (nodeOrToken == child) { return index; } index++; } throw new InvalidOperationException(CSharpWorkspaceResources.Node_not_in_parent_s_child_list); } private static int GetTriviaIndex(SyntaxTrivia trivia) { var token = trivia.Token; var index = 0; foreach (var tr in token.LeadingTrivia) { if (tr == trivia) { return index; } index++; } foreach (var tr in token.TrailingTrivia) { if (tr == trivia) { return index; } index++; } throw new InvalidOperationException(CSharpWorkspaceResources.Trivia_is_not_associated_with_token); } private static SyntaxTrivia GetTrivia(SyntaxToken token, int triviaIndex) { var leadingCount = token.LeadingTrivia.Count; if (triviaIndex <= leadingCount) { return token.LeadingTrivia.ElementAt(triviaIndex); } triviaIndex -= leadingCount; return token.TrailingTrivia.ElementAt(triviaIndex); } public override SyntaxNode GetSyntax(CancellationToken cancellationToken) => this.GetNode(_tree.GetRoot(cancellationToken)); public override async Task<SyntaxNode> GetSyntaxAsync(CancellationToken cancellationToken = default) { var root = await _tree.GetRootAsync(cancellationToken).ConfigureAwait(false); return this.GetNode(root); } private SyntaxNode GetNode(SyntaxNode root) { var node = root; for (int i = 0, n = _pathFromRoot.Length; i < n; i++) { var child = node.ChildNodesAndTokens()[_pathFromRoot[i]]; if (child.IsToken) { // if child is a token then we must be looking for a node in structured trivia i++; System.Diagnostics.Debug.Assert(i < n); var triviaIndex = _pathFromRoot[i]; var trivia = GetTrivia(child.AsToken(), triviaIndex); node = trivia.GetStructure(); } else { node = child.AsNode(); } } System.Diagnostics.Debug.Assert(node.Kind() == _kind); System.Diagnostics.Debug.Assert(node.Span == _textSpan); return node; } } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis.CSharp { internal partial class CSharpSyntaxTreeFactoryServiceFactory { private partial class CSharpSyntaxTreeFactoryService { /// <summary> /// Represents a syntax reference that doesn't actually hold onto the /// referenced node. Instead, enough data is held onto so that the node /// can be recovered and returned if necessary. /// </summary> private class PathSyntaxReference : SyntaxReference { private readonly SyntaxTree _tree; private readonly SyntaxKind _kind; private readonly TextSpan _textSpan; private readonly ImmutableArray<int> _pathFromRoot; public PathSyntaxReference(SyntaxNode node) { _tree = node.SyntaxTree; _kind = node.Kind(); _textSpan = node.Span; _pathFromRoot = ComputePathFromRoot(node); } public override SyntaxTree SyntaxTree { get { return _tree; } } public override TextSpan Span { get { return _textSpan; } } private ImmutableArray<int> ComputePathFromRoot(SyntaxNode node) { var path = new List<int>(); var root = _tree.GetRoot(); while (node != root) { for (; node.Parent != null; node = node.Parent) { var index = GetChildIndex(node); path.Add(index); } // if we were part of structure trivia, continue searching until we get to the true root if (node.IsStructuredTrivia) { var trivia = node.ParentTrivia; var triviaIndex = GetTriviaIndex(trivia); path.Add(triviaIndex); var tokenIndex = GetChildIndex(trivia.Token); path.Add(tokenIndex); node = trivia.Token.Parent; continue; } else if (node != root) { throw new InvalidOperationException(CSharpWorkspaceResources.Node_does_not_descend_from_root); } } path.Reverse(); return path.ToImmutableArray(); } private static int GetChildIndex(SyntaxNodeOrToken child) { var parent = child.Parent; var index = 0; foreach (var nodeOrToken in parent.ChildNodesAndTokens()) { if (nodeOrToken == child) { return index; } index++; } throw new InvalidOperationException(CSharpWorkspaceResources.Node_not_in_parent_s_child_list); } private static int GetTriviaIndex(SyntaxTrivia trivia) { var token = trivia.Token; var index = 0; foreach (var tr in token.LeadingTrivia) { if (tr == trivia) { return index; } index++; } foreach (var tr in token.TrailingTrivia) { if (tr == trivia) { return index; } index++; } throw new InvalidOperationException(CSharpWorkspaceResources.Trivia_is_not_associated_with_token); } private static SyntaxTrivia GetTrivia(SyntaxToken token, int triviaIndex) { var leadingCount = token.LeadingTrivia.Count; if (triviaIndex <= leadingCount) { return token.LeadingTrivia.ElementAt(triviaIndex); } triviaIndex -= leadingCount; return token.TrailingTrivia.ElementAt(triviaIndex); } public override SyntaxNode GetSyntax(CancellationToken cancellationToken) => this.GetNode(_tree.GetRoot(cancellationToken)); public override async Task<SyntaxNode> GetSyntaxAsync(CancellationToken cancellationToken = default) { var root = await _tree.GetRootAsync(cancellationToken).ConfigureAwait(false); return this.GetNode(root); } private SyntaxNode GetNode(SyntaxNode root) { var node = root; for (int i = 0, n = _pathFromRoot.Length; i < n; i++) { var child = node.ChildNodesAndTokens()[_pathFromRoot[i]]; if (child.IsToken) { // if child is a token then we must be looking for a node in structured trivia i++; System.Diagnostics.Debug.Assert(i < n); var triviaIndex = _pathFromRoot[i]; var trivia = GetTrivia(child.AsToken(), triviaIndex); node = trivia.GetStructure(); } else { node = child.AsNode(); } } System.Diagnostics.Debug.Assert(node.Kind() == _kind); System.Diagnostics.Debug.Assert(node.Span == _textSpan); return node; } } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/VisualStudio/CSharp/Impl/VSPackage.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="101" xml:space="preserve"> <value>C#</value> <comment>Used many places.</comment> </data> <data name="102" xml:space="preserve"> <value>Advanced</value> <comment>"Advanced" node under Tools &gt; Options, Text Editor, C#.</comment> </data> <data name="103" xml:space="preserve"> <value>IntelliSense</value> <comment>"IntelliSense" node under Tools &gt; Options, Text Editor, C#.</comment> </data> <data name="104" xml:space="preserve"> <value>C# Editor</value> <comment>"C# Editor" node in profile Import/Export.</comment> </data> <data name="105" xml:space="preserve"> <value>Settings for the C# editor found under the Advanced, Formatting, and IntelliSense nodes in the Tools/Options dialog box.</value> <comment>"C# Editor" node help text in profile Import/Export.</comment> </data> <data name="106" xml:space="preserve"> <value>Settings for general C# options found under the General and Tabs nodes in the Tools/Options dialog box.</value> <comment>"C#" node help text in profile Import/Export.</comment> </data> <data name="306" xml:space="preserve"> <value>Underline reassigned variables; Display inline hints; Show diagnostics for closed files; Colorize regular expression; Highlight related components under cursor; Report invalid regular expressions; Enable full solution analysis; Perform editor feature analysis in external process; Enable navigation to decompiled sources; Using directives; Place system directives first when sorting usings; Separate using directive groups; Suggest usings for types in reference assemblies; Suggest usings for types in NuGet packages; Highlighting; Highlight references to symbol under cursor; Highlight related keywords under cursor; Outlining; Enter outlining mode when files open; Show procedure line separators; Show outlining for declaration level constructs; Show outlining for code level constructs; Show outlining for comments and preprocessor regions; Collapse regions when collapsing to definitions; Fading; Fade out unused usings; Fade out unreachable code; Block Structure Guides; Show guides for declaration level constructs; Show guides for code level constructs; Editor Help; Generate XML documentation comments for ///; Insert * at the start of new lines when writing /* */ comments; Show preview for rename tracking; Split string literals on Enter; Report invalid placeholders in string.Format calls; Extract Method; Don't put ref or out on custom struct; Implement Interface or Abstract Class; When inserting properties, events and methods, place them; with other members of the same kind; at the end; When generating property; prefer throwing properties; prefer auto properties; regex; regular expression; Use enhanced colors; Editor Color Scheme; Inheritance Margin;</value> <comment>C# Advanced options page keywords</comment> </data> <data name="307" xml:space="preserve"> <value>Automatically format when typing; Automatically format statement on semicolon ; Automatically format block on end brace; Automatically format on return; Automatically format on paste;</value> <comment>C# Formatting &gt; General options page keywords</comment> </data> <data name="308" xml:space="preserve"> <value>Indent block contents; indent open and close braces; indent case contents; indent case contents (when block); indent case labels; label indentation; place goto labels in leftmost column; indent labels normally; place goto labels one indent less than current;</value> <comment>C# Formatting &gt; Indentation options page keywords</comment> </data> <data name="309" xml:space="preserve"> <value>New line formatting option for braces;New line formatting options for keywords;New line options for braces; Place open brace on new line for types; Place open brace on new line for methods and local functions; Place open brace on new line for properties, indexers, and events; Place open brace on new line for property, indexer, and event accessors; Place open brace on new line for anonymous methods; Place open brace on new line for control blocks; Place open brace on new line for anonymous types; Place open brace on new line for object, collection and array initializers; New line options for keywords; Place else on new line; Place catch on new line; Place finally on new line; New line options for expression; Place members in object initializers on new line; Place members in anonymous types on new line; Place query expression clauses on new line;</value> <comment>C# Formatting &gt; New Lines options page keywords</comment> </data> <data name="310" xml:space="preserve"> <value>Set spacing for method declarations; Insert space between method name and its opening parenthesis; Insert space within parameter list parentheses; Insert space within empty parameter list parentheses; Set spacing for method calls; Insert space within argument list parentheses; Insert space within empty argument list parentheses; Set other spacing options; Insert space after keywords in control flow statements; Insert space within parentheses of expressions; Insert space within parentheses of type casts; Insert spaces within parentheses of control flow statements; Insert space after cast; Ignore spaces in declaration statements; Set spacing for brackets; Insert space before open square bracket; Insert space within empty square brackets; Insert spaces within square brackets; Set spacing for delimiters; Insert space after colon for base or interface in type declaration; Insert space after comma; Insert space after dot; Insert space after semicolon in for statement; Insert space before colon for base or interface in type declaration; Insert space before comma; Insert space before dot; Insert space before semicolon in for statement; Set spacing for operators; Ignore spaces around binary operators; Remove spaces before and after binary operators; Insert space before and after binary operators;</value> <comment>C# Formatting &gt; Spacing options page keywords</comment> </data> <data name="311" xml:space="preserve"> <value>Change formatting options for wrapping;leave block on single line;leave statements and member declarations on the same line</value> <comment>C# Formatting &gt; Wrapping options page keywords</comment> </data> <data name="312" xml:space="preserve"> <value>Change completion list settings;Pre-select most recently used member; Completion Lists; Show completion list after a character is typed; Show completion list after a character is deleted; Automatically show completion list in argument lists (experimental); Highlight matching portions of completion list items; Show completion item filters; Automatically complete statement on semicolon; Snippets behavior; Never include snippets; Always include snippets; Include snippets when ?-Tab is typed after an identifier; Enter key behavior; Never add new line on enter; Only add new line on enter after end of fully typed word; Always add new line on enter; Show name suggestions; Show items from unimported namespaces (experimental);</value> <comment>C# IntelliSense options page keywords</comment> </data> <data name="107" xml:space="preserve"> <value>Formatting</value> <comment>"Formatting" category node under Tools &gt; Options, Text Editor, C#, Code Style (no corresponding keywords)</comment> </data> <data name="108" xml:space="preserve"> <value>General</value> <comment>"General" node under Tools &gt; Options, Text Editor, C# (used for Code Style and Formatting)</comment> </data> <data name="109" xml:space="preserve"> <value>Indentation</value> <comment>"Indentation" node under Tools &gt; Options, Text Editor, C#, Formatting.</comment> </data> <data name="110" xml:space="preserve"> <value>Wrapping</value> </data> <data name="111" xml:space="preserve"> <value>New Lines</value> </data> <data name="112" xml:space="preserve"> <value>Spacing</value> </data> <data name="2358" xml:space="preserve"> <value>C# Editor</value> </data> <data name="2359" xml:space="preserve"> <value>C# Editor with Encoding</value> </data> <data name="113" xml:space="preserve"> <value>Microsoft Visual C#</value> <comment>Used for String in Tools &gt; Options, Text Editor, File Extensions</comment> </data> <data name="114" xml:space="preserve"> <value>Code Style</value> <comment>"Code Style" category node under Tools &gt; Options, Text Editor, C# (no corresponding keywords)</comment> </data> <data name="313" xml:space="preserve"> <value>Style;Qualify;This;Code Style;var;member access;locals;parameters;var preferences;predefined type;framework type;built-in types;when variable type is apparent;elsewhere;qualify field access;qualify property access; qualify method access;qualify event access;</value> <comment>C# Code Style options page keywords</comment> </data> <data name="115" xml:space="preserve"> <value>Naming</value> </data> <data name="314" xml:space="preserve"> <value>Naming Style;Name Styles;Naming Rule;Naming Conventions</value> <comment>C# Naming Style options page keywords</comment> </data> <data name="116" xml:space="preserve"> <value>C# Tools</value> <comment>Help &gt; About</comment> </data> <data name="117" xml:space="preserve"> <value>C# components used in the IDE. Depending on your project type and settings, a different version of the compiler may be used.</value> <comment>Help &gt; About</comment> </data> <data name="Visual_CSharp_Script" xml:space="preserve"> <value>Visual C# Script</value> </data> <data name="An_empty_CSharp_script_file" xml:space="preserve"> <value>An empty C# script file.</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="101" xml:space="preserve"> <value>C#</value> <comment>Used many places.</comment> </data> <data name="102" xml:space="preserve"> <value>Advanced</value> <comment>"Advanced" node under Tools &gt; Options, Text Editor, C#.</comment> </data> <data name="103" xml:space="preserve"> <value>IntelliSense</value> <comment>"IntelliSense" node under Tools &gt; Options, Text Editor, C#.</comment> </data> <data name="104" xml:space="preserve"> <value>C# Editor</value> <comment>"C# Editor" node in profile Import/Export.</comment> </data> <data name="105" xml:space="preserve"> <value>Settings for the C# editor found under the Advanced, Formatting, and IntelliSense nodes in the Tools/Options dialog box.</value> <comment>"C# Editor" node help text in profile Import/Export.</comment> </data> <data name="106" xml:space="preserve"> <value>Settings for general C# options found under the General and Tabs nodes in the Tools/Options dialog box.</value> <comment>"C#" node help text in profile Import/Export.</comment> </data> <data name="306" xml:space="preserve"> <value>Underline reassigned variables; Display inline hints; Show diagnostics for closed files; Colorize regular expression; Highlight related components under cursor; Report invalid regular expressions; Enable full solution analysis; Perform editor feature analysis in external process; Enable navigation to decompiled sources; Using directives; Place system directives first when sorting usings; Separate using directive groups; Suggest usings for types in reference assemblies; Suggest usings for types in NuGet packages; Highlighting; Highlight references to symbol under cursor; Highlight related keywords under cursor; Outlining; Enter outlining mode when files open; Show procedure line separators; Show outlining for declaration level constructs; Show outlining for code level constructs; Show outlining for comments and preprocessor regions; Collapse regions when collapsing to definitions; Fading; Fade out unused usings; Fade out unreachable code; Block Structure Guides; Show guides for declaration level constructs; Show guides for code level constructs; Editor Help; Generate XML documentation comments for ///; Insert * at the start of new lines when writing /* */ comments; Show preview for rename tracking; Split string literals on Enter; Report invalid placeholders in string.Format calls; Extract Method; Don't put ref or out on custom struct; Implement Interface or Abstract Class; When inserting properties, events and methods, place them; with other members of the same kind; at the end; When generating property; prefer throwing properties; prefer auto properties; regex; regular expression; Use enhanced colors; Editor Color Scheme; Inheritance Margin;</value> <comment>C# Advanced options page keywords</comment> </data> <data name="307" xml:space="preserve"> <value>Automatically format when typing; Automatically format statement on semicolon ; Automatically format block on end brace; Automatically format on return; Automatically format on paste;</value> <comment>C# Formatting &gt; General options page keywords</comment> </data> <data name="308" xml:space="preserve"> <value>Indent block contents; indent open and close braces; indent case contents; indent case contents (when block); indent case labels; label indentation; place goto labels in leftmost column; indent labels normally; place goto labels one indent less than current;</value> <comment>C# Formatting &gt; Indentation options page keywords</comment> </data> <data name="309" xml:space="preserve"> <value>New line formatting option for braces;New line formatting options for keywords;New line options for braces; Place open brace on new line for types; Place open brace on new line for methods and local functions; Place open brace on new line for properties, indexers, and events; Place open brace on new line for property, indexer, and event accessors; Place open brace on new line for anonymous methods; Place open brace on new line for control blocks; Place open brace on new line for anonymous types; Place open brace on new line for object, collection and array initializers; New line options for keywords; Place else on new line; Place catch on new line; Place finally on new line; New line options for expression; Place members in object initializers on new line; Place members in anonymous types on new line; Place query expression clauses on new line;</value> <comment>C# Formatting &gt; New Lines options page keywords</comment> </data> <data name="310" xml:space="preserve"> <value>Set spacing for method declarations; Insert space between method name and its opening parenthesis; Insert space within parameter list parentheses; Insert space within empty parameter list parentheses; Set spacing for method calls; Insert space within argument list parentheses; Insert space within empty argument list parentheses; Set other spacing options; Insert space after keywords in control flow statements; Insert space within parentheses of expressions; Insert space within parentheses of type casts; Insert spaces within parentheses of control flow statements; Insert space after cast; Ignore spaces in declaration statements; Set spacing for brackets; Insert space before open square bracket; Insert space within empty square brackets; Insert spaces within square brackets; Set spacing for delimiters; Insert space after colon for base or interface in type declaration; Insert space after comma; Insert space after dot; Insert space after semicolon in for statement; Insert space before colon for base or interface in type declaration; Insert space before comma; Insert space before dot; Insert space before semicolon in for statement; Set spacing for operators; Ignore spaces around binary operators; Remove spaces before and after binary operators; Insert space before and after binary operators;</value> <comment>C# Formatting &gt; Spacing options page keywords</comment> </data> <data name="311" xml:space="preserve"> <value>Change formatting options for wrapping;leave block on single line;leave statements and member declarations on the same line</value> <comment>C# Formatting &gt; Wrapping options page keywords</comment> </data> <data name="312" xml:space="preserve"> <value>Change completion list settings;Pre-select most recently used member; Completion Lists; Show completion list after a character is typed; Show completion list after a character is deleted; Automatically show completion list in argument lists (experimental); Highlight matching portions of completion list items; Show completion item filters; Automatically complete statement on semicolon; Snippets behavior; Never include snippets; Always include snippets; Include snippets when ?-Tab is typed after an identifier; Enter key behavior; Never add new line on enter; Only add new line on enter after end of fully typed word; Always add new line on enter; Show name suggestions; Show items from unimported namespaces (experimental);</value> <comment>C# IntelliSense options page keywords</comment> </data> <data name="107" xml:space="preserve"> <value>Formatting</value> <comment>"Formatting" category node under Tools &gt; Options, Text Editor, C#, Code Style (no corresponding keywords)</comment> </data> <data name="108" xml:space="preserve"> <value>General</value> <comment>"General" node under Tools &gt; Options, Text Editor, C# (used for Code Style and Formatting)</comment> </data> <data name="109" xml:space="preserve"> <value>Indentation</value> <comment>"Indentation" node under Tools &gt; Options, Text Editor, C#, Formatting.</comment> </data> <data name="110" xml:space="preserve"> <value>Wrapping</value> </data> <data name="111" xml:space="preserve"> <value>New Lines</value> </data> <data name="112" xml:space="preserve"> <value>Spacing</value> </data> <data name="2358" xml:space="preserve"> <value>C# Editor</value> </data> <data name="2359" xml:space="preserve"> <value>C# Editor with Encoding</value> </data> <data name="113" xml:space="preserve"> <value>Microsoft Visual C#</value> <comment>Used for String in Tools &gt; Options, Text Editor, File Extensions</comment> </data> <data name="114" xml:space="preserve"> <value>Code Style</value> <comment>"Code Style" category node under Tools &gt; Options, Text Editor, C# (no corresponding keywords)</comment> </data> <data name="313" xml:space="preserve"> <value>Style;Qualify;This;Code Style;var;member access;locals;parameters;var preferences;predefined type;framework type;built-in types;when variable type is apparent;elsewhere;qualify field access;qualify property access; qualify method access;qualify event access;</value> <comment>C# Code Style options page keywords</comment> </data> <data name="115" xml:space="preserve"> <value>Naming</value> </data> <data name="314" xml:space="preserve"> <value>Naming Style;Name Styles;Naming Rule;Naming Conventions</value> <comment>C# Naming Style options page keywords</comment> </data> <data name="116" xml:space="preserve"> <value>C# Tools</value> <comment>Help &gt; About</comment> </data> <data name="117" xml:space="preserve"> <value>C# components used in the IDE. Depending on your project type and settings, a different version of the compiler may be used.</value> <comment>Help &gt; About</comment> </data> <data name="Visual_CSharp_Script" xml:space="preserve"> <value>Visual C# Script</value> </data> <data name="An_empty_CSharp_script_file" xml:space="preserve"> <value>An empty C# script file.</value> </data> </root>
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/VisualStudio/Xaml/Impl/Extensions.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Linq; using Microsoft.VisualStudio.LanguageServices; using Microsoft.VisualStudio.Text; using Microsoft.VisualStudio.Text.Editor; namespace Microsoft.CodeAnalysis.Editor.Xaml { internal static class Extensions { public static Guid GetProjectGuid(this VisualStudioWorkspace workspace, ProjectId projectId) => workspace.GetProjectGuid(projectId); public static string GetFilePath(this ITextView textView) => textView.TextBuffer.GetFilePath(); public static string GetFilePath(this ITextBuffer textBuffer) { if (textBuffer.Properties.TryGetProperty<ITextDocument>(typeof(ITextDocument), out var textDoc)) { return textDoc.FilePath; } return string.Empty; } public static Project GetCodeProject(this TextDocument document) { if (document.Project.SupportsCompilation) { return document.Project; } // There has to be a match return document.Project.Solution.Projects.Single(p => p.SupportsCompilation && p.FilePath == document.Project.FilePath); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Linq; using Microsoft.VisualStudio.LanguageServices; using Microsoft.VisualStudio.Text; using Microsoft.VisualStudio.Text.Editor; namespace Microsoft.CodeAnalysis.Editor.Xaml { internal static class Extensions { public static Guid GetProjectGuid(this VisualStudioWorkspace workspace, ProjectId projectId) => workspace.GetProjectGuid(projectId); public static string GetFilePath(this ITextView textView) => textView.TextBuffer.GetFilePath(); public static string GetFilePath(this ITextBuffer textBuffer) { if (textBuffer.Properties.TryGetProperty<ITextDocument>(typeof(ITextDocument), out var textDoc)) { return textDoc.FilePath; } return string.Empty; } public static Project GetCodeProject(this TextDocument document) { if (document.Project.SupportsCompilation) { return document.Project; } // There has to be a match return document.Project.Solution.Projects.Single(p => p.SupportsCompilation && p.FilePath == document.Project.FilePath); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/EditorFeatures/CSharpTest/RemoveUnusedLocalFunction/RemoveUnusedLocalFunctionTests.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.CSharp.RemoveUnusedLocalFunction; using Microsoft.CodeAnalysis.CSharp.Test.Utilities; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.Diagnostics; using Microsoft.CodeAnalysis.Test.Utilities; using Roslyn.Test.Utilities; using Xunit; using Xunit.Abstractions; namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.RemoveUnusedLocalFunction { public partial class RemoveUnusedLocalFunctionTests : AbstractCSharpDiagnosticProviderBasedUserDiagnosticTest { public RemoveUnusedLocalFunctionTests(ITestOutputHelper logger) : base(logger) { } internal override (DiagnosticAnalyzer, CodeFixProvider) CreateDiagnosticProviderAndFixer(Workspace workspace) => (null, new CSharpRemoveUnusedLocalFunctionCodeFixProvider()); [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnusedLocalFunction)] public async Task RemoveUnusedLocalFunction() { await TestInRegularAndScriptAsync( @"class Class { void Method() { void [|Goo|]() { } } }", @"class Class { void Method() { } }"); } [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnusedLocalFunction)] public async Task RemoveUnusedLocalFunctionFixAll1() { await TestInRegularAndScriptAsync( @"class Class { void Method() { void {|FixAllInDocument:F|}() { } void G() { } } }", @"class Class { void Method() { } }"); } [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnusedLocalFunction)] public async Task RemoveUnusedLocalFunctionFixAll2() { await TestInRegularAndScriptAsync( @"class Class { void Method() { void G() { } void {|FixAllInDocument:F|}() { } } }", @"class Class { void Method() { } }"); } [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnusedLocalFunction)] public async Task RemoveUnusedLocalFunctionFixAll3() { await TestInRegularAndScriptAsync( @"class Class { void Method() { void {|FixAllInDocument:F|}() { void G() { } } } }", @"class Class { void Method() { } }"); } [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnusedLocalFunction)] public async Task RemoveUnusedLocalFunctionFixAll4() { await TestInRegularAndScriptAsync( @"class Class { void Method() { void G() { void {|FixAllInDocument:F|}() { } } } }", @"class Class { void Method() { } }"); } [WorkItem(44272, "https://github.com/dotnet/roslyn/issues/44272")] [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnusedLocalFunction)] public async Task TopLevelStatement() { await TestAsync(@" void [|local()|] { } ", @" ", TestOptions.Regular); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.CSharp.RemoveUnusedLocalFunction; using Microsoft.CodeAnalysis.CSharp.Test.Utilities; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.Diagnostics; using Microsoft.CodeAnalysis.Test.Utilities; using Roslyn.Test.Utilities; using Xunit; using Xunit.Abstractions; namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.RemoveUnusedLocalFunction { public partial class RemoveUnusedLocalFunctionTests : AbstractCSharpDiagnosticProviderBasedUserDiagnosticTest { public RemoveUnusedLocalFunctionTests(ITestOutputHelper logger) : base(logger) { } internal override (DiagnosticAnalyzer, CodeFixProvider) CreateDiagnosticProviderAndFixer(Workspace workspace) => (null, new CSharpRemoveUnusedLocalFunctionCodeFixProvider()); [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnusedLocalFunction)] public async Task RemoveUnusedLocalFunction() { await TestInRegularAndScriptAsync( @"class Class { void Method() { void [|Goo|]() { } } }", @"class Class { void Method() { } }"); } [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnusedLocalFunction)] public async Task RemoveUnusedLocalFunctionFixAll1() { await TestInRegularAndScriptAsync( @"class Class { void Method() { void {|FixAllInDocument:F|}() { } void G() { } } }", @"class Class { void Method() { } }"); } [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnusedLocalFunction)] public async Task RemoveUnusedLocalFunctionFixAll2() { await TestInRegularAndScriptAsync( @"class Class { void Method() { void G() { } void {|FixAllInDocument:F|}() { } } }", @"class Class { void Method() { } }"); } [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnusedLocalFunction)] public async Task RemoveUnusedLocalFunctionFixAll3() { await TestInRegularAndScriptAsync( @"class Class { void Method() { void {|FixAllInDocument:F|}() { void G() { } } } }", @"class Class { void Method() { } }"); } [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnusedLocalFunction)] public async Task RemoveUnusedLocalFunctionFixAll4() { await TestInRegularAndScriptAsync( @"class Class { void Method() { void G() { void {|FixAllInDocument:F|}() { } } } }", @"class Class { void Method() { } }"); } [WorkItem(44272, "https://github.com/dotnet/roslyn/issues/44272")] [Fact, Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnusedLocalFunction)] public async Task TopLevelStatement() { await TestAsync(@" void [|local()|] { } ", @" ", TestOptions.Regular); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Features/CSharp/Portable/Completion/KeywordRecommenders/LineKeywordRecommender.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Threading; using Microsoft.CodeAnalysis.CSharp.Extensions.ContextQuery; namespace Microsoft.CodeAnalysis.CSharp.Completion.KeywordRecommenders { internal class LineKeywordRecommender : AbstractSyntacticSingleKeywordRecommender { public LineKeywordRecommender() : base(SyntaxKind.LineKeyword, isValidInPreprocessorContext: true) { } protected override bool IsValidContext(int position, CSharpSyntaxContext context, CancellationToken cancellationToken) => context.IsPreProcessorKeywordContext; } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Threading; using Microsoft.CodeAnalysis.CSharp.Extensions.ContextQuery; namespace Microsoft.CodeAnalysis.CSharp.Completion.KeywordRecommenders { internal class LineKeywordRecommender : AbstractSyntacticSingleKeywordRecommender { public LineKeywordRecommender() : base(SyntaxKind.LineKeyword, isValidInPreprocessorContext: true) { } protected override bool IsValidContext(int position, CSharpSyntaxContext context, CancellationToken cancellationToken) => context.IsPreProcessorKeywordContext; } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/Core/Portable/Text/LinePosition.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Runtime.Serialization; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.Text { /// <summary> /// Immutable representation of a line number and position within a SourceText instance. /// </summary> [DataContract] public readonly struct LinePosition : IEquatable<LinePosition>, IComparable<LinePosition> { /// <summary> /// A <see cref="LinePosition"/> that represents position 0 at line 0. /// </summary> public static LinePosition Zero => default(LinePosition); [DataMember(Order = 0)] private readonly int _line; [DataMember(Order = 1)] private readonly int _character; /// <summary> /// Initializes a new instance of a <see cref="LinePosition"/> with the given line and character. /// </summary> /// <param name="line"> /// The line of the line position. The first line in a file is defined as line 0 (zero based line numbering). /// </param> /// <param name="character"> /// The character position in the line. /// </param> /// <exception cref="ArgumentOutOfRangeException"><paramref name="line"/> or <paramref name="character"/> is less than zero. </exception> public LinePosition(int line, int character) { if (line < 0) { throw new ArgumentOutOfRangeException(nameof(line)); } if (character < 0) { throw new ArgumentOutOfRangeException(nameof(character)); } _line = line; _character = character; } // internal constructor that supports a line number == -1. // VB allows users to specify a 1-based line number of 0 when processing // externalsource directives, which get decremented during conversion to 0-based line numbers. // in this case the line number can be -1. internal LinePosition(int character) { if (character < 0) { throw new ArgumentOutOfRangeException(nameof(character)); } _line = -1; _character = character; } /// <summary> /// The line number. The first line in a file is defined as line 0 (zero based line numbering). /// </summary> public int Line { get { return _line; } } /// <summary> /// The character position within the line. /// </summary> public int Character { get { return _character; } } /// <summary> /// Determines whether two <see cref="LinePosition"/> are the same. /// </summary> public static bool operator ==(LinePosition left, LinePosition right) { return left.Equals(right); } /// <summary> /// Determines whether two <see cref="LinePosition"/> are different. /// </summary> public static bool operator !=(LinePosition left, LinePosition right) { return !left.Equals(right); } /// <summary> /// Determines whether two <see cref="LinePosition"/> are the same. /// </summary> /// <param name="other">The object to compare.</param> public bool Equals(LinePosition other) { return other.Line == this.Line && other.Character == this.Character; } /// <summary> /// Determines whether two <see cref="LinePosition"/> are the same. /// </summary> /// <param name="obj">The object to compare.</param> public override bool Equals(object? obj) { return obj is LinePosition && Equals((LinePosition)obj); } /// <summary> /// Provides a hash function for <see cref="LinePosition"/>. /// </summary> public override int GetHashCode() { return Hash.Combine(Line, Character); } /// <summary> /// Provides a string representation for <see cref="LinePosition"/>. /// </summary> /// <example>0,10</example> public override string ToString() { return Line + "," + Character; } public int CompareTo(LinePosition other) { int result = _line.CompareTo(other._line); return (result != 0) ? result : _character.CompareTo(other.Character); } public static bool operator >(LinePosition left, LinePosition right) { return left.CompareTo(right) > 0; } public static bool operator >=(LinePosition left, LinePosition right) { return left.CompareTo(right) >= 0; } public static bool operator <(LinePosition left, LinePosition right) { return left.CompareTo(right) < 0; } public static bool operator <=(LinePosition left, LinePosition right) { return left.CompareTo(right) <= 0; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Runtime.Serialization; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.Text { /// <summary> /// Immutable representation of a line number and position within a SourceText instance. /// </summary> [DataContract] public readonly struct LinePosition : IEquatable<LinePosition>, IComparable<LinePosition> { /// <summary> /// A <see cref="LinePosition"/> that represents position 0 at line 0. /// </summary> public static LinePosition Zero => default(LinePosition); [DataMember(Order = 0)] private readonly int _line; [DataMember(Order = 1)] private readonly int _character; /// <summary> /// Initializes a new instance of a <see cref="LinePosition"/> with the given line and character. /// </summary> /// <param name="line"> /// The line of the line position. The first line in a file is defined as line 0 (zero based line numbering). /// </param> /// <param name="character"> /// The character position in the line. /// </param> /// <exception cref="ArgumentOutOfRangeException"><paramref name="line"/> or <paramref name="character"/> is less than zero. </exception> public LinePosition(int line, int character) { if (line < 0) { throw new ArgumentOutOfRangeException(nameof(line)); } if (character < 0) { throw new ArgumentOutOfRangeException(nameof(character)); } _line = line; _character = character; } // internal constructor that supports a line number == -1. // VB allows users to specify a 1-based line number of 0 when processing // externalsource directives, which get decremented during conversion to 0-based line numbers. // in this case the line number can be -1. internal LinePosition(int character) { if (character < 0) { throw new ArgumentOutOfRangeException(nameof(character)); } _line = -1; _character = character; } /// <summary> /// The line number. The first line in a file is defined as line 0 (zero based line numbering). /// </summary> public int Line { get { return _line; } } /// <summary> /// The character position within the line. /// </summary> public int Character { get { return _character; } } /// <summary> /// Determines whether two <see cref="LinePosition"/> are the same. /// </summary> public static bool operator ==(LinePosition left, LinePosition right) { return left.Equals(right); } /// <summary> /// Determines whether two <see cref="LinePosition"/> are different. /// </summary> public static bool operator !=(LinePosition left, LinePosition right) { return !left.Equals(right); } /// <summary> /// Determines whether two <see cref="LinePosition"/> are the same. /// </summary> /// <param name="other">The object to compare.</param> public bool Equals(LinePosition other) { return other.Line == this.Line && other.Character == this.Character; } /// <summary> /// Determines whether two <see cref="LinePosition"/> are the same. /// </summary> /// <param name="obj">The object to compare.</param> public override bool Equals(object? obj) { return obj is LinePosition && Equals((LinePosition)obj); } /// <summary> /// Provides a hash function for <see cref="LinePosition"/>. /// </summary> public override int GetHashCode() { return Hash.Combine(Line, Character); } /// <summary> /// Provides a string representation for <see cref="LinePosition"/>. /// </summary> /// <example>0,10</example> public override string ToString() { return Line + "," + Character; } public int CompareTo(LinePosition other) { int result = _line.CompareTo(other._line); return (result != 0) ? result : _character.CompareTo(other.Character); } public static bool operator >(LinePosition left, LinePosition right) { return left.CompareTo(right) > 0; } public static bool operator >=(LinePosition left, LinePosition right) { return left.CompareTo(right) >= 0; } public static bool operator <(LinePosition left, LinePosition right) { return left.CompareTo(right) < 0; } public static bool operator <=(LinePosition left, LinePosition right) { return left.CompareTo(right) <= 0; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/VisualStudio/Core/Def/Implementation/ProjectSystem/Legacy/AbstractLegacyProject_IAnalyzerHost.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.IO; using Microsoft.VisualStudio.LanguageServices.Implementation.ProjectSystem.Interop; namespace Microsoft.VisualStudio.LanguageServices.Implementation.ProjectSystem.Legacy { internal abstract partial class AbstractLegacyProject : IAnalyzerHost { void IAnalyzerHost.AddAnalyzerReference(string analyzerAssemblyFullPath) => VisualStudioProject.AddAnalyzerReference(analyzerAssemblyFullPath); void IAnalyzerHost.RemoveAnalyzerReference(string analyzerAssemblyFullPath) => VisualStudioProject.RemoveAnalyzerReference(analyzerAssemblyFullPath); void IAnalyzerHost.SetRuleSetFile(string ruleSetFileFullPath) { // Sometimes the project system hands us paths with extra backslashes // and passing that to other parts of the shell causes issues // http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1087250 if (!string.IsNullOrEmpty(ruleSetFileFullPath)) { ruleSetFileFullPath = Path.GetFullPath(ruleSetFileFullPath); } else { ruleSetFileFullPath = null; } VisualStudioProjectOptionsProcessor.ExplicitRuleSetFilePath = ruleSetFileFullPath; } void IAnalyzerHost.AddAdditionalFile(string additionalFilePath) => VisualStudioProject.AddAdditionalFile(additionalFilePath); void IAnalyzerHost.RemoveAdditionalFile(string additionalFilePath) => VisualStudioProject.RemoveAdditionalFile(additionalFilePath); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.IO; using Microsoft.VisualStudio.LanguageServices.Implementation.ProjectSystem.Interop; namespace Microsoft.VisualStudio.LanguageServices.Implementation.ProjectSystem.Legacy { internal abstract partial class AbstractLegacyProject : IAnalyzerHost { void IAnalyzerHost.AddAnalyzerReference(string analyzerAssemblyFullPath) => VisualStudioProject.AddAnalyzerReference(analyzerAssemblyFullPath); void IAnalyzerHost.RemoveAnalyzerReference(string analyzerAssemblyFullPath) => VisualStudioProject.RemoveAnalyzerReference(analyzerAssemblyFullPath); void IAnalyzerHost.SetRuleSetFile(string ruleSetFileFullPath) { // Sometimes the project system hands us paths with extra backslashes // and passing that to other parts of the shell causes issues // http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/1087250 if (!string.IsNullOrEmpty(ruleSetFileFullPath)) { ruleSetFileFullPath = Path.GetFullPath(ruleSetFileFullPath); } else { ruleSetFileFullPath = null; } VisualStudioProjectOptionsProcessor.ExplicitRuleSetFilePath = ruleSetFileFullPath; } void IAnalyzerHost.AddAdditionalFile(string additionalFilePath) => VisualStudioProject.AddAdditionalFile(additionalFilePath); void IAnalyzerHost.RemoveAdditionalFile(string additionalFilePath) => VisualStudioProject.RemoveAdditionalFile(additionalFilePath); } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/Core/Portable/Editing/DeclarationKind.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.ComponentModel; #if CODE_STYLE namespace Microsoft.CodeAnalysis.Internal.Editing #else namespace Microsoft.CodeAnalysis.Editing #endif { /// <devdocs> /// This should contain only language-agnostic declarations. Things like record struct should fall under struct, etc. /// </devdocs> public enum DeclarationKind { None, CompilationUnit, /// <summary> /// Represents a class declaration, including record class declarations in C#. /// </summary> Class, /// <summary> /// Represents a struct declaration, including record struct declarations in C#. /// </summary> Struct, Interface, Enum, Delegate, Method, Operator, ConversionOperator, Constructor, Destructor, Field, Property, Indexer, EnumMember, Event, CustomEvent, Namespace, NamespaceImport, Parameter, Variable, Attribute, LambdaExpression, GetAccessor, /// <summary> /// Represents set accessor declaration of a property, including init accessors in C#. /// </summary> SetAccessor, AddAccessor, RemoveAccessor, RaiseAccessor, [Obsolete($"This value is not used. Use {nameof(Class)} instead.")] [EditorBrowsable(EditorBrowsableState.Never)] RecordClass, } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.ComponentModel; #if CODE_STYLE namespace Microsoft.CodeAnalysis.Internal.Editing #else namespace Microsoft.CodeAnalysis.Editing #endif { /// <devdocs> /// This should contain only language-agnostic declarations. Things like record struct should fall under struct, etc. /// </devdocs> public enum DeclarationKind { None, CompilationUnit, /// <summary> /// Represents a class declaration, including record class declarations in C#. /// </summary> Class, /// <summary> /// Represents a struct declaration, including record struct declarations in C#. /// </summary> Struct, Interface, Enum, Delegate, Method, Operator, ConversionOperator, Constructor, Destructor, Field, Property, Indexer, EnumMember, Event, CustomEvent, Namespace, NamespaceImport, Parameter, Variable, Attribute, LambdaExpression, GetAccessor, /// <summary> /// Represents set accessor declaration of a property, including init accessors in C#. /// </summary> SetAccessor, AddAccessor, RemoveAccessor, RaiseAccessor, [Obsolete($"This value is not used. Use {nameof(Class)} instead.")] [EditorBrowsable(EditorBrowsableState.Never)] RecordClass, } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/CSharp/Portable/Symbols/Source/SourcePropertySymbol.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.Linq; using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.CSharp.Symbols { internal sealed class SourcePropertySymbol : SourcePropertySymbolBase { internal static SourcePropertySymbol Create(SourceMemberContainerTypeSymbol containingType, Binder bodyBinder, PropertyDeclarationSyntax syntax, BindingDiagnosticBag diagnostics) { var nameToken = syntax.Identifier; var location = nameToken.GetLocation(); return Create(containingType, bodyBinder, syntax, nameToken.ValueText, location, diagnostics); } internal static SourcePropertySymbol Create(SourceMemberContainerTypeSymbol containingType, Binder bodyBinder, IndexerDeclarationSyntax syntax, BindingDiagnosticBag diagnostics) { var location = syntax.ThisKeyword.GetLocation(); return Create(containingType, bodyBinder, syntax, DefaultIndexerName, location, diagnostics); } private static SourcePropertySymbol Create( SourceMemberContainerTypeSymbol containingType, Binder binder, BasePropertyDeclarationSyntax syntax, string name, Location location, BindingDiagnosticBag diagnostics) { GetAccessorDeclarations( syntax, diagnostics, out bool isAutoProperty, out bool hasAccessorList, out bool accessorsHaveImplementation, out bool isInitOnly, out var getSyntax, out var setSyntax); var explicitInterfaceSpecifier = GetExplicitInterfaceSpecifier(syntax); SyntaxTokenList modifiersTokenList = GetModifierTokensSyntax(syntax); bool isExplicitInterfaceImplementation = explicitInterfaceSpecifier is object; var modifiers = MakeModifiers( containingType, modifiersTokenList, isExplicitInterfaceImplementation, isIndexer: syntax.Kind() == SyntaxKind.IndexerDeclaration, accessorsHaveImplementation: accessorsHaveImplementation, location, diagnostics, out _); bool isExpressionBodied = !hasAccessorList && GetArrowExpression(syntax) != null; binder = binder.WithUnsafeRegionIfNecessary(modifiersTokenList); TypeSymbol? explicitInterfaceType; string? aliasQualifierOpt; string memberName = ExplicitInterfaceHelpers.GetMemberNameAndInterfaceSymbol(binder, explicitInterfaceSpecifier, name, diagnostics, out explicitInterfaceType, out aliasQualifierOpt); return new SourcePropertySymbol( containingType, syntax, hasGetAccessor: getSyntax != null || isExpressionBodied, hasSetAccessor: setSyntax != null, isExplicitInterfaceImplementation, explicitInterfaceType, aliasQualifierOpt, modifiers, isAutoProperty: isAutoProperty, isExpressionBodied: isExpressionBodied, isInitOnly: isInitOnly, memberName, location, diagnostics); } private SourcePropertySymbol( SourceMemberContainerTypeSymbol containingType, BasePropertyDeclarationSyntax syntax, bool hasGetAccessor, bool hasSetAccessor, bool isExplicitInterfaceImplementation, TypeSymbol? explicitInterfaceType, string? aliasQualifierOpt, DeclarationModifiers modifiers, bool isAutoProperty, bool isExpressionBodied, bool isInitOnly, string memberName, Location location, BindingDiagnosticBag diagnostics) : base( containingType, syntax, hasGetAccessor, hasSetAccessor, isExplicitInterfaceImplementation, explicitInterfaceType, aliasQualifierOpt, modifiers, hasInitializer: HasInitializer(syntax), isAutoProperty: isAutoProperty, isExpressionBodied: isExpressionBodied, isInitOnly: isInitOnly, syntax.Type.GetRefKind(), memberName, syntax.AttributeLists, location, diagnostics) { if (IsAutoProperty) { Binder.CheckFeatureAvailability( syntax, (hasGetAccessor && !hasSetAccessor) ? MessageID.IDS_FeatureReadonlyAutoImplementedProperties : MessageID.IDS_FeatureAutoImplementedProperties, diagnostics, location); } CheckForBlockAndExpressionBody( syntax.AccessorList, syntax.GetExpressionBodySyntax(), syntax, diagnostics); } private TypeSyntax GetTypeSyntax(SyntaxNode syntax) => ((BasePropertyDeclarationSyntax)syntax).Type; protected override Location TypeLocation => GetTypeSyntax(CSharpSyntaxNode).Location; private static SyntaxTokenList GetModifierTokensSyntax(SyntaxNode syntax) => ((BasePropertyDeclarationSyntax)syntax).Modifiers; private static ArrowExpressionClauseSyntax? GetArrowExpression(SyntaxNode syntax) => syntax switch { PropertyDeclarationSyntax p => p.ExpressionBody, IndexerDeclarationSyntax i => i.ExpressionBody, _ => throw ExceptionUtilities.UnexpectedValue(syntax.Kind()) }; private static bool HasInitializer(SyntaxNode syntax) => syntax is PropertyDeclarationSyntax { Initializer: { } }; public override SyntaxList<AttributeListSyntax> AttributeDeclarationSyntaxList => ((BasePropertyDeclarationSyntax)CSharpSyntaxNode).AttributeLists; public override IAttributeTargetSymbol AttributesOwner => this; private static void GetAccessorDeclarations( CSharpSyntaxNode syntaxNode, BindingDiagnosticBag diagnostics, out bool isAutoProperty, out bool hasAccessorList, out bool accessorsHaveImplementation, out bool isInitOnly, out CSharpSyntaxNode? getSyntax, out CSharpSyntaxNode? setSyntax) { var syntax = (BasePropertyDeclarationSyntax)syntaxNode; isAutoProperty = true; hasAccessorList = syntax.AccessorList != null; getSyntax = null; setSyntax = null; isInitOnly = false; if (hasAccessorList) { accessorsHaveImplementation = false; foreach (var accessor in syntax.AccessorList!.Accessors) { switch (accessor.Kind()) { case SyntaxKind.GetAccessorDeclaration: if (getSyntax == null) { getSyntax = accessor; } else { diagnostics.Add(ErrorCode.ERR_DuplicateAccessor, accessor.Keyword.GetLocation()); } break; case SyntaxKind.SetAccessorDeclaration: case SyntaxKind.InitAccessorDeclaration: if (setSyntax == null) { setSyntax = accessor; if (accessor.Keyword.IsKind(SyntaxKind.InitKeyword)) { isInitOnly = true; } } else { diagnostics.Add(ErrorCode.ERR_DuplicateAccessor, accessor.Keyword.GetLocation()); } break; case SyntaxKind.AddAccessorDeclaration: case SyntaxKind.RemoveAccessorDeclaration: diagnostics.Add(ErrorCode.ERR_GetOrSetExpected, accessor.Keyword.GetLocation()); continue; case SyntaxKind.UnknownAccessorDeclaration: // We don't need to report an error here as the parser will already have // done that for us. continue; default: throw ExceptionUtilities.UnexpectedValue(accessor.Kind()); } if (accessor.Body != null || accessor.ExpressionBody != null) { isAutoProperty = false; accessorsHaveImplementation = true; } } } else { isAutoProperty = false; accessorsHaveImplementation = GetArrowExpression(syntax) is object; } } private static AccessorDeclarationSyntax GetGetAccessorDeclaration(BasePropertyDeclarationSyntax syntax) { foreach (var accessor in syntax.AccessorList!.Accessors) { switch (accessor.Kind()) { case SyntaxKind.GetAccessorDeclaration: return accessor; } } throw ExceptionUtilities.Unreachable; } private static AccessorDeclarationSyntax GetSetAccessorDeclaration(BasePropertyDeclarationSyntax syntax) { foreach (var accessor in syntax.AccessorList!.Accessors) { switch (accessor.Kind()) { case SyntaxKind.SetAccessorDeclaration: case SyntaxKind.InitAccessorDeclaration: return accessor; } } throw ExceptionUtilities.Unreachable; } private static DeclarationModifiers MakeModifiers( NamedTypeSymbol containingType, SyntaxTokenList modifiers, bool isExplicitInterfaceImplementation, bool isIndexer, bool accessorsHaveImplementation, Location location, BindingDiagnosticBag diagnostics, out bool modifierErrors) { bool isInterface = containingType.IsInterface; var defaultAccess = isInterface && !isExplicitInterfaceImplementation ? DeclarationModifiers.Public : DeclarationModifiers.Private; // Check that the set of modifiers is allowed var allowedModifiers = DeclarationModifiers.Unsafe; var defaultInterfaceImplementationModifiers = DeclarationModifiers.None; if (!isExplicitInterfaceImplementation) { allowedModifiers |= DeclarationModifiers.New | DeclarationModifiers.Sealed | DeclarationModifiers.Abstract | DeclarationModifiers.Virtual | DeclarationModifiers.AccessibilityMask; if (!isIndexer) { allowedModifiers |= DeclarationModifiers.Static; } if (!isInterface) { allowedModifiers |= DeclarationModifiers.Override; } else { // This is needed to make sure we can detect 'public' modifier specified explicitly and // check it against language version below. defaultAccess = DeclarationModifiers.None; defaultInterfaceImplementationModifiers |= DeclarationModifiers.Sealed | DeclarationModifiers.Abstract | (isIndexer ? 0 : DeclarationModifiers.Static) | DeclarationModifiers.Virtual | DeclarationModifiers.Extern | DeclarationModifiers.AccessibilityMask; } } else { Debug.Assert(isExplicitInterfaceImplementation); if (isInterface) { allowedModifiers |= DeclarationModifiers.Abstract; } else if (!isIndexer) { allowedModifiers |= DeclarationModifiers.Static; } } if (containingType.IsStructType()) { allowedModifiers |= DeclarationModifiers.ReadOnly; } allowedModifiers |= DeclarationModifiers.Extern; var mods = ModifierUtils.MakeAndCheckNontypeMemberModifiers(modifiers, defaultAccess, allowedModifiers, location, diagnostics, out modifierErrors); ModifierUtils.CheckFeatureAvailabilityForStaticAbstractMembersInInterfacesIfNeeded(mods, isExplicitInterfaceImplementation, location, diagnostics); containingType.CheckUnsafeModifier(mods, location, diagnostics); ModifierUtils.ReportDefaultInterfaceImplementationModifiers(accessorsHaveImplementation, mods, defaultInterfaceImplementationModifiers, location, diagnostics); // Let's overwrite modifiers for interface properties with what they are supposed to be. // Proper errors must have been reported by now. if (isInterface) { mods = ModifierUtils.AdjustModifiersForAnInterfaceMember(mods, accessorsHaveImplementation, isExplicitInterfaceImplementation); } if (isIndexer) { mods |= DeclarationModifiers.Indexer; } return mods; } protected override SourcePropertyAccessorSymbol CreateGetAccessorSymbol(bool isAutoPropertyAccessor, BindingDiagnosticBag diagnostics) { var syntax = (BasePropertyDeclarationSyntax)CSharpSyntaxNode; ArrowExpressionClauseSyntax? arrowExpression = GetArrowExpression(syntax); if (syntax.AccessorList is null && arrowExpression != null) { return CreateExpressionBodiedAccessor( arrowExpression, diagnostics); } else { return CreateAccessorSymbol(GetGetAccessorDeclaration(syntax), isAutoPropertyAccessor, diagnostics); } } protected override SourcePropertyAccessorSymbol CreateSetAccessorSymbol(bool isAutoPropertyAccessor, BindingDiagnosticBag diagnostics) { var syntax = (BasePropertyDeclarationSyntax)CSharpSyntaxNode; Debug.Assert(!(syntax.AccessorList is null && GetArrowExpression(syntax) != null)); return CreateAccessorSymbol(GetSetAccessorDeclaration(syntax), isAutoPropertyAccessor, diagnostics); } private SourcePropertyAccessorSymbol CreateAccessorSymbol( AccessorDeclarationSyntax syntax, bool isAutoPropertyAccessor, BindingDiagnosticBag diagnostics) { return SourcePropertyAccessorSymbol.CreateAccessorSymbol( ContainingType, this, _modifiers, syntax, isAutoPropertyAccessor, diagnostics); } private SourcePropertyAccessorSymbol CreateExpressionBodiedAccessor( ArrowExpressionClauseSyntax syntax, BindingDiagnosticBag diagnostics) { return SourcePropertyAccessorSymbol.CreateAccessorSymbol( ContainingType, this, _modifiers, syntax, diagnostics); } private Binder CreateBinderForTypeAndParameters() { var compilation = this.DeclaringCompilation; var syntaxTree = SyntaxTree; var syntax = CSharpSyntaxNode; var binderFactory = compilation.GetBinderFactory(syntaxTree); var binder = binderFactory.GetBinder(syntax, syntax, this); SyntaxTokenList modifiers = GetModifierTokensSyntax(syntax); binder = binder.WithUnsafeRegionIfNecessary(modifiers); return binder.WithAdditionalFlagsAndContainingMemberOrLambda(BinderFlags.SuppressConstraintChecks, this); } protected override (TypeWithAnnotations Type, ImmutableArray<ParameterSymbol> Parameters) MakeParametersAndBindType(BindingDiagnosticBag diagnostics) { Binder binder = CreateBinderForTypeAndParameters(); var syntax = CSharpSyntaxNode; return (ComputeType(binder, syntax, diagnostics), ComputeParameters(binder, syntax, diagnostics)); } private TypeWithAnnotations ComputeType(Binder binder, SyntaxNode syntax, BindingDiagnosticBag diagnostics) { RefKind refKind; var typeSyntax = GetTypeSyntax(syntax).SkipRef(out refKind); var type = binder.BindType(typeSyntax, diagnostics); CompoundUseSiteInfo<AssemblySymbol> useSiteInfo = binder.GetNewCompoundUseSiteInfo(diagnostics); if (GetExplicitInterfaceSpecifier() is null && !this.IsNoMoreVisibleThan(type, ref useSiteInfo)) { // "Inconsistent accessibility: indexer return type '{1}' is less accessible than indexer '{0}'" // "Inconsistent accessibility: property type '{1}' is less accessible than property '{0}'" diagnostics.Add((this.IsIndexer ? ErrorCode.ERR_BadVisIndexerReturn : ErrorCode.ERR_BadVisPropertyType), Location, this, type.Type); } diagnostics.Add(Location, useSiteInfo); if (type.IsVoidType()) { ErrorCode errorCode = this.IsIndexer ? ErrorCode.ERR_IndexerCantHaveVoidType : ErrorCode.ERR_PropertyCantHaveVoidType; diagnostics.Add(errorCode, Location, this); } return type; } private static ImmutableArray<ParameterSymbol> MakeParameters( Binder binder, SourcePropertySymbolBase owner, BaseParameterListSyntax? parameterSyntaxOpt, BindingDiagnosticBag diagnostics, bool addRefReadOnlyModifier) { if (parameterSyntaxOpt == null) { return ImmutableArray<ParameterSymbol>.Empty; } if (parameterSyntaxOpt.Parameters.Count < 1) { diagnostics.Add(ErrorCode.ERR_IndexerNeedsParam, parameterSyntaxOpt.GetLastToken().GetLocation()); } SyntaxToken arglistToken; var parameters = ParameterHelpers.MakeParameters( binder, owner, parameterSyntaxOpt, out arglistToken, allowRefOrOut: false, allowThis: false, addRefReadOnlyModifier: addRefReadOnlyModifier, diagnostics: diagnostics); if (arglistToken.Kind() != SyntaxKind.None) { diagnostics.Add(ErrorCode.ERR_IllegalVarArgs, arglistToken.GetLocation()); } // There is a special warning for an indexer with exactly one parameter, which is optional. // ParameterHelpers already warns for default values on explicit interface implementations. if (parameters.Length == 1 && !owner.IsExplicitInterfaceImplementation) { ParameterSyntax parameterSyntax = parameterSyntaxOpt.Parameters[0]; if (parameterSyntax.Default != null) { SyntaxToken paramNameToken = parameterSyntax.Identifier; diagnostics.Add(ErrorCode.WRN_DefaultValueForUnconsumedLocation, paramNameToken.GetLocation(), paramNameToken.ValueText); } } return parameters; } private ImmutableArray<ParameterSymbol> ComputeParameters(Binder binder, CSharpSyntaxNode syntax, BindingDiagnosticBag diagnostics) { var parameterSyntaxOpt = GetParameterListSyntax(syntax); var parameters = MakeParameters(binder, this, parameterSyntaxOpt, diagnostics, addRefReadOnlyModifier: IsVirtual || IsAbstract); return parameters; } internal override void AfterAddingTypeMembersChecks(ConversionsBase conversions, BindingDiagnosticBag diagnostics) { base.AfterAddingTypeMembersChecks(conversions, diagnostics); var useSiteInfo = new CompoundUseSiteInfo<AssemblySymbol>(diagnostics, ContainingAssembly); foreach (ParameterSymbol param in Parameters) { if (!IsExplicitInterfaceImplementation && !this.IsNoMoreVisibleThan(param.Type, ref useSiteInfo)) { diagnostics.Add(ErrorCode.ERR_BadVisIndexerParam, Location, this, param.Type); } else if (SetMethod is object && param.Name == ParameterSymbol.ValueParameterName) { diagnostics.Add(ErrorCode.ERR_DuplicateGeneratedName, param.Locations.FirstOrDefault() ?? Location, param.Name); } } diagnostics.Add(Location, useSiteInfo); } protected override bool HasPointerTypeSyntactically { get { var typeSyntax = GetTypeSyntax(CSharpSyntaxNode).SkipRef(out _); return typeSyntax.Kind() switch { SyntaxKind.PointerType => true, SyntaxKind.FunctionPointerType => true, _ => false }; } } private static BaseParameterListSyntax? GetParameterListSyntax(CSharpSyntaxNode syntax) => (syntax as IndexerDeclarationSyntax)?.ParameterList; } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.Linq; using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.CSharp.Symbols { internal sealed class SourcePropertySymbol : SourcePropertySymbolBase { internal static SourcePropertySymbol Create(SourceMemberContainerTypeSymbol containingType, Binder bodyBinder, PropertyDeclarationSyntax syntax, BindingDiagnosticBag diagnostics) { var nameToken = syntax.Identifier; var location = nameToken.GetLocation(); return Create(containingType, bodyBinder, syntax, nameToken.ValueText, location, diagnostics); } internal static SourcePropertySymbol Create(SourceMemberContainerTypeSymbol containingType, Binder bodyBinder, IndexerDeclarationSyntax syntax, BindingDiagnosticBag diagnostics) { var location = syntax.ThisKeyword.GetLocation(); return Create(containingType, bodyBinder, syntax, DefaultIndexerName, location, diagnostics); } private static SourcePropertySymbol Create( SourceMemberContainerTypeSymbol containingType, Binder binder, BasePropertyDeclarationSyntax syntax, string name, Location location, BindingDiagnosticBag diagnostics) { GetAccessorDeclarations( syntax, diagnostics, out bool isAutoProperty, out bool hasAccessorList, out bool accessorsHaveImplementation, out bool isInitOnly, out var getSyntax, out var setSyntax); var explicitInterfaceSpecifier = GetExplicitInterfaceSpecifier(syntax); SyntaxTokenList modifiersTokenList = GetModifierTokensSyntax(syntax); bool isExplicitInterfaceImplementation = explicitInterfaceSpecifier is object; var modifiers = MakeModifiers( containingType, modifiersTokenList, isExplicitInterfaceImplementation, isIndexer: syntax.Kind() == SyntaxKind.IndexerDeclaration, accessorsHaveImplementation: accessorsHaveImplementation, location, diagnostics, out _); bool isExpressionBodied = !hasAccessorList && GetArrowExpression(syntax) != null; binder = binder.WithUnsafeRegionIfNecessary(modifiersTokenList); TypeSymbol? explicitInterfaceType; string? aliasQualifierOpt; string memberName = ExplicitInterfaceHelpers.GetMemberNameAndInterfaceSymbol(binder, explicitInterfaceSpecifier, name, diagnostics, out explicitInterfaceType, out aliasQualifierOpt); return new SourcePropertySymbol( containingType, syntax, hasGetAccessor: getSyntax != null || isExpressionBodied, hasSetAccessor: setSyntax != null, isExplicitInterfaceImplementation, explicitInterfaceType, aliasQualifierOpt, modifiers, isAutoProperty: isAutoProperty, isExpressionBodied: isExpressionBodied, isInitOnly: isInitOnly, memberName, location, diagnostics); } private SourcePropertySymbol( SourceMemberContainerTypeSymbol containingType, BasePropertyDeclarationSyntax syntax, bool hasGetAccessor, bool hasSetAccessor, bool isExplicitInterfaceImplementation, TypeSymbol? explicitInterfaceType, string? aliasQualifierOpt, DeclarationModifiers modifiers, bool isAutoProperty, bool isExpressionBodied, bool isInitOnly, string memberName, Location location, BindingDiagnosticBag diagnostics) : base( containingType, syntax, hasGetAccessor, hasSetAccessor, isExplicitInterfaceImplementation, explicitInterfaceType, aliasQualifierOpt, modifiers, hasInitializer: HasInitializer(syntax), isAutoProperty: isAutoProperty, isExpressionBodied: isExpressionBodied, isInitOnly: isInitOnly, syntax.Type.GetRefKind(), memberName, syntax.AttributeLists, location, diagnostics) { if (IsAutoProperty) { Binder.CheckFeatureAvailability( syntax, (hasGetAccessor && !hasSetAccessor) ? MessageID.IDS_FeatureReadonlyAutoImplementedProperties : MessageID.IDS_FeatureAutoImplementedProperties, diagnostics, location); } CheckForBlockAndExpressionBody( syntax.AccessorList, syntax.GetExpressionBodySyntax(), syntax, diagnostics); } private TypeSyntax GetTypeSyntax(SyntaxNode syntax) => ((BasePropertyDeclarationSyntax)syntax).Type; protected override Location TypeLocation => GetTypeSyntax(CSharpSyntaxNode).Location; private static SyntaxTokenList GetModifierTokensSyntax(SyntaxNode syntax) => ((BasePropertyDeclarationSyntax)syntax).Modifiers; private static ArrowExpressionClauseSyntax? GetArrowExpression(SyntaxNode syntax) => syntax switch { PropertyDeclarationSyntax p => p.ExpressionBody, IndexerDeclarationSyntax i => i.ExpressionBody, _ => throw ExceptionUtilities.UnexpectedValue(syntax.Kind()) }; private static bool HasInitializer(SyntaxNode syntax) => syntax is PropertyDeclarationSyntax { Initializer: { } }; public override SyntaxList<AttributeListSyntax> AttributeDeclarationSyntaxList => ((BasePropertyDeclarationSyntax)CSharpSyntaxNode).AttributeLists; public override IAttributeTargetSymbol AttributesOwner => this; private static void GetAccessorDeclarations( CSharpSyntaxNode syntaxNode, BindingDiagnosticBag diagnostics, out bool isAutoProperty, out bool hasAccessorList, out bool accessorsHaveImplementation, out bool isInitOnly, out CSharpSyntaxNode? getSyntax, out CSharpSyntaxNode? setSyntax) { var syntax = (BasePropertyDeclarationSyntax)syntaxNode; isAutoProperty = true; hasAccessorList = syntax.AccessorList != null; getSyntax = null; setSyntax = null; isInitOnly = false; if (hasAccessorList) { accessorsHaveImplementation = false; foreach (var accessor in syntax.AccessorList!.Accessors) { switch (accessor.Kind()) { case SyntaxKind.GetAccessorDeclaration: if (getSyntax == null) { getSyntax = accessor; } else { diagnostics.Add(ErrorCode.ERR_DuplicateAccessor, accessor.Keyword.GetLocation()); } break; case SyntaxKind.SetAccessorDeclaration: case SyntaxKind.InitAccessorDeclaration: if (setSyntax == null) { setSyntax = accessor; if (accessor.Keyword.IsKind(SyntaxKind.InitKeyword)) { isInitOnly = true; } } else { diagnostics.Add(ErrorCode.ERR_DuplicateAccessor, accessor.Keyword.GetLocation()); } break; case SyntaxKind.AddAccessorDeclaration: case SyntaxKind.RemoveAccessorDeclaration: diagnostics.Add(ErrorCode.ERR_GetOrSetExpected, accessor.Keyword.GetLocation()); continue; case SyntaxKind.UnknownAccessorDeclaration: // We don't need to report an error here as the parser will already have // done that for us. continue; default: throw ExceptionUtilities.UnexpectedValue(accessor.Kind()); } if (accessor.Body != null || accessor.ExpressionBody != null) { isAutoProperty = false; accessorsHaveImplementation = true; } } } else { isAutoProperty = false; accessorsHaveImplementation = GetArrowExpression(syntax) is object; } } private static AccessorDeclarationSyntax GetGetAccessorDeclaration(BasePropertyDeclarationSyntax syntax) { foreach (var accessor in syntax.AccessorList!.Accessors) { switch (accessor.Kind()) { case SyntaxKind.GetAccessorDeclaration: return accessor; } } throw ExceptionUtilities.Unreachable; } private static AccessorDeclarationSyntax GetSetAccessorDeclaration(BasePropertyDeclarationSyntax syntax) { foreach (var accessor in syntax.AccessorList!.Accessors) { switch (accessor.Kind()) { case SyntaxKind.SetAccessorDeclaration: case SyntaxKind.InitAccessorDeclaration: return accessor; } } throw ExceptionUtilities.Unreachable; } private static DeclarationModifiers MakeModifiers( NamedTypeSymbol containingType, SyntaxTokenList modifiers, bool isExplicitInterfaceImplementation, bool isIndexer, bool accessorsHaveImplementation, Location location, BindingDiagnosticBag diagnostics, out bool modifierErrors) { bool isInterface = containingType.IsInterface; var defaultAccess = isInterface && !isExplicitInterfaceImplementation ? DeclarationModifiers.Public : DeclarationModifiers.Private; // Check that the set of modifiers is allowed var allowedModifiers = DeclarationModifiers.Unsafe; var defaultInterfaceImplementationModifiers = DeclarationModifiers.None; if (!isExplicitInterfaceImplementation) { allowedModifiers |= DeclarationModifiers.New | DeclarationModifiers.Sealed | DeclarationModifiers.Abstract | DeclarationModifiers.Virtual | DeclarationModifiers.AccessibilityMask; if (!isIndexer) { allowedModifiers |= DeclarationModifiers.Static; } if (!isInterface) { allowedModifiers |= DeclarationModifiers.Override; } else { // This is needed to make sure we can detect 'public' modifier specified explicitly and // check it against language version below. defaultAccess = DeclarationModifiers.None; defaultInterfaceImplementationModifiers |= DeclarationModifiers.Sealed | DeclarationModifiers.Abstract | (isIndexer ? 0 : DeclarationModifiers.Static) | DeclarationModifiers.Virtual | DeclarationModifiers.Extern | DeclarationModifiers.AccessibilityMask; } } else { Debug.Assert(isExplicitInterfaceImplementation); if (isInterface) { allowedModifiers |= DeclarationModifiers.Abstract; } else if (!isIndexer) { allowedModifiers |= DeclarationModifiers.Static; } } if (containingType.IsStructType()) { allowedModifiers |= DeclarationModifiers.ReadOnly; } allowedModifiers |= DeclarationModifiers.Extern; var mods = ModifierUtils.MakeAndCheckNontypeMemberModifiers(modifiers, defaultAccess, allowedModifiers, location, diagnostics, out modifierErrors); ModifierUtils.CheckFeatureAvailabilityForStaticAbstractMembersInInterfacesIfNeeded(mods, isExplicitInterfaceImplementation, location, diagnostics); containingType.CheckUnsafeModifier(mods, location, diagnostics); ModifierUtils.ReportDefaultInterfaceImplementationModifiers(accessorsHaveImplementation, mods, defaultInterfaceImplementationModifiers, location, diagnostics); // Let's overwrite modifiers for interface properties with what they are supposed to be. // Proper errors must have been reported by now. if (isInterface) { mods = ModifierUtils.AdjustModifiersForAnInterfaceMember(mods, accessorsHaveImplementation, isExplicitInterfaceImplementation); } if (isIndexer) { mods |= DeclarationModifiers.Indexer; } return mods; } protected override SourcePropertyAccessorSymbol CreateGetAccessorSymbol(bool isAutoPropertyAccessor, BindingDiagnosticBag diagnostics) { var syntax = (BasePropertyDeclarationSyntax)CSharpSyntaxNode; ArrowExpressionClauseSyntax? arrowExpression = GetArrowExpression(syntax); if (syntax.AccessorList is null && arrowExpression != null) { return CreateExpressionBodiedAccessor( arrowExpression, diagnostics); } else { return CreateAccessorSymbol(GetGetAccessorDeclaration(syntax), isAutoPropertyAccessor, diagnostics); } } protected override SourcePropertyAccessorSymbol CreateSetAccessorSymbol(bool isAutoPropertyAccessor, BindingDiagnosticBag diagnostics) { var syntax = (BasePropertyDeclarationSyntax)CSharpSyntaxNode; Debug.Assert(!(syntax.AccessorList is null && GetArrowExpression(syntax) != null)); return CreateAccessorSymbol(GetSetAccessorDeclaration(syntax), isAutoPropertyAccessor, diagnostics); } private SourcePropertyAccessorSymbol CreateAccessorSymbol( AccessorDeclarationSyntax syntax, bool isAutoPropertyAccessor, BindingDiagnosticBag diagnostics) { return SourcePropertyAccessorSymbol.CreateAccessorSymbol( ContainingType, this, _modifiers, syntax, isAutoPropertyAccessor, diagnostics); } private SourcePropertyAccessorSymbol CreateExpressionBodiedAccessor( ArrowExpressionClauseSyntax syntax, BindingDiagnosticBag diagnostics) { return SourcePropertyAccessorSymbol.CreateAccessorSymbol( ContainingType, this, _modifiers, syntax, diagnostics); } private Binder CreateBinderForTypeAndParameters() { var compilation = this.DeclaringCompilation; var syntaxTree = SyntaxTree; var syntax = CSharpSyntaxNode; var binderFactory = compilation.GetBinderFactory(syntaxTree); var binder = binderFactory.GetBinder(syntax, syntax, this); SyntaxTokenList modifiers = GetModifierTokensSyntax(syntax); binder = binder.WithUnsafeRegionIfNecessary(modifiers); return binder.WithAdditionalFlagsAndContainingMemberOrLambda(BinderFlags.SuppressConstraintChecks, this); } protected override (TypeWithAnnotations Type, ImmutableArray<ParameterSymbol> Parameters) MakeParametersAndBindType(BindingDiagnosticBag diagnostics) { Binder binder = CreateBinderForTypeAndParameters(); var syntax = CSharpSyntaxNode; return (ComputeType(binder, syntax, diagnostics), ComputeParameters(binder, syntax, diagnostics)); } private TypeWithAnnotations ComputeType(Binder binder, SyntaxNode syntax, BindingDiagnosticBag diagnostics) { RefKind refKind; var typeSyntax = GetTypeSyntax(syntax).SkipRef(out refKind); var type = binder.BindType(typeSyntax, diagnostics); CompoundUseSiteInfo<AssemblySymbol> useSiteInfo = binder.GetNewCompoundUseSiteInfo(diagnostics); if (GetExplicitInterfaceSpecifier() is null && !this.IsNoMoreVisibleThan(type, ref useSiteInfo)) { // "Inconsistent accessibility: indexer return type '{1}' is less accessible than indexer '{0}'" // "Inconsistent accessibility: property type '{1}' is less accessible than property '{0}'" diagnostics.Add((this.IsIndexer ? ErrorCode.ERR_BadVisIndexerReturn : ErrorCode.ERR_BadVisPropertyType), Location, this, type.Type); } diagnostics.Add(Location, useSiteInfo); if (type.IsVoidType()) { ErrorCode errorCode = this.IsIndexer ? ErrorCode.ERR_IndexerCantHaveVoidType : ErrorCode.ERR_PropertyCantHaveVoidType; diagnostics.Add(errorCode, Location, this); } return type; } private static ImmutableArray<ParameterSymbol> MakeParameters( Binder binder, SourcePropertySymbolBase owner, BaseParameterListSyntax? parameterSyntaxOpt, BindingDiagnosticBag diagnostics, bool addRefReadOnlyModifier) { if (parameterSyntaxOpt == null) { return ImmutableArray<ParameterSymbol>.Empty; } if (parameterSyntaxOpt.Parameters.Count < 1) { diagnostics.Add(ErrorCode.ERR_IndexerNeedsParam, parameterSyntaxOpt.GetLastToken().GetLocation()); } SyntaxToken arglistToken; var parameters = ParameterHelpers.MakeParameters( binder, owner, parameterSyntaxOpt, out arglistToken, allowRefOrOut: false, allowThis: false, addRefReadOnlyModifier: addRefReadOnlyModifier, diagnostics: diagnostics); if (arglistToken.Kind() != SyntaxKind.None) { diagnostics.Add(ErrorCode.ERR_IllegalVarArgs, arglistToken.GetLocation()); } // There is a special warning for an indexer with exactly one parameter, which is optional. // ParameterHelpers already warns for default values on explicit interface implementations. if (parameters.Length == 1 && !owner.IsExplicitInterfaceImplementation) { ParameterSyntax parameterSyntax = parameterSyntaxOpt.Parameters[0]; if (parameterSyntax.Default != null) { SyntaxToken paramNameToken = parameterSyntax.Identifier; diagnostics.Add(ErrorCode.WRN_DefaultValueForUnconsumedLocation, paramNameToken.GetLocation(), paramNameToken.ValueText); } } return parameters; } private ImmutableArray<ParameterSymbol> ComputeParameters(Binder binder, CSharpSyntaxNode syntax, BindingDiagnosticBag diagnostics) { var parameterSyntaxOpt = GetParameterListSyntax(syntax); var parameters = MakeParameters(binder, this, parameterSyntaxOpt, diagnostics, addRefReadOnlyModifier: IsVirtual || IsAbstract); return parameters; } internal override void AfterAddingTypeMembersChecks(ConversionsBase conversions, BindingDiagnosticBag diagnostics) { base.AfterAddingTypeMembersChecks(conversions, diagnostics); var useSiteInfo = new CompoundUseSiteInfo<AssemblySymbol>(diagnostics, ContainingAssembly); foreach (ParameterSymbol param in Parameters) { if (!IsExplicitInterfaceImplementation && !this.IsNoMoreVisibleThan(param.Type, ref useSiteInfo)) { diagnostics.Add(ErrorCode.ERR_BadVisIndexerParam, Location, this, param.Type); } else if (SetMethod is object && param.Name == ParameterSymbol.ValueParameterName) { diagnostics.Add(ErrorCode.ERR_DuplicateGeneratedName, param.Locations.FirstOrDefault() ?? Location, param.Name); } } diagnostics.Add(Location, useSiteInfo); } protected override bool HasPointerTypeSyntactically { get { var typeSyntax = GetTypeSyntax(CSharpSyntaxNode).SkipRef(out _); return typeSyntax.Kind() switch { SyntaxKind.PointerType => true, SyntaxKind.FunctionPointerType => true, _ => false }; } } private static BaseParameterListSyntax? GetParameterListSyntax(CSharpSyntaxNode syntax) => (syntax as IndexerDeclarationSyntax)?.ParameterList; } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/SharedUtilitiesAndExtensions/Workspace/Core/LanguageServices/TypeInferenceService/AbstractTypeInferenceService.AbstractTypeInferrer.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using System.Threading; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.LanguageServices.TypeInferenceService { internal partial class AbstractTypeInferenceService : ITypeInferenceService { protected abstract class AbstractTypeInferrer { protected readonly CancellationToken CancellationToken; protected readonly SemanticModel SemanticModel; protected readonly Func<TypeInferenceInfo, bool> IsUsableTypeFunc; private readonly HashSet<SyntaxNode> _seenExpressionInferType = new(); private readonly HashSet<SyntaxNode> _seenExpressionGetType = new(); private static readonly Func<TypeInferenceInfo, bool> s_isNotNull = t => t.InferredType != null; protected AbstractTypeInferrer(SemanticModel semanticModel, CancellationToken cancellationToken) { this.SemanticModel = semanticModel; this.CancellationToken = cancellationToken; this.IsUsableTypeFunc = t => t.InferredType != null && !IsUnusableType(t.InferredType); } protected abstract IEnumerable<TypeInferenceInfo> InferTypesWorker_DoNotCallDirectly(int position); protected abstract IEnumerable<TypeInferenceInfo> InferTypesWorker_DoNotCallDirectly(SyntaxNode expression); protected abstract IEnumerable<TypeInferenceInfo> GetTypes_DoNotCallDirectly(SyntaxNode expression, bool objectAsDefault); protected abstract bool IsUnusableType(ITypeSymbol arg); protected Compilation Compilation => SemanticModel.Compilation; public ImmutableArray<TypeInferenceInfo> InferTypes(int position) { var types = InferTypesWorker_DoNotCallDirectly(position); return Filter(types); } public ImmutableArray<TypeInferenceInfo> InferTypes(SyntaxNode expression, bool filterUnusable = true) { if (expression != null) { if (_seenExpressionInferType.Add(expression)) { var types = InferTypesWorker_DoNotCallDirectly(expression); return Filter(types, filterUnusable); } } return ImmutableArray<TypeInferenceInfo>.Empty; } protected IEnumerable<TypeInferenceInfo> GetTypes(SyntaxNode expression, bool objectAsDefault = false) { if (expression != null) { if (_seenExpressionGetType.Add(expression)) { return GetTypes_DoNotCallDirectly(expression, objectAsDefault); } } return SpecializedCollections.EmptyEnumerable<TypeInferenceInfo>(); } private ImmutableArray<TypeInferenceInfo> Filter(IEnumerable<TypeInferenceInfo> types, bool filterUnusable = true) { return types.Where(filterUnusable ? IsUsableTypeFunc : s_isNotNull) .Distinct() .ToImmutableArray(); } protected IEnumerable<TypeInferenceInfo> CreateResult(SpecialType type, NullableAnnotation nullableAnnotation = NullableAnnotation.None) => CreateResult(Compilation.GetSpecialType(type).WithNullableAnnotation(nullableAnnotation)); protected static IEnumerable<TypeInferenceInfo> CreateResult(ITypeSymbol type) => type == null ? SpecializedCollections.EmptyCollection<TypeInferenceInfo>() : SpecializedCollections.SingletonEnumerable(new TypeInferenceInfo(type)); protected static IEnumerable<ITypeSymbol> ExpandParamsParameter(IParameterSymbol parameterSymbol) { var result = new List<ITypeSymbol>(); result.Add(parameterSymbol.Type); if (parameterSymbol.IsParams) { if (parameterSymbol.Type is IArrayTypeSymbol arrayTypeSymbol) { result.Add(arrayTypeSymbol.ElementType); } } return result; } protected static IEnumerable<TypeInferenceInfo> GetCollectionElementType(INamedTypeSymbol type) { if (type != null) { var parameters = type.TypeArguments; var elementType = parameters.ElementAtOrDefault(0); if (elementType != null) { return SpecializedCollections.SingletonCollection(new TypeInferenceInfo(elementType)); } } return SpecializedCollections.EmptyEnumerable<TypeInferenceInfo>(); } protected static bool IsEnumHasFlag(ISymbol symbol) { return symbol.Kind == SymbolKind.Method && symbol.Name == nameof(Enum.HasFlag) && symbol.ContainingType?.SpecialType == SpecialType.System_Enum; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using System.Threading; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.LanguageServices.TypeInferenceService { internal partial class AbstractTypeInferenceService : ITypeInferenceService { protected abstract class AbstractTypeInferrer { protected readonly CancellationToken CancellationToken; protected readonly SemanticModel SemanticModel; protected readonly Func<TypeInferenceInfo, bool> IsUsableTypeFunc; private readonly HashSet<SyntaxNode> _seenExpressionInferType = new(); private readonly HashSet<SyntaxNode> _seenExpressionGetType = new(); private static readonly Func<TypeInferenceInfo, bool> s_isNotNull = t => t.InferredType != null; protected AbstractTypeInferrer(SemanticModel semanticModel, CancellationToken cancellationToken) { this.SemanticModel = semanticModel; this.CancellationToken = cancellationToken; this.IsUsableTypeFunc = t => t.InferredType != null && !IsUnusableType(t.InferredType); } protected abstract IEnumerable<TypeInferenceInfo> InferTypesWorker_DoNotCallDirectly(int position); protected abstract IEnumerable<TypeInferenceInfo> InferTypesWorker_DoNotCallDirectly(SyntaxNode expression); protected abstract IEnumerable<TypeInferenceInfo> GetTypes_DoNotCallDirectly(SyntaxNode expression, bool objectAsDefault); protected abstract bool IsUnusableType(ITypeSymbol arg); protected Compilation Compilation => SemanticModel.Compilation; public ImmutableArray<TypeInferenceInfo> InferTypes(int position) { var types = InferTypesWorker_DoNotCallDirectly(position); return Filter(types); } public ImmutableArray<TypeInferenceInfo> InferTypes(SyntaxNode expression, bool filterUnusable = true) { if (expression != null) { if (_seenExpressionInferType.Add(expression)) { var types = InferTypesWorker_DoNotCallDirectly(expression); return Filter(types, filterUnusable); } } return ImmutableArray<TypeInferenceInfo>.Empty; } protected IEnumerable<TypeInferenceInfo> GetTypes(SyntaxNode expression, bool objectAsDefault = false) { if (expression != null) { if (_seenExpressionGetType.Add(expression)) { return GetTypes_DoNotCallDirectly(expression, objectAsDefault); } } return SpecializedCollections.EmptyEnumerable<TypeInferenceInfo>(); } private ImmutableArray<TypeInferenceInfo> Filter(IEnumerable<TypeInferenceInfo> types, bool filterUnusable = true) { return types.Where(filterUnusable ? IsUsableTypeFunc : s_isNotNull) .Distinct() .ToImmutableArray(); } protected IEnumerable<TypeInferenceInfo> CreateResult(SpecialType type, NullableAnnotation nullableAnnotation = NullableAnnotation.None) => CreateResult(Compilation.GetSpecialType(type).WithNullableAnnotation(nullableAnnotation)); protected static IEnumerable<TypeInferenceInfo> CreateResult(ITypeSymbol type) => type == null ? SpecializedCollections.EmptyCollection<TypeInferenceInfo>() : SpecializedCollections.SingletonEnumerable(new TypeInferenceInfo(type)); protected static IEnumerable<ITypeSymbol> ExpandParamsParameter(IParameterSymbol parameterSymbol) { var result = new List<ITypeSymbol>(); result.Add(parameterSymbol.Type); if (parameterSymbol.IsParams) { if (parameterSymbol.Type is IArrayTypeSymbol arrayTypeSymbol) { result.Add(arrayTypeSymbol.ElementType); } } return result; } protected static IEnumerable<TypeInferenceInfo> GetCollectionElementType(INamedTypeSymbol type) { if (type != null) { var parameters = type.TypeArguments; var elementType = parameters.ElementAtOrDefault(0); if (elementType != null) { return SpecializedCollections.SingletonCollection(new TypeInferenceInfo(elementType)); } } return SpecializedCollections.EmptyEnumerable<TypeInferenceInfo>(); } protected static bool IsEnumHasFlag(ISymbol symbol) { return symbol.Kind == SymbolKind.Method && symbol.Name == nameof(Enum.HasFlag) && symbol.ContainingType?.SpecialType == SpecialType.System_Enum; } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/EditorFeatures/TestUtilities/Threading/CriticalWpfTheoryAttribute.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; namespace Roslyn.Test.Utilities { /// <summary> /// Indicates a <see cref="WpfTheoryAttribute"/> test which is essential to product quality and cannot be skipped. /// </summary> public class CriticalWpfTheoryAttribute : WpfTheoryAttribute { [Obsolete("Critical tests cannot be skipped.", error: true)] public new string Skip { get { return base.Skip; } set { base.Skip = value; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; namespace Roslyn.Test.Utilities { /// <summary> /// Indicates a <see cref="WpfTheoryAttribute"/> test which is essential to product quality and cannot be skipped. /// </summary> public class CriticalWpfTheoryAttribute : WpfTheoryAttribute { [Obsolete("Critical tests cannot be skipped.", error: true)] public new string Skip { get { return base.Skip; } set { base.Skip = value; } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Analyzers/CSharp/Analyzers/UseConditionalExpression/CSharpUseConditionalExpressionForAssignmentDiagnosticAnalyzer.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using Microsoft.CodeAnalysis.CSharp.LanguageServices; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.LanguageServices; using Microsoft.CodeAnalysis.UseConditionalExpression; namespace Microsoft.CodeAnalysis.CSharp.UseConditionalExpression { [DiagnosticAnalyzer(LanguageNames.CSharp)] internal class CSharpUseConditionalExpressionForAssignmentDiagnosticAnalyzer : AbstractUseConditionalExpressionForAssignmentDiagnosticAnalyzer<IfStatementSyntax> { public CSharpUseConditionalExpressionForAssignmentDiagnosticAnalyzer() : base(new LocalizableResourceString(nameof(CSharpAnalyzersResources.if_statement_can_be_simplified), CSharpAnalyzersResources.ResourceManager, typeof(CSharpAnalyzersResources))) { } protected override ISyntaxFacts GetSyntaxFacts() => CSharpSyntaxFacts.Instance; } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using Microsoft.CodeAnalysis.CSharp.LanguageServices; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.LanguageServices; using Microsoft.CodeAnalysis.UseConditionalExpression; namespace Microsoft.CodeAnalysis.CSharp.UseConditionalExpression { [DiagnosticAnalyzer(LanguageNames.CSharp)] internal class CSharpUseConditionalExpressionForAssignmentDiagnosticAnalyzer : AbstractUseConditionalExpressionForAssignmentDiagnosticAnalyzer<IfStatementSyntax> { public CSharpUseConditionalExpressionForAssignmentDiagnosticAnalyzer() : base(new LocalizableResourceString(nameof(CSharpAnalyzersResources.if_statement_can_be_simplified), CSharpAnalyzersResources.ResourceManager, typeof(CSharpAnalyzersResources))) { } protected override ISyntaxFacts GetSyntaxFacts() => CSharpSyntaxFacts.Instance; } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/ExpressionEvaluator/CSharp/Test/ResultProvider/ObjectIdTests.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using Microsoft.CodeAnalysis.ExpressionEvaluator; using Microsoft.VisualStudio.Debugger.Clr; using Microsoft.VisualStudio.Debugger.Evaluation; using Microsoft.VisualStudio.Debugger.Evaluation.ClrCompilation; using System; using Xunit; namespace Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.UnitTests { public class ObjectIdTests : CSharpResultProviderTestBase { [Fact] public void SpecialTypes() { var objectType = new DkmClrType((TypeImpl)typeof(object)); DkmClrValue value; // int value = CreateDkmClrValue(value: 1, type: typeof(int), alias: "$1", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("i", value, objectType), EvalResult("i", "1 {$1}", "object {int}", "i", DkmEvaluationResultFlags.HasObjectId)); // char value = CreateDkmClrValue(value: 'c', type: typeof(char), alias: "$2", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("c", value, objectType), EvalResult("c", "99 'c' {$2}", "object {char}", "c", DkmEvaluationResultFlags.HasObjectId, editableValue: "'c'")); // char (hex) value = CreateDkmClrValue(value: 'c', type: typeof(char), alias: "$3", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("c", value, objectType, inspectionContext: CreateDkmInspectionContext(radix: 16)), EvalResult("c", "0x0063 'c' {$3}", "object {char}", "c", DkmEvaluationResultFlags.HasObjectId, editableValue: "'c'")); // enum value = CreateDkmClrValue(value: DkmEvaluationResultFlags.HasObjectId, type: typeof(DkmEvaluationResultFlags), alias: "$Four", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("e", value, objectType), EvalResult("e", "HasObjectId {$Four}", "object {Microsoft.VisualStudio.Debugger.Evaluation.DkmEvaluationResultFlags}", "e", DkmEvaluationResultFlags.HasObjectId, editableValue: "Microsoft.VisualStudio.Debugger.Evaluation.DkmEvaluationResultFlags.HasObjectId")); // string value = CreateDkmClrValue(value: "str", type: typeof(string), alias: "$5", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("s", value), EvalResult("s", "\"str\" {$5}", "string", "s", DkmEvaluationResultFlags.RawString | DkmEvaluationResultFlags.HasObjectId, editableValue: "\"str\"")); // decimal value = CreateDkmClrValue(value: 6m, type: typeof(decimal), alias: "$6", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("d", value, objectType), EvalResult("d", "6 {$6}", "object {decimal}", "d", DkmEvaluationResultFlags.HasObjectId, editableValue: "6M")); // array value = CreateDkmClrValue(value: new int[] { 1, 2 }, type: typeof(int[]), alias: "$7", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("a", value, objectType), EvalResult("a", "{int[2]} {$7}", "object {int[]}", "a", DkmEvaluationResultFlags.Expandable | DkmEvaluationResultFlags.HasObjectId)); } /// <summary> /// Aliases that are not positive integers or valid /// identifiers (perhaps created from another EE). /// </summary> [Fact] public void OtherIds() { DkmClrValue value; // "" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "$" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "$", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {$}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "$ " value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "$ ", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {$ }", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "$-1" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "$-1", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {$-1}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "$1.1AB" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "$1.1AB", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {$1.1AB}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "1#" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "1#", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {1#}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "$1#" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "$1#", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {$1#}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "$${}" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "$${}", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {$${}}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); } [Fact] public void BaseAndDerived() { var source = @"class A { } class B : A { } class C : B { }"; var assembly = GetAssembly(source); var type = assembly.GetType("C"); var value = CreateDkmClrValue( Activator.CreateInstance(type), type, alias: "$2", evalFlags: DkmEvaluationResultFlags.HasObjectId); var evalResult = FormatResult("o", value, new DkmClrType((TypeImpl)type.BaseType)); Verify(evalResult, EvalResult("o", "{C} {$2}", "B {C}", "o", DkmEvaluationResultFlags.HasObjectId)); } [Fact] public void ToStringOverride() { var source = @"class C { public override string ToString() { return ""ToString""; } }"; var assembly = GetAssembly(source); var type = assembly.GetType("C"); var value = CreateDkmClrValue( Activator.CreateInstance(type), type, alias: "$3", evalFlags: DkmEvaluationResultFlags.HasObjectId); var evalResult = FormatResult("o", value); Verify(evalResult, EvalResult("o", "{ToString} {$3}", "C", "o", DkmEvaluationResultFlags.HasObjectId)); } [Fact] public void DebuggerDisplay() { var source = @"using System.Diagnostics; [DebuggerDisplay(""{F}"")] class C { object F = 2; }"; var assembly = GetAssembly(source); var type = assembly.GetType("C"); var value = CreateDkmClrValue( Activator.CreateInstance(type), type, alias: "$4321", evalFlags: DkmEvaluationResultFlags.HasObjectId); var evalResult = FormatResult("o", value); Verify(evalResult, EvalResult("o", "2 {$4321}", "C", "o", DkmEvaluationResultFlags.Expandable | DkmEvaluationResultFlags.HasObjectId)); } [Fact] public void DebuggerTypeProxy() { var source = @"using System.Diagnostics; [DebuggerTypeProxy(typeof(P))] class C { } class P { public P(C c) { } }"; var assembly = GetAssembly(source); var type = assembly.GetType("C"); var value = CreateDkmClrValue( Activator.CreateInstance(type), type, alias: "$5", evalFlags: DkmEvaluationResultFlags.HasObjectId); var evalResult = FormatResult("o", value); Verify(evalResult, EvalResult("o", "{C} {$5}", "C", "o", DkmEvaluationResultFlags.Expandable | DkmEvaluationResultFlags.HasObjectId)); var children = GetChildren(evalResult); Verify(children, EvalResult("Raw View", null, "", "o, raw", DkmEvaluationResultFlags.ReadOnly | DkmEvaluationResultFlags.HasObjectId, DkmEvaluationResultCategory.Data)); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using Microsoft.CodeAnalysis.ExpressionEvaluator; using Microsoft.VisualStudio.Debugger.Clr; using Microsoft.VisualStudio.Debugger.Evaluation; using Microsoft.VisualStudio.Debugger.Evaluation.ClrCompilation; using System; using Xunit; namespace Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.UnitTests { public class ObjectIdTests : CSharpResultProviderTestBase { [Fact] public void SpecialTypes() { var objectType = new DkmClrType((TypeImpl)typeof(object)); DkmClrValue value; // int value = CreateDkmClrValue(value: 1, type: typeof(int), alias: "$1", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("i", value, objectType), EvalResult("i", "1 {$1}", "object {int}", "i", DkmEvaluationResultFlags.HasObjectId)); // char value = CreateDkmClrValue(value: 'c', type: typeof(char), alias: "$2", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("c", value, objectType), EvalResult("c", "99 'c' {$2}", "object {char}", "c", DkmEvaluationResultFlags.HasObjectId, editableValue: "'c'")); // char (hex) value = CreateDkmClrValue(value: 'c', type: typeof(char), alias: "$3", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("c", value, objectType, inspectionContext: CreateDkmInspectionContext(radix: 16)), EvalResult("c", "0x0063 'c' {$3}", "object {char}", "c", DkmEvaluationResultFlags.HasObjectId, editableValue: "'c'")); // enum value = CreateDkmClrValue(value: DkmEvaluationResultFlags.HasObjectId, type: typeof(DkmEvaluationResultFlags), alias: "$Four", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("e", value, objectType), EvalResult("e", "HasObjectId {$Four}", "object {Microsoft.VisualStudio.Debugger.Evaluation.DkmEvaluationResultFlags}", "e", DkmEvaluationResultFlags.HasObjectId, editableValue: "Microsoft.VisualStudio.Debugger.Evaluation.DkmEvaluationResultFlags.HasObjectId")); // string value = CreateDkmClrValue(value: "str", type: typeof(string), alias: "$5", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("s", value), EvalResult("s", "\"str\" {$5}", "string", "s", DkmEvaluationResultFlags.RawString | DkmEvaluationResultFlags.HasObjectId, editableValue: "\"str\"")); // decimal value = CreateDkmClrValue(value: 6m, type: typeof(decimal), alias: "$6", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("d", value, objectType), EvalResult("d", "6 {$6}", "object {decimal}", "d", DkmEvaluationResultFlags.HasObjectId, editableValue: "6M")); // array value = CreateDkmClrValue(value: new int[] { 1, 2 }, type: typeof(int[]), alias: "$7", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify( FormatResult("a", value, objectType), EvalResult("a", "{int[2]} {$7}", "object {int[]}", "a", DkmEvaluationResultFlags.Expandable | DkmEvaluationResultFlags.HasObjectId)); } /// <summary> /// Aliases that are not positive integers or valid /// identifiers (perhaps created from another EE). /// </summary> [Fact] public void OtherIds() { DkmClrValue value; // "" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "$" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "$", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {$}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "$ " value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "$ ", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {$ }", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "$-1" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "$-1", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {$-1}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "$1.1AB" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "$1.1AB", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {$1.1AB}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "1#" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "1#", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {1#}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "$1#" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "$1#", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {$1#}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); // "$${}" value = CreateDkmClrValue(value: new object(), type: typeof(object), alias: "$${}", evalFlags: DkmEvaluationResultFlags.HasObjectId); Verify(FormatResult("o", value), EvalResult("o", "{object} {$${}}", "object", "o", DkmEvaluationResultFlags.HasObjectId)); } [Fact] public void BaseAndDerived() { var source = @"class A { } class B : A { } class C : B { }"; var assembly = GetAssembly(source); var type = assembly.GetType("C"); var value = CreateDkmClrValue( Activator.CreateInstance(type), type, alias: "$2", evalFlags: DkmEvaluationResultFlags.HasObjectId); var evalResult = FormatResult("o", value, new DkmClrType((TypeImpl)type.BaseType)); Verify(evalResult, EvalResult("o", "{C} {$2}", "B {C}", "o", DkmEvaluationResultFlags.HasObjectId)); } [Fact] public void ToStringOverride() { var source = @"class C { public override string ToString() { return ""ToString""; } }"; var assembly = GetAssembly(source); var type = assembly.GetType("C"); var value = CreateDkmClrValue( Activator.CreateInstance(type), type, alias: "$3", evalFlags: DkmEvaluationResultFlags.HasObjectId); var evalResult = FormatResult("o", value); Verify(evalResult, EvalResult("o", "{ToString} {$3}", "C", "o", DkmEvaluationResultFlags.HasObjectId)); } [Fact] public void DebuggerDisplay() { var source = @"using System.Diagnostics; [DebuggerDisplay(""{F}"")] class C { object F = 2; }"; var assembly = GetAssembly(source); var type = assembly.GetType("C"); var value = CreateDkmClrValue( Activator.CreateInstance(type), type, alias: "$4321", evalFlags: DkmEvaluationResultFlags.HasObjectId); var evalResult = FormatResult("o", value); Verify(evalResult, EvalResult("o", "2 {$4321}", "C", "o", DkmEvaluationResultFlags.Expandable | DkmEvaluationResultFlags.HasObjectId)); } [Fact] public void DebuggerTypeProxy() { var source = @"using System.Diagnostics; [DebuggerTypeProxy(typeof(P))] class C { } class P { public P(C c) { } }"; var assembly = GetAssembly(source); var type = assembly.GetType("C"); var value = CreateDkmClrValue( Activator.CreateInstance(type), type, alias: "$5", evalFlags: DkmEvaluationResultFlags.HasObjectId); var evalResult = FormatResult("o", value); Verify(evalResult, EvalResult("o", "{C} {$5}", "C", "o", DkmEvaluationResultFlags.Expandable | DkmEvaluationResultFlags.HasObjectId)); var children = GetChildren(evalResult); Verify(children, EvalResult("Raw View", null, "", "o, raw", DkmEvaluationResultFlags.ReadOnly | DkmEvaluationResultFlags.HasObjectId, DkmEvaluationResultCategory.Data)); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/Test/Core/FX/StringExtensions.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Roslyn.Test.Utilities { public static class StringExtensions { public static string NormalizeLineEndings(this string input) { if (input.Contains("\n") && !input.Contains("\r\n")) { input = input.Replace("\n", "\r\n"); } return input; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Roslyn.Test.Utilities { public static class StringExtensions { public static string NormalizeLineEndings(this string input) { if (input.Contains("\n") && !input.Contains("\r\n")) { input = input.Replace("\n", "\r\n"); } return input; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Analyzers/Core/Analyzers/UseConditionalExpression/UseConditionalExpressionHelpers.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Diagnostics.CodeAnalysis; using Microsoft.CodeAnalysis.LanguageServices; using Microsoft.CodeAnalysis.Operations; namespace Microsoft.CodeAnalysis.UseConditionalExpression { internal static partial class UseConditionalExpressionHelpers { public static bool CanConvert( ISyntaxFacts syntaxFacts, IConditionalOperation ifOperation, IOperation whenTrue, IOperation whenFalse) { // Will likely not work as intended if the if directive spans any preprocessor directives. So // do not offer for now. Note: we pass in both the node for the ifOperation and the // whenFalse portion. The whenFalse portion isn't necessary under the ifOperation. For // example in: // // ```c# // #if DEBUG // if (check) // return 3; // #endif // return 2; // ``` // // In this case, we want to see that this cross the `#endif` if (syntaxFacts.SpansPreprocessorDirective(ifOperation.Syntax, whenFalse.Syntax)) { return false; } // User may have comments on the when-true/when-false statements. These statements can // be very important. Often they indicate why the true/false branches are important in // the first place. We don't have any place to put these, so we don't offer here. if (HasRegularComments(syntaxFacts, whenTrue.Syntax) || HasRegularComments(syntaxFacts, whenFalse.Syntax)) { return false; } return true; } /// <summary> /// Will unwrap a block with a single statement in it to just that block. Used so we can /// support both <c>if (expr) { statement }</c> and <c>if (expr) statement</c> /// </summary> [return: NotNullIfNotNull("statement")] public static IOperation? UnwrapSingleStatementBlock(IOperation? statement) => statement is IBlockOperation block && block.Operations.Length == 1 ? block.Operations[0] : statement; public static IOperation UnwrapImplicitConversion(IOperation value) => value is IConversionOperation conversion && conversion.IsImplicit ? conversion.Operand : value; public static bool HasRegularComments(ISyntaxFacts syntaxFacts, SyntaxNode syntax) => HasRegularCommentTrivia(syntaxFacts, syntax.GetLeadingTrivia()) || HasRegularCommentTrivia(syntaxFacts, syntax.GetTrailingTrivia()); public static bool HasRegularCommentTrivia(ISyntaxFacts syntaxFacts, SyntaxTriviaList triviaList) { foreach (var trivia in triviaList) { if (syntaxFacts.IsRegularComment(trivia)) { return true; } } return false; } public static bool HasInconvertibleThrowStatement( ISyntaxFacts syntaxFacts, bool isRef, IThrowOperation? trueThrow, IThrowOperation? falseThrow) { // Can't convert to `x ? throw ... : throw ...` as there's no best common type between the two (even when // throwing the same exception type). if (trueThrow != null && falseThrow != null) return true; var anyThrow = trueThrow ?? falseThrow; if (anyThrow != null) { // can only convert to a conditional expression if the lang supports throw-exprs. if (!syntaxFacts.SupportsThrowExpression(anyThrow.Syntax.SyntaxTree.Options)) return true; // `ref` can't be used with `throw`. if (isRef) return true; } return false; } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Diagnostics.CodeAnalysis; using Microsoft.CodeAnalysis.LanguageServices; using Microsoft.CodeAnalysis.Operations; namespace Microsoft.CodeAnalysis.UseConditionalExpression { internal static partial class UseConditionalExpressionHelpers { public static bool CanConvert( ISyntaxFacts syntaxFacts, IConditionalOperation ifOperation, IOperation whenTrue, IOperation whenFalse) { // Will likely not work as intended if the if directive spans any preprocessor directives. So // do not offer for now. Note: we pass in both the node for the ifOperation and the // whenFalse portion. The whenFalse portion isn't necessary under the ifOperation. For // example in: // // ```c# // #if DEBUG // if (check) // return 3; // #endif // return 2; // ``` // // In this case, we want to see that this cross the `#endif` if (syntaxFacts.SpansPreprocessorDirective(ifOperation.Syntax, whenFalse.Syntax)) { return false; } // User may have comments on the when-true/when-false statements. These statements can // be very important. Often they indicate why the true/false branches are important in // the first place. We don't have any place to put these, so we don't offer here. if (HasRegularComments(syntaxFacts, whenTrue.Syntax) || HasRegularComments(syntaxFacts, whenFalse.Syntax)) { return false; } return true; } /// <summary> /// Will unwrap a block with a single statement in it to just that block. Used so we can /// support both <c>if (expr) { statement }</c> and <c>if (expr) statement</c> /// </summary> [return: NotNullIfNotNull("statement")] public static IOperation? UnwrapSingleStatementBlock(IOperation? statement) => statement is IBlockOperation block && block.Operations.Length == 1 ? block.Operations[0] : statement; public static IOperation UnwrapImplicitConversion(IOperation value) => value is IConversionOperation conversion && conversion.IsImplicit ? conversion.Operand : value; public static bool HasRegularComments(ISyntaxFacts syntaxFacts, SyntaxNode syntax) => HasRegularCommentTrivia(syntaxFacts, syntax.GetLeadingTrivia()) || HasRegularCommentTrivia(syntaxFacts, syntax.GetTrailingTrivia()); public static bool HasRegularCommentTrivia(ISyntaxFacts syntaxFacts, SyntaxTriviaList triviaList) { foreach (var trivia in triviaList) { if (syntaxFacts.IsRegularComment(trivia)) { return true; } } return false; } public static bool HasInconvertibleThrowStatement( ISyntaxFacts syntaxFacts, bool isRef, IThrowOperation? trueThrow, IThrowOperation? falseThrow) { // Can't convert to `x ? throw ... : throw ...` as there's no best common type between the two (even when // throwing the same exception type). if (trueThrow != null && falseThrow != null) return true; var anyThrow = trueThrow ?? falseThrow; if (anyThrow != null) { // can only convert to a conditional expression if the lang supports throw-exprs. if (!syntaxFacts.SupportsThrowExpression(anyThrow.Syntax.SyntaxTree.Options)) return true; // `ref` can't be used with `throw`. if (isRef) return true; } return false; } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/EditorFeatures/TestUtilities/Workspaces/TestSymbolRenamedCodeActionOperationFactoryWorkspaceService.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Composition; using Microsoft.CodeAnalysis.CodeActions; using Microsoft.CodeAnalysis.CodeActions.WorkspaceServices; using Microsoft.CodeAnalysis.Host.Mef; namespace Microsoft.CodeAnalysis.Editor.UnitTests.Workspaces { [ExportWorkspaceService(typeof(ISymbolRenamedCodeActionOperationFactoryWorkspaceService), ServiceLayer.Test), Shared, PartNotDiscoverable] public class TestSymbolRenamedCodeActionOperationFactoryWorkspaceService : ISymbolRenamedCodeActionOperationFactoryWorkspaceService { [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public TestSymbolRenamedCodeActionOperationFactoryWorkspaceService() { } public CodeActionOperation CreateSymbolRenamedOperation(ISymbol symbol, string newName, Solution startingSolution, Solution updatedSolution) => new Operation(symbol, newName, startingSolution, updatedSolution); public class Operation : CodeActionOperation { public ISymbol _symbol; public string _newName; public Solution _startingSolution; public Solution _updatedSolution; public Operation(ISymbol symbol, string newName, Solution startingSolution, Solution updatedSolution) { _symbol = symbol; _newName = newName; _startingSolution = startingSolution; _updatedSolution = updatedSolution; } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Composition; using Microsoft.CodeAnalysis.CodeActions; using Microsoft.CodeAnalysis.CodeActions.WorkspaceServices; using Microsoft.CodeAnalysis.Host.Mef; namespace Microsoft.CodeAnalysis.Editor.UnitTests.Workspaces { [ExportWorkspaceService(typeof(ISymbolRenamedCodeActionOperationFactoryWorkspaceService), ServiceLayer.Test), Shared, PartNotDiscoverable] public class TestSymbolRenamedCodeActionOperationFactoryWorkspaceService : ISymbolRenamedCodeActionOperationFactoryWorkspaceService { [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public TestSymbolRenamedCodeActionOperationFactoryWorkspaceService() { } public CodeActionOperation CreateSymbolRenamedOperation(ISymbol symbol, string newName, Solution startingSolution, Solution updatedSolution) => new Operation(symbol, newName, startingSolution, updatedSolution); public class Operation : CodeActionOperation { public ISymbol _symbol; public string _newName; public Solution _startingSolution; public Solution _updatedSolution; public Operation(ISymbol symbol, string newName, Solution startingSolution, Solution updatedSolution) { _symbol = symbol; _newName = newName; _startingSolution = startingSolution; _updatedSolution = updatedSolution; } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/VisualStudio/Xaml/Impl/Features/OrganizeImports/IXamlOrganizeNamespacesService.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis; namespace Microsoft.CodeAnalysis.Editor.Xaml.Features.OrganizeImports { internal interface IXamlOrganizeNamespacesService { /// <returns>Returns the rewritten document, or the document passed in if no changes were made. If cancellation /// was observed, it returns null.</returns> Task<Document> OrganizeNamespacesAsync(Document document, bool placeSystemNamespaceFirst, CancellationToken cancellationToken); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis; namespace Microsoft.CodeAnalysis.Editor.Xaml.Features.OrganizeImports { internal interface IXamlOrganizeNamespacesService { /// <returns>Returns the rewritten document, or the document passed in if no changes were made. If cancellation /// was observed, it returns null.</returns> Task<Document> OrganizeNamespacesAsync(Document document, bool placeSystemNamespaceFirst, CancellationToken cancellationToken); } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/CSharp/Test/IOperation/IOperation/IOperationTests_IReturnStatement.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Diagnostics; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.CSharp.Test.Utilities; using Microsoft.CodeAnalysis.Operations; using Microsoft.CodeAnalysis.Test.Utilities; using Roslyn.Test.Utilities; using Xunit; namespace Microsoft.CodeAnalysis.CSharp.UnitTests { public class IOperationTests_IReturnStatement : SemanticModelTestBase { [CompilerTrait(CompilerFeature.IOperation)] [Fact] public void SimpleReturnFromRegularMethod() { string source = @" class C { static void Method() { /*<bind>*/return;/*</bind>*/ } } "; string expectedOperationTree = @" IReturnOperation (OperationKind.Return, Type: null) (Syntax: 'return;') ReturnedValue: null "; var expectedDiagnostics = DiagnosticDescription.None; VerifyOperationTreeAndDiagnosticsForTest<ReturnStatementSyntax>(source, expectedOperationTree, expectedDiagnostics); } [CompilerTrait(CompilerFeature.IOperation)] [Fact] public void ReturnWithValueFromRegularMethod() { string source = @" class C { static bool Method() { /*<bind>*/return true;/*</bind>*/ } } "; string expectedOperationTree = @" IReturnOperation (OperationKind.Return, Type: null) (Syntax: 'return true;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') "; var expectedDiagnostics = DiagnosticDescription.None; VerifyOperationTreeAndDiagnosticsForTest<ReturnStatementSyntax>(source, expectedOperationTree, expectedDiagnostics); } [CompilerTrait(CompilerFeature.IOperation)] [Fact] public void YieldReturnFromRegularMethod() { string source = @" using System.Collections.Generic; class C { static IEnumerable<int> Method() { /*<bind>*/yield return 0;/*</bind>*/ } } "; string expectedOperationTree = @" IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 0;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 0) (Syntax: '0') "; var expectedDiagnostics = DiagnosticDescription.None; VerifyOperationTreeAndDiagnosticsForTest<YieldStatementSyntax>(source, expectedOperationTree, expectedDiagnostics); } [CompilerTrait(CompilerFeature.IOperation)] [Fact] public void YieldBreakFromRegularMethod() { string source = @" using System.Collections.Generic; class C { static IEnumerable<int> Method() { yield return 0; /*<bind>*/yield break;/*</bind>*/ } } "; string expectedOperationTree = @" IReturnOperation (OperationKind.YieldBreak, Type: null) (Syntax: 'yield break;') ReturnedValue: null "; var expectedDiagnostics = DiagnosticDescription.None; VerifyOperationTreeAndDiagnosticsForTest<YieldStatementSyntax>(source, expectedOperationTree, expectedDiagnostics); } [CompilerTrait(CompilerFeature.IOperation)] [Fact, WorkItem(7299, "https://github.com/dotnet/roslyn/issues/7299")] public void Return_ConstantConversions_01() { string source = @" class C { static float Method() { /*<bind>*/return 0.0;/*</bind>*/ } } "; string expectedOperationTree = @" IReturnOperation (OperationKind.Return, Type: null, IsInvalid) (Syntax: 'return 0.0;') ReturnedValue: IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Single, Constant: 0, IsInvalid, IsImplicit) (Syntax: '0.0') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: True, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Operand: ILiteralOperation (OperationKind.Literal, Type: System.Double, Constant: 0, IsInvalid) (Syntax: '0.0') "; var expectedDiagnostics = new DiagnosticDescription[] { // (6,26): error CS0664: Literal of type double cannot be implicitly converted to type 'float'; use an 'F' suffix to create a literal of this type // /*<bind>*/return 0.0;/*</bind>*/ Diagnostic(ErrorCode.ERR_LiteralDoubleCast, "0.0").WithArguments("F", "float").WithLocation(6, 26) }; VerifyOperationTreeAndDiagnosticsForTest<ReturnStatementSyntax>(source, expectedOperationTree, expectedDiagnostics); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_01() { var source = @" class C { void F() /*<bind>*/{ return; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Exit Predecessors: [B0] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_02() { var source = @" class C { int F() /*<bind>*/{ return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Next (Return) Block[B2] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B2] - Exit Predecessors: [B1] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_03() { var source = @" class C { void F(bool a) /*<bind>*/{ return; a = true; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics( // (7,9): warning CS0162: Unreachable code detected // a = true; Diagnostic(ErrorCode.WRN_UnreachableCode, "a").WithLocation(7, 9) ); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B2] Block[B1] - Block [UnReachable] Predecessors (0) Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B2] Block[B2] - Exit Predecessors: [B0] [B1] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_04() { var source = @" class C { int F(bool a) /*<bind>*/{ return 1; a = true; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics( // (7,9): warning CS0162: Unreachable code detected // a = true; Diagnostic(ErrorCode.WRN_UnreachableCode, "a").WithLocation(7, 9) ); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Next (Return) Block[B3] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B2] - Block [UnReachable] Predecessors (0) Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B3] Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_05() { var source = @" class C { object F(object a, object b) /*<bind>*/{ return a ?? b; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { CaptureIds: [1] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (1) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Object) (Syntax: 'a') Jump if True (Regular) to Block[B3] IIsNullOperation (OperationKind.IsNull, Type: System.Boolean, IsImplicit) (Syntax: 'a') Operand: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Object, IsImplicit) (Syntax: 'a') Leaving: {R2} Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Object, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R2} } Block[B3] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'b') Value: IParameterReferenceOperation: b (OperationKind.ParameterReference, Type: System.Object) (Syntax: 'b') Next (Regular) Block[B4] Block[B4] - Block Predecessors: [B2] [B3] Statements (0) Next (Return) Block[B5] IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Object, IsImplicit) (Syntax: 'a ?? b') Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_06() { var source = @" class C { int F(bool a) /*<bind>*/{ if (a) { return 1; } else { return 2; } }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B3] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Block[B4] - Exit Predecessors: [B2] [B3] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_07() { var source = @" class C { void F(bool a) /*<bind>*/{ if (a) { return; } else { a = true; } }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B2] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B3] Block[B2] - Block Predecessors: [B1] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B3] Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_08() { var source = @" class C { void F(bool a) /*<bind>*/{ if (a) { a = false; } else { return; } a = true; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (2) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = false;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = false') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: False) (Syntax: 'false') IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B3] Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_09() { var source = @" class C { int F(bool a, bool b) /*<bind>*/{ if (a) { b = false; } else { b = true; } return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'b = false;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'b = false') Left: IParameterReferenceOperation: b (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'b') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: False) (Syntax: 'false') Next (Regular) Block[B4] Block[B3] - Block Predecessors: [B1] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'b = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'b = true') Left: IParameterReferenceOperation: b (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'b') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B4] Block[B4] - Block Predecessors: [B2] [B3] Statements (0) Next (Return) Block[B5] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B5] - Exit Predecessors: [B4] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_10() { var source = @" class C { int F() /*<bind>*/{ return 1; return 2; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics( // (7,9): warning CS0162: Unreachable code detected // return 2; Diagnostic(ErrorCode.WRN_UnreachableCode, "return").WithLocation(7, 9) ); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Next (Return) Block[B3] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B2] - Block [UnReachable] Predecessors (0) Statements (0) Next (Return) Block[B3] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_11() { var source = @" class C { void F() /*<bind>*/{ return; return; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics( // (7,9): warning CS0162: Unreachable code detected // return; Diagnostic(ErrorCode.WRN_UnreachableCode, "return").WithLocation(7, 9) ); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Exit Predecessors: [B0] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_12() { var source = @" class C { int F(int a) /*<bind>*/{ { int b = 0; a = b; } return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { Locals: [System.Int32 b] Block[B1] - Block Predecessors: [B0] Statements (2) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'b = 0') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: System.Int32, IsImplicit) (Syntax: 'b = 0') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 0) (Syntax: '0') IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = b;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'a = b') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Int32) (Syntax: 'a') Right: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: System.Int32) (Syntax: 'b') Next (Regular) Block[B2] Leaving: {R1} } Block[B2] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B3] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B3] - Exit Predecessors: [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_13() { var source = @" class C { int F(int a) /*<bind>*/{ a = 0; try { return 1; } finally { a = 2; } }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = 0;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'a = 0') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Int32) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 0) (Syntax: '0') Next (Regular) Block[B2] Entering: {R1} {R2} .try {R1, R2} { Block[B2] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Finalizing: {R3} Leaving: {R2} {R1} } .finally {R3} { Block[B3] - Block Predecessors (0) Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = 2;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'a = 2') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Int32) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Next (StructuredExceptionHandling) Block[null] } Block[B4] - Exit Predecessors: [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_14() { var source = @" class C { int F(int a) /*<bind>*/{ try { a = 2; } catch { } return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .try {R1, R2} { Block[B1] - Block Predecessors: [B0] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = 2;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'a = 2') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Int32) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Next (Regular) Block[B3] Leaving: {R2} {R1} } .catch {R3} (System.Object) { Block[B2] - Block Predecessors (0) Statements (0) Next (Regular) Block[B3] Leaving: {R3} {R1} } Block[B3] - Block Predecessors: [B1] [B2] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B4] - Exit Predecessors: [B3] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_15() { var source = @" class C { int F(int a) /*<bind>*/{ try { a = 2; } finally { a = 3; } return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .try {R1, R2} { Block[B1] - Block Predecessors: [B0] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = 2;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'a = 2') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Int32) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Next (Regular) Block[B3] Finalizing: {R3} Leaving: {R2} {R1} } .finally {R3} { Block[B2] - Block Predecessors (0) Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = 3;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'a = 3') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Int32) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 3) (Syntax: '3') Next (StructuredExceptionHandling) Block[null] } Block[B3] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B4] - Exit Predecessors: [B3] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_16() { var source = @" class C { int F(bool a) /*<bind>*/{ do { } while (a); return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] [B1] Statements (0) Jump if True (Regular) to Block[B1] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B3] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B3] - Exit Predecessors: [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_17() { var source = @" class C { int F(bool a) /*<bind>*/{ if (a) return 1; goto label1; label1: goto label2; label2: return 2; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B3] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Block[B4] - Exit Predecessors: [B2] [B3] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_18() { var source = @" class C { int F(bool a) /*<bind>*/{ a = true; goto label1; label2: if (a) return 1; return 2; label1: goto label2; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B3] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Block[B4] - Exit Predecessors: [B2] [B3] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_01() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F() /*<bind>*/{ yield break; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Exit Predecessors: [B0] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_02() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F() /*<bind>*/{ yield return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (1) IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 1;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Next (Regular) Block[B2] Block[B2] - Exit Predecessors: [B1] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_03() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F(bool a) /*<bind>*/{ yield break; a = true; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics( // (7,9): warning CS0162: Unreachable code detected // a = true; Diagnostic(ErrorCode.WRN_UnreachableCode, "a").WithLocation(7, 9) ); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B2] Block[B1] - Block [UnReachable] Predecessors (0) Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B2] Block[B2] - Exit Predecessors: [B0] [B1] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_04() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F(bool a) /*<bind>*/{ yield return 1; a = true; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (2) IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 1;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B2] Block[B2] - Exit Predecessors: [B1] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_05() { var source = @" class C { System.Collections.Generic.IEnumerable<object> F(object a, object b) /*<bind>*/{ yield return a ?? b; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { CaptureIds: [1] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (1) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Object) (Syntax: 'a') Jump if True (Regular) to Block[B3] IIsNullOperation (OperationKind.IsNull, Type: System.Boolean, IsImplicit) (Syntax: 'a') Operand: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Object, IsImplicit) (Syntax: 'a') Leaving: {R2} Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Object, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R2} } Block[B3] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'b') Value: IParameterReferenceOperation: b (OperationKind.ParameterReference, Type: System.Object) (Syntax: 'b') Next (Regular) Block[B4] Block[B4] - Block Predecessors: [B2] [B3] Statements (1) IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return a ?? b;') ReturnedValue: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Object, IsImplicit) (Syntax: 'a ?? b') Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_06() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F(bool a) /*<bind>*/{ if (a) { yield return 1; } else { yield return 2; } }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (1) IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 1;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Next (Regular) Block[B4] Block[B3] - Block Predecessors: [B1] Statements (1) IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 2;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Next (Regular) Block[B4] Block[B4] - Exit Predecessors: [B2] [B3] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_07() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F(bool a) /*<bind>*/{ if (a) { yield break; } else { a = true; } }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B2] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B3] Block[B2] - Block Predecessors: [B1] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B3] Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_08() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F(bool a) /*<bind>*/{ if (a) { a = false; } else { yield break; } a = true; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (2) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = false;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = false') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: False) (Syntax: 'false') IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B3] Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_09() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F() /*<bind>*/{ yield return 1; yield return 2; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (2) IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 1;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 2;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Next (Regular) Block[B2] Block[B2] - Exit Predecessors: [B1] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_10() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F() /*<bind>*/{ yield break; yield break; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics( // (7,9): warning CS0162: Unreachable code detected // yield break; Diagnostic(ErrorCode.WRN_UnreachableCode, "yield").WithLocation(7, 9) ); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Exit Predecessors: [B0] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Diagnostics; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.CSharp.Test.Utilities; using Microsoft.CodeAnalysis.Operations; using Microsoft.CodeAnalysis.Test.Utilities; using Roslyn.Test.Utilities; using Xunit; namespace Microsoft.CodeAnalysis.CSharp.UnitTests { public class IOperationTests_IReturnStatement : SemanticModelTestBase { [CompilerTrait(CompilerFeature.IOperation)] [Fact] public void SimpleReturnFromRegularMethod() { string source = @" class C { static void Method() { /*<bind>*/return;/*</bind>*/ } } "; string expectedOperationTree = @" IReturnOperation (OperationKind.Return, Type: null) (Syntax: 'return;') ReturnedValue: null "; var expectedDiagnostics = DiagnosticDescription.None; VerifyOperationTreeAndDiagnosticsForTest<ReturnStatementSyntax>(source, expectedOperationTree, expectedDiagnostics); } [CompilerTrait(CompilerFeature.IOperation)] [Fact] public void ReturnWithValueFromRegularMethod() { string source = @" class C { static bool Method() { /*<bind>*/return true;/*</bind>*/ } } "; string expectedOperationTree = @" IReturnOperation (OperationKind.Return, Type: null) (Syntax: 'return true;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') "; var expectedDiagnostics = DiagnosticDescription.None; VerifyOperationTreeAndDiagnosticsForTest<ReturnStatementSyntax>(source, expectedOperationTree, expectedDiagnostics); } [CompilerTrait(CompilerFeature.IOperation)] [Fact] public void YieldReturnFromRegularMethod() { string source = @" using System.Collections.Generic; class C { static IEnumerable<int> Method() { /*<bind>*/yield return 0;/*</bind>*/ } } "; string expectedOperationTree = @" IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 0;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 0) (Syntax: '0') "; var expectedDiagnostics = DiagnosticDescription.None; VerifyOperationTreeAndDiagnosticsForTest<YieldStatementSyntax>(source, expectedOperationTree, expectedDiagnostics); } [CompilerTrait(CompilerFeature.IOperation)] [Fact] public void YieldBreakFromRegularMethod() { string source = @" using System.Collections.Generic; class C { static IEnumerable<int> Method() { yield return 0; /*<bind>*/yield break;/*</bind>*/ } } "; string expectedOperationTree = @" IReturnOperation (OperationKind.YieldBreak, Type: null) (Syntax: 'yield break;') ReturnedValue: null "; var expectedDiagnostics = DiagnosticDescription.None; VerifyOperationTreeAndDiagnosticsForTest<YieldStatementSyntax>(source, expectedOperationTree, expectedDiagnostics); } [CompilerTrait(CompilerFeature.IOperation)] [Fact, WorkItem(7299, "https://github.com/dotnet/roslyn/issues/7299")] public void Return_ConstantConversions_01() { string source = @" class C { static float Method() { /*<bind>*/return 0.0;/*</bind>*/ } } "; string expectedOperationTree = @" IReturnOperation (OperationKind.Return, Type: null, IsInvalid) (Syntax: 'return 0.0;') ReturnedValue: IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Single, Constant: 0, IsInvalid, IsImplicit) (Syntax: '0.0') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: True, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Operand: ILiteralOperation (OperationKind.Literal, Type: System.Double, Constant: 0, IsInvalid) (Syntax: '0.0') "; var expectedDiagnostics = new DiagnosticDescription[] { // (6,26): error CS0664: Literal of type double cannot be implicitly converted to type 'float'; use an 'F' suffix to create a literal of this type // /*<bind>*/return 0.0;/*</bind>*/ Diagnostic(ErrorCode.ERR_LiteralDoubleCast, "0.0").WithArguments("F", "float").WithLocation(6, 26) }; VerifyOperationTreeAndDiagnosticsForTest<ReturnStatementSyntax>(source, expectedOperationTree, expectedDiagnostics); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_01() { var source = @" class C { void F() /*<bind>*/{ return; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Exit Predecessors: [B0] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_02() { var source = @" class C { int F() /*<bind>*/{ return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Next (Return) Block[B2] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B2] - Exit Predecessors: [B1] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_03() { var source = @" class C { void F(bool a) /*<bind>*/{ return; a = true; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics( // (7,9): warning CS0162: Unreachable code detected // a = true; Diagnostic(ErrorCode.WRN_UnreachableCode, "a").WithLocation(7, 9) ); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B2] Block[B1] - Block [UnReachable] Predecessors (0) Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B2] Block[B2] - Exit Predecessors: [B0] [B1] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_04() { var source = @" class C { int F(bool a) /*<bind>*/{ return 1; a = true; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics( // (7,9): warning CS0162: Unreachable code detected // a = true; Diagnostic(ErrorCode.WRN_UnreachableCode, "a").WithLocation(7, 9) ); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Next (Return) Block[B3] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B2] - Block [UnReachable] Predecessors (0) Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B3] Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_05() { var source = @" class C { object F(object a, object b) /*<bind>*/{ return a ?? b; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { CaptureIds: [1] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (1) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Object) (Syntax: 'a') Jump if True (Regular) to Block[B3] IIsNullOperation (OperationKind.IsNull, Type: System.Boolean, IsImplicit) (Syntax: 'a') Operand: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Object, IsImplicit) (Syntax: 'a') Leaving: {R2} Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Object, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R2} } Block[B3] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'b') Value: IParameterReferenceOperation: b (OperationKind.ParameterReference, Type: System.Object) (Syntax: 'b') Next (Regular) Block[B4] Block[B4] - Block Predecessors: [B2] [B3] Statements (0) Next (Return) Block[B5] IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Object, IsImplicit) (Syntax: 'a ?? b') Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_06() { var source = @" class C { int F(bool a) /*<bind>*/{ if (a) { return 1; } else { return 2; } }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B3] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Block[B4] - Exit Predecessors: [B2] [B3] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_07() { var source = @" class C { void F(bool a) /*<bind>*/{ if (a) { return; } else { a = true; } }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B2] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B3] Block[B2] - Block Predecessors: [B1] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B3] Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_08() { var source = @" class C { void F(bool a) /*<bind>*/{ if (a) { a = false; } else { return; } a = true; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (2) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = false;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = false') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: False) (Syntax: 'false') IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B3] Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_09() { var source = @" class C { int F(bool a, bool b) /*<bind>*/{ if (a) { b = false; } else { b = true; } return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'b = false;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'b = false') Left: IParameterReferenceOperation: b (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'b') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: False) (Syntax: 'false') Next (Regular) Block[B4] Block[B3] - Block Predecessors: [B1] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'b = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'b = true') Left: IParameterReferenceOperation: b (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'b') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B4] Block[B4] - Block Predecessors: [B2] [B3] Statements (0) Next (Return) Block[B5] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B5] - Exit Predecessors: [B4] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_10() { var source = @" class C { int F() /*<bind>*/{ return 1; return 2; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics( // (7,9): warning CS0162: Unreachable code detected // return 2; Diagnostic(ErrorCode.WRN_UnreachableCode, "return").WithLocation(7, 9) ); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Next (Return) Block[B3] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B2] - Block [UnReachable] Predecessors (0) Statements (0) Next (Return) Block[B3] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_11() { var source = @" class C { void F() /*<bind>*/{ return; return; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics( // (7,9): warning CS0162: Unreachable code detected // return; Diagnostic(ErrorCode.WRN_UnreachableCode, "return").WithLocation(7, 9) ); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Exit Predecessors: [B0] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_12() { var source = @" class C { int F(int a) /*<bind>*/{ { int b = 0; a = b; } return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { Locals: [System.Int32 b] Block[B1] - Block Predecessors: [B0] Statements (2) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'b = 0') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: System.Int32, IsImplicit) (Syntax: 'b = 0') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 0) (Syntax: '0') IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = b;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'a = b') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Int32) (Syntax: 'a') Right: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: System.Int32) (Syntax: 'b') Next (Regular) Block[B2] Leaving: {R1} } Block[B2] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B3] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B3] - Exit Predecessors: [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_13() { var source = @" class C { int F(int a) /*<bind>*/{ a = 0; try { return 1; } finally { a = 2; } }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = 0;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'a = 0') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Int32) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 0) (Syntax: '0') Next (Regular) Block[B2] Entering: {R1} {R2} .try {R1, R2} { Block[B2] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Finalizing: {R3} Leaving: {R2} {R1} } .finally {R3} { Block[B3] - Block Predecessors (0) Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = 2;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'a = 2') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Int32) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Next (StructuredExceptionHandling) Block[null] } Block[B4] - Exit Predecessors: [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_14() { var source = @" class C { int F(int a) /*<bind>*/{ try { a = 2; } catch { } return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .try {R1, R2} { Block[B1] - Block Predecessors: [B0] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = 2;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'a = 2') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Int32) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Next (Regular) Block[B3] Leaving: {R2} {R1} } .catch {R3} (System.Object) { Block[B2] - Block Predecessors (0) Statements (0) Next (Regular) Block[B3] Leaving: {R3} {R1} } Block[B3] - Block Predecessors: [B1] [B2] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B4] - Exit Predecessors: [B3] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_15() { var source = @" class C { int F(int a) /*<bind>*/{ try { a = 2; } finally { a = 3; } return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .try {R1, R2} { Block[B1] - Block Predecessors: [B0] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = 2;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'a = 2') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Int32) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Next (Regular) Block[B3] Finalizing: {R3} Leaving: {R2} {R1} } .finally {R3} { Block[B2] - Block Predecessors (0) Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = 3;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'a = 3') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Int32) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 3) (Syntax: '3') Next (StructuredExceptionHandling) Block[null] } Block[B3] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B4] - Exit Predecessors: [B3] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_16() { var source = @" class C { int F(bool a) /*<bind>*/{ do { } while (a); return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] [B1] Statements (0) Jump if True (Regular) to Block[B1] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B3] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B3] - Exit Predecessors: [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_17() { var source = @" class C { int F(bool a) /*<bind>*/{ if (a) return 1; goto label1; label1: goto label2; label2: return 2; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B3] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Block[B4] - Exit Predecessors: [B2] [B3] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void ReturnFlow_18() { var source = @" class C { int F(bool a) /*<bind>*/{ a = true; goto label1; label2: if (a) return 1; return 2; label1: goto label2; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Block[B3] - Block Predecessors: [B1] Statements (0) Next (Return) Block[B4] ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Block[B4] - Exit Predecessors: [B2] [B3] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_01() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F() /*<bind>*/{ yield break; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Exit Predecessors: [B0] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_02() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F() /*<bind>*/{ yield return 1; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (1) IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 1;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Next (Regular) Block[B2] Block[B2] - Exit Predecessors: [B1] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_03() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F(bool a) /*<bind>*/{ yield break; a = true; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics( // (7,9): warning CS0162: Unreachable code detected // a = true; Diagnostic(ErrorCode.WRN_UnreachableCode, "a").WithLocation(7, 9) ); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B2] Block[B1] - Block [UnReachable] Predecessors (0) Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B2] Block[B2] - Exit Predecessors: [B0] [B1] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_04() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F(bool a) /*<bind>*/{ yield return 1; a = true; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (2) IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 1;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B2] Block[B2] - Exit Predecessors: [B1] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_05() { var source = @" class C { System.Collections.Generic.IEnumerable<object> F(object a, object b) /*<bind>*/{ yield return a ?? b; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { CaptureIds: [1] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (1) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Object) (Syntax: 'a') Jump if True (Regular) to Block[B3] IIsNullOperation (OperationKind.IsNull, Type: System.Boolean, IsImplicit) (Syntax: 'a') Operand: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Object, IsImplicit) (Syntax: 'a') Leaving: {R2} Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Object, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R2} } Block[B3] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'b') Value: IParameterReferenceOperation: b (OperationKind.ParameterReference, Type: System.Object) (Syntax: 'b') Next (Regular) Block[B4] Block[B4] - Block Predecessors: [B2] [B3] Statements (1) IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return a ?? b;') ReturnedValue: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Object, IsImplicit) (Syntax: 'a ?? b') Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_06() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F(bool a) /*<bind>*/{ if (a) { yield return 1; } else { yield return 2; } }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (1) IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 1;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Next (Regular) Block[B4] Block[B3] - Block Predecessors: [B1] Statements (1) IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 2;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Next (Regular) Block[B4] Block[B4] - Exit Predecessors: [B2] [B3] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_07() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F(bool a) /*<bind>*/{ if (a) { yield break; } else { a = true; } }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B2] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B3] Block[B2] - Block Predecessors: [B1] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B3] Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_08() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F(bool a) /*<bind>*/{ if (a) { a = false; } else { yield break; } a = true; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (0) Jump if False (Regular) to Block[B3] IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Next (Regular) Block[B2] Block[B2] - Block Predecessors: [B1] Statements (2) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = false;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = false') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: False) (Syntax: 'false') IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'a = true;') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Boolean) (Syntax: 'a = true') Left: IParameterReferenceOperation: a (OperationKind.ParameterReference, Type: System.Boolean) (Syntax: 'a') Right: ILiteralOperation (OperationKind.Literal, Type: System.Boolean, Constant: True) (Syntax: 'true') Next (Regular) Block[B3] Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_09() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F() /*<bind>*/{ yield return 1; yield return 2; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics(); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Block Predecessors: [B0] Statements (2) IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 1;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') IReturnOperation (OperationKind.YieldReturn, Type: null) (Syntax: 'yield return 2;') ReturnedValue: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Next (Regular) Block[B2] Block[B2] - Exit Predecessors: [B1] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } [CompilerTrait(CompilerFeature.IOperation, CompilerFeature.Dataflow)] [Fact] public void YieldFlow_10() { var source = @" class C { System.Collections.Generic.IEnumerable<int> F() /*<bind>*/{ yield break; yield break; }/*</bind>*/ }"; var compilation = CreateCompilation(source); compilation.VerifyDiagnostics( // (7,9): warning CS0162: Unreachable code detected // yield break; Diagnostic(ErrorCode.WRN_UnreachableCode, "yield").WithLocation(7, 9) ); string expectedGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Block[B1] - Exit Predecessors: [B0] Statements (0) "; VerifyFlowGraphForTest<BlockSyntax>(compilation, expectedGraph); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/Core/Portable/MetadataReader/UnsupportedSignatureContent.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis { internal class UnsupportedSignatureContent : Exception { } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using Microsoft.CodeAnalysis.Text; namespace Microsoft.CodeAnalysis { internal class UnsupportedSignatureContent : Exception { } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Analyzers/Core/CodeFixes/AddAccessibilityModifiers/AbstractAddAccessibilityModifiersCodeFixProvider.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Immutable; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeActions; using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Editing; using Microsoft.CodeAnalysis.Shared.Extensions; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.AddAccessibilityModifiers { internal abstract class AbstractAddAccessibilityModifiersCodeFixProvider : SyntaxEditorBasedCodeFixProvider { protected abstract SyntaxNode MapToDeclarator(SyntaxNode declaration); public sealed override ImmutableArray<string> FixableDiagnosticIds => ImmutableArray.Create(IDEDiagnosticIds.AddAccessibilityModifiersDiagnosticId); internal sealed override CodeFixCategory CodeFixCategory => CodeFixCategory.CodeStyle; public sealed override Task RegisterCodeFixesAsync(CodeFixContext context) { var diagnostic = context.Diagnostics.First(); #if CODE_STYLE // 'CodeActionPriority' is not a public API, hence not supported in CodeStyle layer. var codeAction = new MyCodeAction(c => FixAsync(context.Document, context.Diagnostics.First(), c)); #else var priority = diagnostic.Severity == DiagnosticSeverity.Hidden ? CodeActionPriority.Low : CodeActionPriority.Medium; var codeAction = new MyCodeAction(priority, c => FixAsync(context.Document, context.Diagnostics.First(), c)); #endif context.RegisterCodeFix( codeAction, context.Diagnostics); return Task.CompletedTask; } protected sealed override async Task FixAllAsync( Document document, ImmutableArray<Diagnostic> diagnostics, SyntaxEditor editor, CancellationToken cancellationToken) { var semanticModel = await document.GetRequiredSemanticModelAsync(cancellationToken).ConfigureAwait(false); foreach (var diagnostic in diagnostics) { var declaration = diagnostic.AdditionalLocations[0].FindNode(cancellationToken); var declarator = MapToDeclarator(declaration); var symbol = semanticModel.GetDeclaredSymbol(declarator, cancellationToken); Contract.ThrowIfNull(symbol); AddAccessibilityModifiersHelpers.UpdateDeclaration(editor, symbol, declaration); } } private class MyCodeAction : CustomCodeActions.DocumentChangeAction { #if CODE_STYLE // 'CodeActionPriority' is not a public API, hence not supported in CodeStyle layer. public MyCodeAction(Func<CancellationToken, Task<Document>> createChangedDocument) : base(AnalyzersResources.Add_accessibility_modifiers, createChangedDocument, AnalyzersResources.Add_accessibility_modifiers) { } #else public MyCodeAction(CodeActionPriority priority, Func<CancellationToken, Task<Document>> createChangedDocument) : base(AnalyzersResources.Add_accessibility_modifiers, createChangedDocument, AnalyzersResources.Add_accessibility_modifiers) { Priority = priority; } internal override CodeActionPriority Priority { get; } #endif } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Immutable; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeActions; using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Editing; using Microsoft.CodeAnalysis.Shared.Extensions; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.AddAccessibilityModifiers { internal abstract class AbstractAddAccessibilityModifiersCodeFixProvider : SyntaxEditorBasedCodeFixProvider { protected abstract SyntaxNode MapToDeclarator(SyntaxNode declaration); public sealed override ImmutableArray<string> FixableDiagnosticIds => ImmutableArray.Create(IDEDiagnosticIds.AddAccessibilityModifiersDiagnosticId); internal sealed override CodeFixCategory CodeFixCategory => CodeFixCategory.CodeStyle; public sealed override Task RegisterCodeFixesAsync(CodeFixContext context) { var diagnostic = context.Diagnostics.First(); #if CODE_STYLE // 'CodeActionPriority' is not a public API, hence not supported in CodeStyle layer. var codeAction = new MyCodeAction(c => FixAsync(context.Document, context.Diagnostics.First(), c)); #else var priority = diagnostic.Severity == DiagnosticSeverity.Hidden ? CodeActionPriority.Low : CodeActionPriority.Medium; var codeAction = new MyCodeAction(priority, c => FixAsync(context.Document, context.Diagnostics.First(), c)); #endif context.RegisterCodeFix( codeAction, context.Diagnostics); return Task.CompletedTask; } protected sealed override async Task FixAllAsync( Document document, ImmutableArray<Diagnostic> diagnostics, SyntaxEditor editor, CancellationToken cancellationToken) { var semanticModel = await document.GetRequiredSemanticModelAsync(cancellationToken).ConfigureAwait(false); foreach (var diagnostic in diagnostics) { var declaration = diagnostic.AdditionalLocations[0].FindNode(cancellationToken); var declarator = MapToDeclarator(declaration); var symbol = semanticModel.GetDeclaredSymbol(declarator, cancellationToken); Contract.ThrowIfNull(symbol); AddAccessibilityModifiersHelpers.UpdateDeclaration(editor, symbol, declaration); } } private class MyCodeAction : CustomCodeActions.DocumentChangeAction { #if CODE_STYLE // 'CodeActionPriority' is not a public API, hence not supported in CodeStyle layer. public MyCodeAction(Func<CancellationToken, Task<Document>> createChangedDocument) : base(AnalyzersResources.Add_accessibility_modifiers, createChangedDocument, AnalyzersResources.Add_accessibility_modifiers) { } #else public MyCodeAction(CodeActionPriority priority, Func<CancellationToken, Task<Document>> createChangedDocument) : base(AnalyzersResources.Add_accessibility_modifiers, createChangedDocument, AnalyzersResources.Add_accessibility_modifiers) { Priority = priority; } internal override CodeActionPriority Priority { get; } #endif } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/EditorFeatures/CSharp/LanguageServices/CSharpContentTypeLanguageService.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Composition; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.VisualStudio.Utilities; namespace Microsoft.CodeAnalysis.Editor.CSharp.LanguageServices { [ExportContentTypeLanguageService(ContentTypeNames.CSharpContentType, LanguageNames.CSharp), Shared] internal class CSharpContentTypeLanguageService : IContentTypeLanguageService { private readonly IContentTypeRegistryService _contentTypeRegistry; [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public CSharpContentTypeLanguageService(IContentTypeRegistryService contentTypeRegistry) => _contentTypeRegistry = contentTypeRegistry; public IContentType GetDefaultContentType() => _contentTypeRegistry.GetContentType(ContentTypeNames.CSharpContentType); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Composition; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.VisualStudio.Utilities; namespace Microsoft.CodeAnalysis.Editor.CSharp.LanguageServices { [ExportContentTypeLanguageService(ContentTypeNames.CSharpContentType, LanguageNames.CSharp), Shared] internal class CSharpContentTypeLanguageService : IContentTypeLanguageService { private readonly IContentTypeRegistryService _contentTypeRegistry; [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public CSharpContentTypeLanguageService(IContentTypeRegistryService contentTypeRegistry) => _contentTypeRegistry = contentTypeRegistry; public IContentType GetDefaultContentType() => _contentTypeRegistry.GetContentType(ContentTypeNames.CSharpContentType); } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/VisualStudio/Core/Def/Implementation/InheritanceMargin/MarginGlyph/InheritanceMargin.xaml.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Immutable; using System.Linq; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Editor; using Microsoft.CodeAnalysis.Editor.GoToDefinition; using Microsoft.CodeAnalysis.Editor.Host; using Microsoft.CodeAnalysis.Editor.Shared.Utilities; using Microsoft.CodeAnalysis.FindUsages; using Microsoft.CodeAnalysis.Internal.Log; using Microsoft.CodeAnalysis.Shared.TestHooks; using Microsoft.VisualStudio.Shell; using Microsoft.VisualStudio.Text.Classification; using Microsoft.VisualStudio.Text.Editor; using Microsoft.VisualStudio.Utilities; namespace Microsoft.VisualStudio.LanguageServices.Implementation.InheritanceMargin.MarginGlyph { internal partial class InheritanceMargin { private readonly IThreadingContext _threadingContext; private readonly IStreamingFindUsagesPresenter _streamingFindUsagesPresenter; private readonly IUIThreadOperationExecutor _operationExecutor; private readonly Workspace _workspace; private readonly IWpfTextView _textView; private readonly IAsynchronousOperationListener _listener; public InheritanceMargin( IThreadingContext threadingContext, IStreamingFindUsagesPresenter streamingFindUsagesPresenter, ClassificationTypeMap classificationTypeMap, IClassificationFormatMap classificationFormatMap, IUIThreadOperationExecutor operationExecutor, InheritanceMarginTag tag, IWpfTextView textView, IAsynchronousOperationListener listener) { _threadingContext = threadingContext; _streamingFindUsagesPresenter = streamingFindUsagesPresenter; _workspace = tag.Workspace; _operationExecutor = operationExecutor; _textView = textView; _listener = listener; InitializeComponent(); var viewModel = InheritanceMarginViewModel.Create(classificationTypeMap, classificationFormatMap, tag, textView.ZoomLevel); DataContext = viewModel; ContextMenu.DataContext = viewModel; ToolTip = new ToolTip { Content = viewModel.ToolTipTextBlock, Style = (Style)FindResource("ToolTipStyle") }; } private void InheritanceMargin_OnClick(object sender, RoutedEventArgs e) { if (this.ContextMenu != null) { this.ContextMenu.IsOpen = true; e.Handled = true; } } private void TargetMenuItem_OnClick(object sender, RoutedEventArgs e) { if (e.OriginalSource is MenuItem { DataContext: TargetMenuItemViewModel viewModel }) { Logger.Log(FunctionId.InheritanceMargin_NavigateToTarget, KeyValueLogMessage.Create(LogType.UserAction)); var token = _listener.BeginAsyncOperation(nameof(TargetMenuItem_OnClick)); TargetMenuItem_OnClickAsync(viewModel).CompletesAsyncOperation(token); } } private async Task TargetMenuItem_OnClickAsync(TargetMenuItemViewModel viewModel) { using var context = _operationExecutor.BeginExecute( title: EditorFeaturesResources.Navigating, defaultDescription: string.Format(ServicesVSResources.Navigate_to_0, viewModel.DisplayContent), allowCancellation: true, showProgress: false); var cancellationToken = context.UserCancellationToken; var rehydrated = await viewModel.DefinitionItem.TryRehydrateAsync(cancellationToken).ConfigureAwait(false); if (rehydrated == null) return; await _streamingFindUsagesPresenter.TryNavigateToOrPresentItemsAsync( _threadingContext, _workspace, string.Format(EditorFeaturesResources._0_declarations, viewModel.DisplayContent), ImmutableArray.Create<DefinitionItem>(rehydrated), cancellationToken).ConfigureAwait(false); } private void ChangeBorderToHoveringColor() { SetResourceReference(BackgroundProperty, VsBrushes.CommandBarMenuBackgroundGradientKey); SetResourceReference(BorderBrushProperty, VsBrushes.CommandBarMenuBorderKey); } private void InheritanceMargin_OnMouseEnter(object sender, MouseEventArgs e) { ChangeBorderToHoveringColor(); } private void InheritanceMargin_OnMouseLeave(object sender, MouseEventArgs e) { // If the context menu is open, then don't reset the color of the button because we need // the margin looks like being pressed. if (!ContextMenu.IsOpen) { ResetBorderToInitialColor(); } } private void ContextMenu_OnClose(object sender, RoutedEventArgs e) { // If mouse is still hovering. Don't reset the color. The context menu might be closed because user clicks within the margin if (!IsMouseOver) { ResetBorderToInitialColor(); } // Move the focus back to textView when the context menu is closed. // It ensures the focus won't be left at the margin ResetFocus(); } private void ContextMenu_OnOpen(object sender, RoutedEventArgs e) { if (e.OriginalSource is ContextMenu { DataContext: InheritanceMarginViewModel inheritanceMarginViewModel } && inheritanceMarginViewModel.MenuItemViewModels.Any(vm => vm is TargetMenuItemViewModel)) { // We have two kinds of context menu. e.g. // 1. [margin] -> Header // Target1 // Target2 // Target3 // // 2. [margin] -> method Bar -> Header // -> Target1 // -> Target2 // -> method Foo -> Header // -> Target3 // -> Target4 // If the first level of the context menu contains a TargetMenuItemViewModel, it means here it is case 1, // user is viewing the targets menu. Logger.Log(FunctionId.InheritanceMargin_TargetsMenuOpen, KeyValueLogMessage.Create(LogType.UserAction)); } } private void TargetsSubmenu_OnOpen(object sender, RoutedEventArgs e) { Logger.Log(FunctionId.InheritanceMargin_TargetsMenuOpen, KeyValueLogMessage.Create(LogType.UserAction)); } private void ResetBorderToInitialColor() { this.Background = Brushes.Transparent; this.BorderBrush = Brushes.Transparent; } private void ResetFocus() { if (!_textView.HasAggregateFocus) { var visualElement = _textView.VisualElement; if (visualElement.Focusable) { Keyboard.Focus(visualElement); } } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Immutable; using System.Linq; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Editor; using Microsoft.CodeAnalysis.Editor.GoToDefinition; using Microsoft.CodeAnalysis.Editor.Host; using Microsoft.CodeAnalysis.Editor.Shared.Utilities; using Microsoft.CodeAnalysis.FindUsages; using Microsoft.CodeAnalysis.Internal.Log; using Microsoft.CodeAnalysis.Shared.TestHooks; using Microsoft.VisualStudio.Shell; using Microsoft.VisualStudio.Text.Classification; using Microsoft.VisualStudio.Text.Editor; using Microsoft.VisualStudio.Utilities; namespace Microsoft.VisualStudio.LanguageServices.Implementation.InheritanceMargin.MarginGlyph { internal partial class InheritanceMargin { private readonly IThreadingContext _threadingContext; private readonly IStreamingFindUsagesPresenter _streamingFindUsagesPresenter; private readonly IUIThreadOperationExecutor _operationExecutor; private readonly Workspace _workspace; private readonly IWpfTextView _textView; private readonly IAsynchronousOperationListener _listener; public InheritanceMargin( IThreadingContext threadingContext, IStreamingFindUsagesPresenter streamingFindUsagesPresenter, ClassificationTypeMap classificationTypeMap, IClassificationFormatMap classificationFormatMap, IUIThreadOperationExecutor operationExecutor, InheritanceMarginTag tag, IWpfTextView textView, IAsynchronousOperationListener listener) { _threadingContext = threadingContext; _streamingFindUsagesPresenter = streamingFindUsagesPresenter; _workspace = tag.Workspace; _operationExecutor = operationExecutor; _textView = textView; _listener = listener; InitializeComponent(); var viewModel = InheritanceMarginViewModel.Create(classificationTypeMap, classificationFormatMap, tag, textView.ZoomLevel); DataContext = viewModel; ContextMenu.DataContext = viewModel; ToolTip = new ToolTip { Content = viewModel.ToolTipTextBlock, Style = (Style)FindResource("ToolTipStyle") }; } private void InheritanceMargin_OnClick(object sender, RoutedEventArgs e) { if (this.ContextMenu != null) { this.ContextMenu.IsOpen = true; e.Handled = true; } } private void TargetMenuItem_OnClick(object sender, RoutedEventArgs e) { if (e.OriginalSource is MenuItem { DataContext: TargetMenuItemViewModel viewModel }) { Logger.Log(FunctionId.InheritanceMargin_NavigateToTarget, KeyValueLogMessage.Create(LogType.UserAction)); var token = _listener.BeginAsyncOperation(nameof(TargetMenuItem_OnClick)); TargetMenuItem_OnClickAsync(viewModel).CompletesAsyncOperation(token); } } private async Task TargetMenuItem_OnClickAsync(TargetMenuItemViewModel viewModel) { using var context = _operationExecutor.BeginExecute( title: EditorFeaturesResources.Navigating, defaultDescription: string.Format(ServicesVSResources.Navigate_to_0, viewModel.DisplayContent), allowCancellation: true, showProgress: false); var cancellationToken = context.UserCancellationToken; var rehydrated = await viewModel.DefinitionItem.TryRehydrateAsync(cancellationToken).ConfigureAwait(false); if (rehydrated == null) return; await _streamingFindUsagesPresenter.TryNavigateToOrPresentItemsAsync( _threadingContext, _workspace, string.Format(EditorFeaturesResources._0_declarations, viewModel.DisplayContent), ImmutableArray.Create<DefinitionItem>(rehydrated), cancellationToken).ConfigureAwait(false); } private void ChangeBorderToHoveringColor() { SetResourceReference(BackgroundProperty, VsBrushes.CommandBarMenuBackgroundGradientKey); SetResourceReference(BorderBrushProperty, VsBrushes.CommandBarMenuBorderKey); } private void InheritanceMargin_OnMouseEnter(object sender, MouseEventArgs e) { ChangeBorderToHoveringColor(); } private void InheritanceMargin_OnMouseLeave(object sender, MouseEventArgs e) { // If the context menu is open, then don't reset the color of the button because we need // the margin looks like being pressed. if (!ContextMenu.IsOpen) { ResetBorderToInitialColor(); } } private void ContextMenu_OnClose(object sender, RoutedEventArgs e) { // If mouse is still hovering. Don't reset the color. The context menu might be closed because user clicks within the margin if (!IsMouseOver) { ResetBorderToInitialColor(); } // Move the focus back to textView when the context menu is closed. // It ensures the focus won't be left at the margin ResetFocus(); } private void ContextMenu_OnOpen(object sender, RoutedEventArgs e) { if (e.OriginalSource is ContextMenu { DataContext: InheritanceMarginViewModel inheritanceMarginViewModel } && inheritanceMarginViewModel.MenuItemViewModels.Any(vm => vm is TargetMenuItemViewModel)) { // We have two kinds of context menu. e.g. // 1. [margin] -> Header // Target1 // Target2 // Target3 // // 2. [margin] -> method Bar -> Header // -> Target1 // -> Target2 // -> method Foo -> Header // -> Target3 // -> Target4 // If the first level of the context menu contains a TargetMenuItemViewModel, it means here it is case 1, // user is viewing the targets menu. Logger.Log(FunctionId.InheritanceMargin_TargetsMenuOpen, KeyValueLogMessage.Create(LogType.UserAction)); } } private void TargetsSubmenu_OnOpen(object sender, RoutedEventArgs e) { Logger.Log(FunctionId.InheritanceMargin_TargetsMenuOpen, KeyValueLogMessage.Create(LogType.UserAction)); } private void ResetBorderToInitialColor() { this.Background = Brushes.Transparent; this.BorderBrush = Brushes.Transparent; } private void ResetFocus() { if (!_textView.HasAggregateFocus) { var visualElement = _textView.VisualElement; if (visualElement.Focusable) { Keyboard.Focus(visualElement); } } } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/CSharp/Test/Semantic/Semantics/RecordStructTests.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using System.Threading; using Microsoft.CodeAnalysis.CSharp.Symbols; using Microsoft.CodeAnalysis.CSharp.Symbols.Metadata.PE; using Microsoft.CodeAnalysis.CSharp.Symbols.Retargeting; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.CSharp.Test.Utilities; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Test.Utilities; using Roslyn.Test.Utilities; using Roslyn.Utilities; using Xunit; namespace Microsoft.CodeAnalysis.CSharp.UnitTests.Semantics { [CompilerTrait(CompilerFeature.RecordStructs)] public class RecordStructTests : CompilingTestBase { private static CSharpCompilation CreateCompilation(CSharpTestSource source) => CSharpTestBase.CreateCompilation(new[] { source, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview); private CompilationVerifier CompileAndVerify( CSharpTestSource src, string? expectedOutput = null, IEnumerable<MetadataReference>? references = null) => base.CompileAndVerify( new[] { src, IsExternalInitTypeDefinition }, expectedOutput: expectedOutput, parseOptions: TestOptions.RegularPreview, references: references, // init-only is unverifiable verify: Verification.Skipped); [Fact] public void StructRecord1() { var src = @" record struct Point(int X, int Y);"; var verifier = CompileAndVerify(src).VerifyDiagnostics(); verifier.VerifyIL("Point.Equals(object)", @" { // Code size 23 (0x17) .maxstack 2 IL_0000: ldarg.1 IL_0001: isinst ""Point"" IL_0006: brfalse.s IL_0015 IL_0008: ldarg.0 IL_0009: ldarg.1 IL_000a: unbox.any ""Point"" IL_000f: call ""readonly bool Point.Equals(Point)"" IL_0014: ret IL_0015: ldc.i4.0 IL_0016: ret }"); verifier.VerifyIL("Point.Equals(Point)", @" { // Code size 49 (0x31) .maxstack 3 IL_0000: call ""System.Collections.Generic.EqualityComparer<int> System.Collections.Generic.EqualityComparer<int>.Default.get"" IL_0005: ldarg.0 IL_0006: ldfld ""int Point.<X>k__BackingField"" IL_000b: ldarg.1 IL_000c: ldfld ""int Point.<X>k__BackingField"" IL_0011: callvirt ""bool System.Collections.Generic.EqualityComparer<int>.Equals(int, int)"" IL_0016: brfalse.s IL_002f IL_0018: call ""System.Collections.Generic.EqualityComparer<int> System.Collections.Generic.EqualityComparer<int>.Default.get"" IL_001d: ldarg.0 IL_001e: ldfld ""int Point.<Y>k__BackingField"" IL_0023: ldarg.1 IL_0024: ldfld ""int Point.<Y>k__BackingField"" IL_0029: callvirt ""bool System.Collections.Generic.EqualityComparer<int>.Equals(int, int)"" IL_002e: ret IL_002f: ldc.i4.0 IL_0030: ret }"); } [Fact] public void StructRecord2() { var src = @" using System; record struct S(int X, int Y) { public static void Main() { var s1 = new S(0, 1); var s2 = new S(0, 1); Console.WriteLine(s1.X); Console.WriteLine(s1.Y); Console.WriteLine(s1.Equals(s2)); Console.WriteLine(s1.Equals(new S(1, 0))); } }"; var verifier = CompileAndVerify(src, expectedOutput: @"0 1 True False").VerifyDiagnostics(); } [Fact] public void StructRecord3() { var src = @" using System; record struct S(int X, int Y) { public bool Equals(S s) => false; public static void Main() { var s1 = new S(0, 1); Console.WriteLine(s1.Equals(s1)); } }"; var verifier = CompileAndVerify(src, expectedOutput: @"False") .VerifyDiagnostics( // (5,17): warning CS8851: 'S' defines 'Equals' but not 'GetHashCode' // public bool Equals(S s) => false; Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("S").WithLocation(5, 17)); verifier.VerifyIL("S.Main", @" { // Code size 23 (0x17) .maxstack 3 .locals init (S V_0) //s1 IL_0000: ldloca.s V_0 IL_0002: ldc.i4.0 IL_0003: ldc.i4.1 IL_0004: call ""S..ctor(int, int)"" IL_0009: ldloca.s V_0 IL_000b: ldloc.0 IL_000c: call ""bool S.Equals(S)"" IL_0011: call ""void System.Console.WriteLine(bool)"" IL_0016: ret }"); } [Fact] public void StructRecord5() { var src = @" using System; record struct S(int X, int Y) { public bool Equals(S s) { Console.Write(""s""); return true; } public static void Main() { var s1 = new S(0, 1); s1.Equals((object)s1); s1.Equals(s1); } }"; CompileAndVerify(src, expectedOutput: @"ss") .VerifyDiagnostics( // (5,17): warning CS8851: 'S' defines 'Equals' but not 'GetHashCode' // public bool Equals(S s) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("S").WithLocation(5, 17)); } [Fact] public void StructRecordDefaultCtor() { const string src = @" public record struct S(int X);"; const string src2 = @" class C { public S M() => new S(); }"; var comp = CreateCompilation(src + src2); comp.VerifyDiagnostics(); comp = CreateCompilation(src); var comp2 = CreateCompilation(src2, references: new[] { comp.EmitToImageReference() }); comp2.VerifyDiagnostics(); } [Fact] public void Equality_01() { var source = @"using static System.Console; record struct S; class Program { static void Main() { var x = new S(); var y = new S(); WriteLine(x.Equals(y)); WriteLine(((object)x).Equals(y)); } }"; var comp = CreateCompilation(source, parseOptions: TestOptions.RegularPreview, options: TestOptions.ReleaseExe); var verifier = CompileAndVerify(comp, expectedOutput: @"True True").VerifyDiagnostics(); verifier.VerifyIL("S.Equals(S)", @" { // Code size 2 (0x2) .maxstack 1 IL_0000: ldc.i4.1 IL_0001: ret }"); verifier.VerifyIL("S.Equals(object)", @" { // Code size 23 (0x17) .maxstack 2 IL_0000: ldarg.1 IL_0001: isinst ""S"" IL_0006: brfalse.s IL_0015 IL_0008: ldarg.0 IL_0009: ldarg.1 IL_000a: unbox.any ""S"" IL_000f: call ""readonly bool S.Equals(S)"" IL_0014: ret IL_0015: ldc.i4.0 IL_0016: ret }"); } [Fact] public void RecordStructLanguageVersion() { var src1 = @" struct Point(int x, int y); "; var src2 = @" record struct Point { } "; var src3 = @" record struct Point(int x, int y); "; var comp = CreateCompilation(new[] { src1, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular9, options: TestOptions.ReleaseDll); comp.VerifyDiagnostics( // (2,13): error CS1514: { expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_LbraceExpected, "(").WithLocation(2, 13), // (2,13): error CS1513: } expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_RbraceExpected, "(").WithLocation(2, 13), // (2,13): error CS8803: Top-level statements must precede namespace and type declarations. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_TopLevelStatementAfterNamespaceOrType, "(int x, int y);").WithLocation(2, 13), // (2,13): error CS8805: Program using top-level statements must be an executable. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_SimpleProgramNotAnExecutable, "(int x, int y);").WithLocation(2, 13), // (2,13): error CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_IllegalStatement, "(int x, int y)").WithLocation(2, 13), // (2,14): error CS8185: A declaration is not allowed in this context. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_DeclarationExpressionNotPermitted, "int x").WithLocation(2, 14), // (2,14): error CS0165: Use of unassigned local variable 'x' // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_UseDefViolation, "int x").WithArguments("x").WithLocation(2, 14), // (2,21): error CS8185: A declaration is not allowed in this context. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_DeclarationExpressionNotPermitted, "int y").WithLocation(2, 21), // (2,21): error CS0165: Use of unassigned local variable 'y' // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_UseDefViolation, "int y").WithArguments("y").WithLocation(2, 21) ); comp = CreateCompilation(new[] { src2, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular9, options: TestOptions.ReleaseDll); comp.VerifyDiagnostics( // (2,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct Point { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(2, 8) ); comp = CreateCompilation(new[] { src3, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular9, options: TestOptions.ReleaseDll); comp.VerifyDiagnostics( // (2,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct Point { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(2, 8) ); comp = CreateCompilation(new[] { src1, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular10, options: TestOptions.ReleaseDll); comp.VerifyDiagnostics( // (2,13): error CS1514: { expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_LbraceExpected, "(").WithLocation(2, 13), // (2,13): error CS1513: } expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_RbraceExpected, "(").WithLocation(2, 13), // (2,13): error CS8803: Top-level statements must precede namespace and type declarations. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_TopLevelStatementAfterNamespaceOrType, "(int x, int y);").WithLocation(2, 13), // (2,13): error CS8805: Program using top-level statements must be an executable. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_SimpleProgramNotAnExecutable, "(int x, int y);").WithLocation(2, 13), // (2,13): error CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_IllegalStatement, "(int x, int y)").WithLocation(2, 13), // (2,14): error CS8185: A declaration is not allowed in this context. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_DeclarationExpressionNotPermitted, "int x").WithLocation(2, 14), // (2,14): error CS0165: Use of unassigned local variable 'x' // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_UseDefViolation, "int x").WithArguments("x").WithLocation(2, 14), // (2,21): error CS8185: A declaration is not allowed in this context. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_DeclarationExpressionNotPermitted, "int y").WithLocation(2, 21), // (2,21): error CS0165: Use of unassigned local variable 'y' // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_UseDefViolation, "int y").WithArguments("y").WithLocation(2, 21) ); comp = CreateCompilation(new[] { src2, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular10, options: TestOptions.ReleaseDll); comp.VerifyDiagnostics(); comp = CreateCompilation(new[] { src3, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular10, options: TestOptions.ReleaseDll); comp.VerifyDiagnostics(); } [Fact] public void RecordStructLanguageVersion_Nested() { var src1 = @" class C { struct Point(int x, int y); } "; var src2 = @" class D { record struct Point { } } "; var src3 = @" struct E { record struct Point(int x, int y); } "; var src4 = @" namespace NS { record struct Point { } } "; var comp = CreateCompilation(src1, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (4,17): error CS1514: { expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_LbraceExpected, "(").WithLocation(4, 17), // (4,17): error CS1513: } expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_RbraceExpected, "(").WithLocation(4, 17), // (4,31): error CS1519: Invalid token ';' in class, record, struct, or interface member declaration // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_InvalidMemberDecl, ";").WithArguments(";").WithLocation(4, 31), // (4,31): error CS1519: Invalid token ';' in class, record, struct, or interface member declaration // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_InvalidMemberDecl, ";").WithArguments(";").WithLocation(4, 31) ); comp = CreateCompilation(new[] { src2, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (4,12): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct Point { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(4, 12) ); comp = CreateCompilation(new[] { src3, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (4,12): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct Point(int x, int y); Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(4, 12) ); comp = CreateCompilation(src4, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (4,12): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct Point { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(4, 12) ); comp = CreateCompilation(src1); comp.VerifyDiagnostics( // (4,17): error CS1514: { expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_LbraceExpected, "(").WithLocation(4, 17), // (4,17): error CS1513: } expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_RbraceExpected, "(").WithLocation(4, 17), // (4,31): error CS1519: Invalid token ';' in class, record, struct, or interface member declaration // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_InvalidMemberDecl, ";").WithArguments(";").WithLocation(4, 31), // (4,31): error CS1519: Invalid token ';' in class, record, struct, or interface member declaration // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_InvalidMemberDecl, ";").WithArguments(";").WithLocation(4, 31) ); comp = CreateCompilation(src2); comp.VerifyDiagnostics(); comp = CreateCompilation(src3); comp.VerifyDiagnostics(); comp = CreateCompilation(src4); comp.VerifyDiagnostics(); } [Fact] public void TypeDeclaration_IsStruct() { var src = @" record struct Point(int x, int y); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, symbolValidator: validateModule, sourceSymbolValidator: validateModule); Assert.True(SyntaxFacts.IsTypeDeclaration(SyntaxKind.RecordStructDeclaration)); static void validateModule(ModuleSymbol module) { var isSourceSymbol = module is SourceModuleSymbol; var point = module.GlobalNamespace.GetTypeMember("Point"); Assert.True(point.IsValueType); Assert.False(point.IsReferenceType); Assert.False(point.IsRecord); Assert.Equal(TypeKind.Struct, point.TypeKind); Assert.Equal(SpecialType.System_ValueType, point.BaseTypeNoUseSiteDiagnostics.SpecialType); Assert.Equal("Point", point.ToTestDisplayString()); if (isSourceSymbol) { Assert.True(point is SourceNamedTypeSymbol); Assert.True(point.IsRecordStruct); Assert.True(point.GetPublicSymbol().IsRecord); Assert.Equal("record struct Point", point.ToDisplayString(SymbolDisplayFormat.TestFormat.AddKindOptions(SymbolDisplayKindOptions.IncludeTypeKeyword))); } else { Assert.True(point is PENamedTypeSymbol); Assert.False(point.IsRecordStruct); Assert.False(point.GetPublicSymbol().IsRecord); Assert.Equal("struct Point", point.ToDisplayString(SymbolDisplayFormat.TestFormat.AddKindOptions(SymbolDisplayKindOptions.IncludeTypeKeyword))); } } } [Fact] public void TypeDeclaration_IsStruct_InConstraints() { var src = @" record struct Point(int x, int y); class C<T> where T : struct { void M(C<Point> c) { } } class C2<T> where T : new() { void M(C2<Point> c) { } } class C3<T> where T : class { void M(C3<Point> c) { } // 1 } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (16,22): error CS0452: The type 'Point' must be a reference type in order to use it as parameter 'T' in the generic type or method 'C3<T>' // void M(C3<Point> c) { } // 1 Diagnostic(ErrorCode.ERR_RefConstraintNotSatisfied, "c").WithArguments("C3<T>", "T", "Point").WithLocation(16, 22) ); } [Fact] public void TypeDeclaration_IsStruct_Unmanaged() { var src = @" record struct Point(int x, int y); record struct Point2(string x, string y); class C<T> where T : unmanaged { void M(C<Point> c) { } void M2(C<Point2> c) { } // 1 } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (8,23): error CS8377: The type 'Point2' must be a non-nullable value type, along with all fields at any level of nesting, in order to use it as parameter 'T' in the generic type or method 'C<T>' // void M2(C<Point2> c) { } // 1 Diagnostic(ErrorCode.ERR_UnmanagedConstraintNotSatisfied, "c").WithArguments("C<T>", "T", "Point2").WithLocation(8, 23) ); } [Fact] public void IsRecord_Generic() { var src = @" record struct Point<T>(T x, T y); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, symbolValidator: validateModule, sourceSymbolValidator: validateModule); static void validateModule(ModuleSymbol module) { var isSourceSymbol = module is SourceModuleSymbol; var point = module.GlobalNamespace.GetTypeMember("Point"); Assert.True(point.IsValueType); Assert.False(point.IsReferenceType); Assert.False(point.IsRecord); Assert.Equal(TypeKind.Struct, point.TypeKind); Assert.Equal(SpecialType.System_ValueType, point.BaseTypeNoUseSiteDiagnostics.SpecialType); Assert.True(SyntaxFacts.IsTypeDeclaration(SyntaxKind.RecordStructDeclaration)); if (isSourceSymbol) { Assert.True(point is SourceNamedTypeSymbol); Assert.True(point.IsRecordStruct); Assert.True(point.GetPublicSymbol().IsRecord); } else { Assert.True(point is PENamedTypeSymbol); Assert.False(point.IsRecordStruct); Assert.False(point.GetPublicSymbol().IsRecord); } } } [Fact] public void IsRecord_Retargeting() { var src = @" public record struct Point(int x, int y); "; var comp = CreateCompilation(src, targetFramework: TargetFramework.Mscorlib40); var comp2 = CreateCompilation("", targetFramework: TargetFramework.Mscorlib46, references: new[] { comp.ToMetadataReference() }); var point = comp2.GlobalNamespace.GetTypeMember("Point"); Assert.Equal("Point", point.ToTestDisplayString()); Assert.IsType<RetargetingNamedTypeSymbol>(point); Assert.True(point.IsRecordStruct); Assert.True(point.GetPublicSymbol().IsRecord); } [Fact] public void IsRecord_AnonymousType() { var src = @" class C { void M() { var x = new { X = 1 }; } } "; var comp = CreateCompilation(src); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var creation = tree.GetRoot().DescendantNodes().OfType<AnonymousObjectCreationExpressionSyntax>().Single(); var type = model.GetTypeInfo(creation).Type!; Assert.Equal("<anonymous type: System.Int32 X>", type.ToTestDisplayString()); Assert.IsType<AnonymousTypeManager.AnonymousTypePublicSymbol>(((Symbols.PublicModel.NonErrorNamedTypeSymbol)type).UnderlyingNamedTypeSymbol); Assert.False(type.IsRecord); } [Fact] public void IsRecord_ErrorType() { var src = @" class C { Error M() => throw null; } "; var comp = CreateCompilation(src); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var method = tree.GetRoot().DescendantNodes().OfType<MethodDeclarationSyntax>().Single(); var type = model.GetDeclaredSymbol(method)!.ReturnType; Assert.Equal("Error", type.ToTestDisplayString()); Assert.IsType<ExtendedErrorTypeSymbol>(((Symbols.PublicModel.ErrorTypeSymbol)type).UnderlyingNamedTypeSymbol); Assert.False(type.IsRecord); } [Fact] public void IsRecord_Pointer() { var src = @" class C { int* M() => throw null; } "; var comp = CreateCompilation(src, options: TestOptions.UnsafeReleaseDll); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var method = tree.GetRoot().DescendantNodes().OfType<MethodDeclarationSyntax>().Single(); var type = model.GetDeclaredSymbol(method)!.ReturnType; Assert.Equal("System.Int32*", type.ToTestDisplayString()); Assert.IsType<PointerTypeSymbol>(((Symbols.PublicModel.PointerTypeSymbol)type).UnderlyingTypeSymbol); Assert.False(type.IsRecord); } [Fact] public void IsRecord_Dynamic() { var src = @" class C { void M(dynamic d) { } } "; var comp = CreateCompilation(src); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var method = tree.GetRoot().DescendantNodes().OfType<MethodDeclarationSyntax>().Single(); var type = model.GetDeclaredSymbol(method)!.GetParameterType(0); Assert.Equal("dynamic", type.ToTestDisplayString()); Assert.IsType<DynamicTypeSymbol>(((Symbols.PublicModel.DynamicTypeSymbol)type).UnderlyingTypeSymbol); Assert.False(type.IsRecord); } [Fact] public void TypeDeclaration_MayNotHaveBaseType() { var src = @" record struct Point(int x, int y) : object; record struct Point2(int x, int y) : System.ValueType; "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,37): error CS0527: Type 'object' in interface list is not an interface // record struct Point(int x, int y) : object; Diagnostic(ErrorCode.ERR_NonInterfaceInInterfaceList, "object").WithArguments("object").WithLocation(2, 37), // (3,38): error CS0527: Type 'ValueType' in interface list is not an interface // record struct Point2(int x, int y) : System.ValueType; Diagnostic(ErrorCode.ERR_NonInterfaceInInterfaceList, "System.ValueType").WithArguments("System.ValueType").WithLocation(3, 38) ); } [Fact] public void TypeDeclaration_MayNotHaveTypeConstraintsWithoutTypeParameters() { var src = @" record struct Point(int x, int y) where T : struct; "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,35): error CS0080: Constraints are not allowed on non-generic declarations // record struct Point(int x, int y) where T : struct; Diagnostic(ErrorCode.ERR_ConstraintOnlyAllowedOnGenericDecl, "where").WithLocation(2, 35) ); } [Fact] public void TypeDeclaration_AllowedModifiers() { var src = @" readonly partial record struct S1; public record struct S2; internal record struct S3; public class Base { public int S6; } public class C : Base { private protected record struct S4; protected internal record struct S5; new record struct S6; } unsafe record struct S7; "; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview, options: TestOptions.UnsafeDebugDll); comp.VerifyDiagnostics(); Assert.Equal(Accessibility.Internal, comp.GlobalNamespace.GetTypeMember("S1").DeclaredAccessibility); Assert.Equal(Accessibility.Public, comp.GlobalNamespace.GetTypeMember("S2").DeclaredAccessibility); Assert.Equal(Accessibility.Internal, comp.GlobalNamespace.GetTypeMember("S3").DeclaredAccessibility); Assert.Equal(Accessibility.ProtectedAndInternal, comp.GlobalNamespace.GetTypeMember("C").GetTypeMember("S4").DeclaredAccessibility); Assert.Equal(Accessibility.ProtectedOrInternal, comp.GlobalNamespace.GetTypeMember("C").GetTypeMember("S5").DeclaredAccessibility); } [Fact] public void TypeDeclaration_DisallowedModifiers() { var src = @" abstract record struct S1; volatile record struct S2; extern record struct S3; virtual record struct S4; override record struct S5; async record struct S6; ref record struct S7; unsafe record struct S8; static record struct S9; sealed record struct S10; "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,24): error CS0106: The modifier 'abstract' is not valid for this item // abstract record struct S1; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S1").WithArguments("abstract").WithLocation(2, 24), // (3,24): error CS0106: The modifier 'volatile' is not valid for this item // volatile record struct S2; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S2").WithArguments("volatile").WithLocation(3, 24), // (4,22): error CS0106: The modifier 'extern' is not valid for this item // extern record struct S3; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S3").WithArguments("extern").WithLocation(4, 22), // (5,23): error CS0106: The modifier 'virtual' is not valid for this item // virtual record struct S4; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S4").WithArguments("virtual").WithLocation(5, 23), // (6,24): error CS0106: The modifier 'override' is not valid for this item // override record struct S5; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S5").WithArguments("override").WithLocation(6, 24), // (7,21): error CS0106: The modifier 'async' is not valid for this item // async record struct S6; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S6").WithArguments("async").WithLocation(7, 21), // (8,19): error CS0106: The modifier 'ref' is not valid for this item // ref record struct S7; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S7").WithArguments("ref").WithLocation(8, 19), // (9,22): error CS0227: Unsafe code may only appear if compiling with /unsafe // unsafe record struct S8; Diagnostic(ErrorCode.ERR_IllegalUnsafe, "S8").WithLocation(9, 22), // (10,22): error CS0106: The modifier 'static' is not valid for this item // static record struct S9; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S9").WithArguments("static").WithLocation(10, 22), // (11,22): error CS0106: The modifier 'sealed' is not valid for this item // sealed record struct S10; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S10").WithArguments("sealed").WithLocation(11, 22) ); } [Fact] public void TypeDeclaration_DuplicatesModifiers() { var src = @" public public record struct S2; "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,8): error CS1004: Duplicate 'public' modifier // public public record struct S2; Diagnostic(ErrorCode.ERR_DuplicateModifier, "public").WithArguments("public").WithLocation(2, 8) ); } [Fact] public void TypeDeclaration_BeforeTopLevelStatement() { var src = @" record struct S; System.Console.WriteLine(); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (3,1): error CS8803: Top-level statements must precede namespace and type declarations. // System.Console.WriteLine(); Diagnostic(ErrorCode.ERR_TopLevelStatementAfterNamespaceOrType, "System.Console.WriteLine();").WithLocation(3, 1) ); } [Fact] public void TypeDeclaration_WithTypeParameters() { var src = @" S<string> local = default; local.ToString(); record struct S<T>; "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); Assert.Equal(new[] { "T" }, comp.GlobalNamespace.GetTypeMember("S").TypeParameters.ToTestDisplayStrings()); } [Fact] public void TypeDeclaration_AllowedModifiersForMembers() { var src = @" record struct S { protected int Property { get; set; } // 1 internal protected string field; // 2, 3 abstract void M(); // 4 virtual void M2() { } // 5 }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (4,19): error CS0666: 'S.Property': new protected member declared in struct // protected int Property { get; set; } // 1 Diagnostic(ErrorCode.ERR_ProtectedInStruct, "Property").WithArguments("S.Property").WithLocation(4, 19), // (5,31): error CS0666: 'S.field': new protected member declared in struct // internal protected string field; // 2, 3 Diagnostic(ErrorCode.ERR_ProtectedInStruct, "field").WithArguments("S.field").WithLocation(5, 31), // (5,31): warning CS0649: Field 'S.field' is never assigned to, and will always have its default value null // internal protected string field; // 2, 3 Diagnostic(ErrorCode.WRN_UnassignedInternalField, "field").WithArguments("S.field", "null").WithLocation(5, 31), // (6,19): error CS0621: 'S.M()': virtual or abstract members cannot be private // abstract void M(); // 4 Diagnostic(ErrorCode.ERR_VirtualPrivate, "M").WithArguments("S.M()").WithLocation(6, 19), // (7,18): error CS0621: 'S.M2()': virtual or abstract members cannot be private // virtual void M2() { } // 5 Diagnostic(ErrorCode.ERR_VirtualPrivate, "M2").WithArguments("S.M2()").WithLocation(7, 18) ); } [Fact] public void TypeDeclaration_ImplementInterface() { var src = @" I i = (I)default(S); System.Console.Write(i.M(""four"")); I i2 = (I)default(S2); System.Console.Write(i2.M(""four"")); interface I { int M(string s); } public record struct S : I { public int M(string s) => s.Length; } public record struct S2 : I { int I.M(string s) => s.Length + 1; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "45"); AssertEx.Equal(new[] { "System.Int32 S.M(System.String s)", "readonly System.String S.ToString()", "readonly System.Boolean S.PrintMembers(System.Text.StringBuilder builder)", "System.Boolean S.op_Inequality(S left, S right)", "System.Boolean S.op_Equality(S left, S right)", "readonly System.Int32 S.GetHashCode()", "readonly System.Boolean S.Equals(System.Object obj)", "readonly System.Boolean S.Equals(S other)", "S..ctor()" }, comp.GetMember<NamedTypeSymbol>("S").GetMembers().ToTestDisplayStrings()); } [Fact] public void TypeDeclaration_SatisfiesStructConstraint() { var src = @" S s = default; System.Console.Write(M(s)); static int M<T>(T t) where T : struct, I => t.Property; public interface I { int Property { get; } } public record struct S : I { public int Property => 42; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "42"); } [Fact] public void TypeDeclaration_AccessingThis() { var src = @" S s = new S(); System.Console.Write(s.M()); public record struct S { public int Property => 42; public int M() => this.Property; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42"); verifier.VerifyIL("S.M", @" { // Code size 7 (0x7) .maxstack 1 IL_0000: ldarg.0 IL_0001: call ""int S.Property.get"" IL_0006: ret } "); } [Fact] public void TypeDeclaration_NoBaseInitializer() { var src = @" public record struct S { public S(int i) : base() { } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (4,12): error CS0522: 'S': structs cannot call base class constructors // public S(int i) : base() { } Diagnostic(ErrorCode.ERR_StructWithBaseConstructorCall, "S").WithArguments("S").WithLocation(4, 12) ); } [Fact] public void TypeDeclaration_ParameterlessConstructor_01() { var src = @"record struct S0(); record struct S1; record struct S2 { public S2() { } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (1,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct S0(); Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(1, 8), // (2,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct S1; Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(2, 8), // (3,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct S2 Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(3, 8), // (5,12): error CS8773: Feature 'parameterless struct constructors' is not available in C# 9.0. Please use language version 10.0 or greater. // public S2() { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "S2").WithArguments("parameterless struct constructors", "10.0").WithLocation(5, 12)); var verifier = CompileAndVerify(src); verifier.VerifyIL("S0..ctor()", @"{ // Code size 1 (0x1) .maxstack 0 IL_0000: ret }"); verifier.VerifyMissing("S1..ctor()"); verifier.VerifyIL("S2..ctor()", @"{ // Code size 1 (0x1) .maxstack 0 IL_0000: ret }"); } [Fact] public void TypeDeclaration_ParameterlessConstructor_02() { var src = @"record struct S1 { S1() { } } record struct S2 { internal S2() { } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (1,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct S1 Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(1, 8), // (3,5): error CS8773: Feature 'parameterless struct constructors' is not available in C# 9.0. Please use language version 10.0 or greater. // S1() { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "S1").WithArguments("parameterless struct constructors", "10.0").WithLocation(3, 5), // (3,5): error CS8938: The parameterless struct constructor must be 'public'. // S1() { } Diagnostic(ErrorCode.ERR_NonPublicParameterlessStructConstructor, "S1").WithLocation(3, 5), // (5,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct S2 Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(5, 8), // (7,14): error CS8773: Feature 'parameterless struct constructors' is not available in C# 9.0. Please use language version 10.0 or greater. // internal S2() { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "S2").WithArguments("parameterless struct constructors", "10.0").WithLocation(7, 14), // (7,14): error CS8938: The parameterless struct constructor must be 'public'. // internal S2() { } Diagnostic(ErrorCode.ERR_NonPublicParameterlessStructConstructor, "S2").WithLocation(7, 14)); comp = CreateCompilation(src); comp.VerifyDiagnostics( // (3,5): error CS8918: The parameterless struct constructor must be 'public'. // S1() { } Diagnostic(ErrorCode.ERR_NonPublicParameterlessStructConstructor, "S1").WithLocation(3, 5), // (7,14): error CS8918: The parameterless struct constructor must be 'public'. // internal S2() { } Diagnostic(ErrorCode.ERR_NonPublicParameterlessStructConstructor, "S2").WithLocation(7, 14)); } [Fact] public void TypeDeclaration_ParameterlessConstructor_OtherConstructors() { var src = @" record struct S1 { public S1() { } S1(object o) { } // ok because no record parameter list } record struct S2 { S2(object o) { } } record struct S3() { S3(object o) { } // 1 } record struct S4() { S4(object o) : this() { } } record struct S5(object o) { public S5() { } // 2 } record struct S6(object o) { public S6() : this(null) { } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (13,5): error CS8862: A constructor declared in a record with parameter list must have 'this' constructor initializer. // S3(object o) { } // 1 Diagnostic(ErrorCode.ERR_UnexpectedOrMissingConstructorInitializerInRecord, "S3").WithLocation(13, 5), // (21,12): error CS8862: A constructor declared in a record with parameter list must have 'this' constructor initializer. // public S5() { } // 2 Diagnostic(ErrorCode.ERR_UnexpectedOrMissingConstructorInitializerInRecord, "S5").WithLocation(21, 12) ); } [Fact] public void TypeDeclaration_ParameterlessConstructor_Initializers() { var src = @" var s1 = new S1(); var s2 = new S2(null); var s2b = new S2(); var s3 = new S3(); var s4 = new S4(new object()); var s5 = new S5(); var s6 = new S6(""s6.other""); System.Console.Write((s1.field, s2.field, s2b.field is null, s3.field, s4.field, s5.field, s6.field, s6.other)); record struct S1 { public string field = ""s1""; public S1() { } } record struct S2 { public string field = ""s2""; public S2(object o) { } } record struct S3() { public string field = ""s3""; } record struct S4 { public string field = ""s4""; public S4(object o) : this() { } } record struct S5() { public string field = ""s5""; public S5(object o) : this() { } } record struct S6(string other) { public string field = ""s6.field""; public S6() : this(""ignored"") { } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "(s1, s2, True, s3, s4, s5, s6.field, s6.other)"); } [Fact] public void TypeDeclaration_InstanceInitializers() { var src = @" public record struct S { public int field = 42; public int Property { get; set; } = 43; } "; var comp = CreateCompilation(src, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (2,15): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // public record struct S Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(2, 15), // (4,16): error CS8773: Feature 'struct field initializers' is not available in C# 9.0. Please use language version 10.0 or greater. // public int field = 42; Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "field").WithArguments("struct field initializers", "10.0").WithLocation(4, 16), // (5,16): error CS8773: Feature 'struct field initializers' is not available in C# 9.0. Please use language version 10.0 or greater. // public int Property { get; set; } = 43; Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "Property").WithArguments("struct field initializers", "10.0").WithLocation(5, 16)); comp = CreateCompilation(src); comp.VerifyDiagnostics(); } [Fact] public void TypeDeclaration_NoDestructor() { var src = @" public record struct S { ~S() { } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (4,6): error CS0575: Only class types can contain destructors // ~S() { } Diagnostic(ErrorCode.ERR_OnlyClassesCanContainDestructors, "S").WithArguments("S.~S()").WithLocation(4, 6) ); } [Fact] public void TypeDeclaration_DifferentPartials() { var src = @" partial record struct S1; partial struct S1 { } partial struct S2 { } partial record struct S2; partial record struct S3; partial record S3 { } partial record struct S4; partial record class S4 { } partial record struct S5; partial class S5 { } partial record struct S6; partial interface S6 { } partial record class C1; partial struct C1 { } partial record class C2; partial record struct C2 { } partial record class C3 { } partial record C3; partial record class C4; partial class C4 { } partial record class C5; partial interface C5 { } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (3,16): error CS0261: Partial declarations of 'S1' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial struct S1 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "S1").WithArguments("S1").WithLocation(3, 16), // (6,23): error CS0261: Partial declarations of 'S2' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial record struct S2; Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "S2").WithArguments("S2").WithLocation(6, 23), // (9,16): error CS0261: Partial declarations of 'S3' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial record S3 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "S3").WithArguments("S3").WithLocation(9, 16), // (12,22): error CS0261: Partial declarations of 'S4' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial record class S4 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "S4").WithArguments("S4").WithLocation(12, 22), // (15,15): error CS0261: Partial declarations of 'S5' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial class S5 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "S5").WithArguments("S5").WithLocation(15, 15), // (18,19): error CS0261: Partial declarations of 'S6' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial interface S6 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "S6").WithArguments("S6").WithLocation(18, 19), // (21,16): error CS0261: Partial declarations of 'C1' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial struct C1 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "C1").WithArguments("C1").WithLocation(21, 16), // (24,23): error CS0261: Partial declarations of 'C2' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial record struct C2 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "C2").WithArguments("C2").WithLocation(24, 23), // (30,15): error CS0261: Partial declarations of 'C4' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial class C4 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "C4").WithArguments("C4").WithLocation(30, 15), // (33,19): error CS0261: Partial declarations of 'C5' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial interface C5 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "C5").WithArguments("C5").WithLocation(33, 19) ); } [Fact] public void PartialRecord_OnlyOnePartialHasParameterList() { var src = @" partial record struct S(int i); partial record struct S(int i); partial record struct S2(int i); partial record struct S2(); partial record struct S3(); partial record struct S3(); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (3,24): error CS8863: Only a single record partial declaration may have a parameter list // partial record struct S(int i); Diagnostic(ErrorCode.ERR_MultipleRecordParameterLists, "(int i)").WithLocation(3, 24), // (6,25): error CS8863: Only a single record partial declaration may have a parameter list // partial record struct S2(); Diagnostic(ErrorCode.ERR_MultipleRecordParameterLists, "()").WithLocation(6, 25), // (9,25): error CS8863: Only a single record partial declaration may have a parameter list // partial record struct S3(); Diagnostic(ErrorCode.ERR_MultipleRecordParameterLists, "()").WithLocation(9, 25) ); } [Fact] public void PartialRecord_ParametersInScopeOfBothParts() { var src = @" var c = new C(2); System.Console.Write((c.P1, c.P2)); public partial record struct C(int X) { public int P1 { get; set; } = X; } public partial record struct C { public int P2 { get; set; } = X; } "; var comp = CreateCompilation(src); CompileAndVerify(comp, expectedOutput: "(2, 2)", verify: Verification.Skipped /* init-only */) .VerifyDiagnostics( // (5,30): warning CS0282: There is no defined ordering between fields in multiple declarations of partial struct 'C'. To specify an ordering, all instance fields must be in the same declaration. // public partial record struct C(int X) Diagnostic(ErrorCode.WRN_SequentialOnPartialClass, "C").WithArguments("C").WithLocation(5, 30) ); } [Fact] public void PartialRecord_DuplicateMemberNames() { var src = @" public partial record struct C(int X) { public void M(int i) { } } public partial record struct C { public void M(string s) { } } "; var comp = CreateCompilation(src); var expectedMemberNames = new string[] { ".ctor", "<X>k__BackingField", "get_X", "set_X", "X", "M", "M", "ToString", "PrintMembers", "op_Inequality", "op_Equality", "GetHashCode", "Equals", "Equals", "Deconstruct", ".ctor", }; AssertEx.Equal(expectedMemberNames, comp.GetMember<NamedTypeSymbol>("C").GetPublicSymbol().MemberNames); } [Fact] public void RecordInsideGenericType() { var src = @" var c = new C<int>.Nested(2); System.Console.Write(c.T); public class C<T> { public record struct Nested(T T); } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "2"); } [Fact] public void PositionalMemberModifiers_RefOrOut() { var src = @" record struct R(ref int P1, out int P2); "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (2,15): error CS0177: The out parameter 'P2' must be assigned to before control leaves the current method // record struct R(ref int P1, out int P2); Diagnostic(ErrorCode.ERR_ParamUnassigned, "R").WithArguments("P2").WithLocation(2, 15), // (2,17): error CS0631: ref and out are not valid in this context // record struct R(ref int P1, out int P2); Diagnostic(ErrorCode.ERR_IllegalRefParam, "ref").WithLocation(2, 17), // (2,29): error CS0631: ref and out are not valid in this context // record struct R(ref int P1, out int P2); Diagnostic(ErrorCode.ERR_IllegalRefParam, "out").WithLocation(2, 29) ); } [Fact, WorkItem(45008, "https://github.com/dotnet/roslyn/issues/45008")] public void PositionalMemberModifiers_This() { var src = @" record struct R(this int i); "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (2,17): error CS0027: Keyword 'this' is not available in the current context // record struct R(this int i); Diagnostic(ErrorCode.ERR_ThisInBadContext, "this").WithLocation(2, 17) ); } [Fact, WorkItem(45591, "https://github.com/dotnet/roslyn/issues/45591")] public void Clone_DisallowedInSource() { var src = @" record struct C1(string Clone); // 1 record struct C2 { string Clone; // 2 } record struct C3 { string Clone { get; set; } // 3 } record struct C5 { void Clone() { } // 4 void Clone(int i) { } // 5 } record struct C6 { class Clone { } // 6 } record struct C7 { delegate void Clone(); // 7 } record struct C8 { event System.Action Clone; // 8 } record struct Clone { Clone(int i) => throw null; } record struct C9 : System.ICloneable { object System.ICloneable.Clone() => throw null; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,25): error CS8859: Members named 'Clone' are disallowed in records. // record struct C1(string Clone); // 1 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(2, 25), // (5,12): error CS8859: Members named 'Clone' are disallowed in records. // string Clone; // 2 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(5, 12), // (5,12): warning CS0169: The field 'C2.Clone' is never used // string Clone; // 2 Diagnostic(ErrorCode.WRN_UnreferencedField, "Clone").WithArguments("C2.Clone").WithLocation(5, 12), // (9,12): error CS8859: Members named 'Clone' are disallowed in records. // string Clone { get; set; } // 3 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(9, 12), // (13,10): error CS8859: Members named 'Clone' are disallowed in records. // void Clone() { } // 4 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(13, 10), // (14,10): error CS8859: Members named 'Clone' are disallowed in records. // void Clone(int i) { } // 5 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(14, 10), // (18,11): error CS8859: Members named 'Clone' are disallowed in records. // class Clone { } // 6 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(18, 11), // (22,19): error CS8859: Members named 'Clone' are disallowed in records. // delegate void Clone(); // 7 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(22, 19), // (26,25): error CS8859: Members named 'Clone' are disallowed in records. // event System.Action Clone; // 8 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(26, 25), // (26,25): warning CS0067: The event 'C8.Clone' is never used // event System.Action Clone; // 8 Diagnostic(ErrorCode.WRN_UnreferencedEvent, "Clone").WithArguments("C8.Clone").WithLocation(26, 25) ); } [ConditionalFact(typeof(DesktopOnly), Reason = ConditionalSkipReason.RestrictedTypesNeedDesktop)] [WorkItem(48115, "https://github.com/dotnet/roslyn/issues/48115")] public void RestrictedTypesAndPointerTypes() { var src = @" class C<T> { } static class C2 { } ref struct RefLike{} unsafe record struct C( // 1 int* P1, // 2 int*[] P2, // 3 C<int*[]> P3, delegate*<int, int> P4, // 4 void P5, // 5 C2 P6, // 6, 7 System.ArgIterator P7, // 8 System.TypedReference P8, // 9 RefLike P9); // 10 "; var comp = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.UnsafeDebugDll); comp.VerifyEmitDiagnostics( // (6,22): error CS0721: 'C2': static types cannot be used as parameters // unsafe record struct C( // 1 Diagnostic(ErrorCode.ERR_ParameterIsStaticClass, "C").WithArguments("C2").WithLocation(6, 22), // (7,10): error CS8908: The type 'int*' may not be used for a field of a record. // int* P1, // 2 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "P1").WithArguments("int*").WithLocation(7, 10), // (8,12): error CS8908: The type 'int*[]' may not be used for a field of a record. // int*[] P2, // 3 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "P2").WithArguments("int*[]").WithLocation(8, 12), // (10,25): error CS8908: The type 'delegate*<int, int>' may not be used for a field of a record. // delegate*<int, int> P4, // 4 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "P4").WithArguments("delegate*<int, int>").WithLocation(10, 25), // (11,5): error CS1536: Invalid parameter type 'void' // void P5, // 5 Diagnostic(ErrorCode.ERR_NoVoidParameter, "void").WithLocation(11, 5), // (12,8): error CS0722: 'C2': static types cannot be used as return types // C2 P6, // 6, 7 Diagnostic(ErrorCode.ERR_ReturnTypeIsStaticClass, "P6").WithArguments("C2").WithLocation(12, 8), // (12,8): error CS0721: 'C2': static types cannot be used as parameters // C2 P6, // 6, 7 Diagnostic(ErrorCode.ERR_ParameterIsStaticClass, "P6").WithArguments("C2").WithLocation(12, 8), // (13,5): error CS0610: Field or property cannot be of type 'ArgIterator' // System.ArgIterator P7, // 8 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.ArgIterator").WithArguments("System.ArgIterator").WithLocation(13, 5), // (14,5): error CS0610: Field or property cannot be of type 'TypedReference' // System.TypedReference P8, // 9 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.TypedReference").WithArguments("System.TypedReference").WithLocation(14, 5), // (15,5): error CS8345: Field or auto-implemented property cannot be of type 'RefLike' unless it is an instance member of a ref struct. // RefLike P9); // 10 Diagnostic(ErrorCode.ERR_FieldAutoPropCantBeByRefLike, "RefLike").WithArguments("RefLike").WithLocation(15, 5) ); } [ConditionalFact(typeof(DesktopOnly), Reason = ConditionalSkipReason.RestrictedTypesNeedDesktop)] [WorkItem(48115, "https://github.com/dotnet/roslyn/issues/48115")] public void RestrictedTypesAndPointerTypes_NominalMembers() { var src = @" public class C<T> { } public static class C2 { } public ref struct RefLike{} public unsafe record struct C { public int* f1; // 1 public int*[] f2; // 2 public C<int*[]> f3; public delegate*<int, int> f4; // 3 public void f5; // 4 public C2 f6; // 5 public System.ArgIterator f7; // 6 public System.TypedReference f8; // 7 public RefLike f9; // 8 } "; var comp = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.UnsafeDebugDll); comp.VerifyEmitDiagnostics( // (8,17): error CS8908: The type 'int*' may not be used for a field of a record. // public int* f1; // 1 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "f1").WithArguments("int*").WithLocation(8, 17), // (9,19): error CS8908: The type 'int*[]' may not be used for a field of a record. // public int*[] f2; // 2 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "f2").WithArguments("int*[]").WithLocation(9, 19), // (11,32): error CS8908: The type 'delegate*<int, int>' may not be used for a field of a record. // public delegate*<int, int> f4; // 3 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "f4").WithArguments("delegate*<int, int>").WithLocation(11, 32), // (12,12): error CS0670: Field cannot have void type // public void f5; // 4 Diagnostic(ErrorCode.ERR_FieldCantHaveVoidType, "void").WithLocation(12, 12), // (13,15): error CS0723: Cannot declare a variable of static type 'C2' // public C2 f6; // 5 Diagnostic(ErrorCode.ERR_VarDeclIsStaticClass, "f6").WithArguments("C2").WithLocation(13, 15), // (14,12): error CS0610: Field or property cannot be of type 'ArgIterator' // public System.ArgIterator f7; // 6 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.ArgIterator").WithArguments("System.ArgIterator").WithLocation(14, 12), // (15,12): error CS0610: Field or property cannot be of type 'TypedReference' // public System.TypedReference f8; // 7 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.TypedReference").WithArguments("System.TypedReference").WithLocation(15, 12), // (16,12): error CS8345: Field or auto-implemented property cannot be of type 'RefLike' unless it is an instance member of a ref struct. // public RefLike f9; // 8 Diagnostic(ErrorCode.ERR_FieldAutoPropCantBeByRefLike, "RefLike").WithArguments("RefLike").WithLocation(16, 12) ); } [ConditionalFact(typeof(DesktopOnly), Reason = ConditionalSkipReason.RestrictedTypesNeedDesktop)] [WorkItem(48115, "https://github.com/dotnet/roslyn/issues/48115")] public void RestrictedTypesAndPointerTypes_NominalMembers_AutoProperties() { var src = @" public class C<T> { } public static class C2 { } public ref struct RefLike{} public unsafe record struct C { public int* f1 { get; set; } // 1 public int*[] f2 { get; set; } // 2 public C<int*[]> f3 { get; set; } public delegate*<int, int> f4 { get; set; } // 3 public void f5 { get; set; } // 4 public C2 f6 { get; set; } // 5, 6 public System.ArgIterator f7 { get; set; } // 6 public System.TypedReference f8 { get; set; } // 7 public RefLike f9 { get; set; } // 8 } "; var comp = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.UnsafeDebugDll); comp.VerifyEmitDiagnostics( // (8,17): error CS8908: The type 'int*' may not be used for a field of a record. // public int* f1 { get; set; } // 1 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "f1").WithArguments("int*").WithLocation(8, 17), // (9,19): error CS8908: The type 'int*[]' may not be used for a field of a record. // public int*[] f2 { get; set; } // 2 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "f2").WithArguments("int*[]").WithLocation(9, 19), // (11,32): error CS8908: The type 'delegate*<int, int>' may not be used for a field of a record. // public delegate*<int, int> f4 { get; set; } // 3 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "f4").WithArguments("delegate*<int, int>").WithLocation(11, 32), // (12,17): error CS0547: 'C.f5': property or indexer cannot have void type // public void f5 { get; set; } // 4 Diagnostic(ErrorCode.ERR_PropertyCantHaveVoidType, "f5").WithArguments("C.f5").WithLocation(12, 17), // (13,20): error CS0722: 'C2': static types cannot be used as return types // public C2 f6 { get; set; } // 5, 6 Diagnostic(ErrorCode.ERR_ReturnTypeIsStaticClass, "get").WithArguments("C2").WithLocation(13, 20), // (13,25): error CS0721: 'C2': static types cannot be used as parameters // public C2 f6 { get; set; } // 5, 6 Diagnostic(ErrorCode.ERR_ParameterIsStaticClass, "set").WithArguments("C2").WithLocation(13, 25), // (14,12): error CS0610: Field or property cannot be of type 'ArgIterator' // public System.ArgIterator f7 { get; set; } // 6 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.ArgIterator").WithArguments("System.ArgIterator").WithLocation(14, 12), // (15,12): error CS0610: Field or property cannot be of type 'TypedReference' // public System.TypedReference f8 { get; set; } // 7 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.TypedReference").WithArguments("System.TypedReference").WithLocation(15, 12), // (16,12): error CS8345: Field or auto-implemented property cannot be of type 'RefLike' unless it is an instance member of a ref struct. // public RefLike f9 { get; set; } // 8 Diagnostic(ErrorCode.ERR_FieldAutoPropCantBeByRefLike, "RefLike").WithArguments("RefLike").WithLocation(16, 12) ); } [Fact] [WorkItem(48115, "https://github.com/dotnet/roslyn/issues/48115")] public void RestrictedTypesAndPointerTypes_PointerTypeAllowedForParameterAndProperty() { var src = @" class C<T> { } unsafe record struct C(int* P1, int*[] P2, C<int*[]> P3) { int* P1 { get { System.Console.Write(""P1 ""); return null; } init { } } int*[] P2 { get { System.Console.Write(""P2 ""); return null; } init { } } C<int*[]> P3 { get { System.Console.Write(""P3 ""); return null; } init { } } public unsafe static void Main() { var x = new C(null, null, null); var (x1, x2, x3) = x; System.Console.Write(""RAN""); } } "; var comp = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.UnsafeDebugExe); comp.VerifyEmitDiagnostics( // (4,29): warning CS8907: Parameter 'P1' is unread. Did you forget to use it to initialize the property with that name? // unsafe record struct C(int* P1, int*[] P2, C<int*[]> P3) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P1").WithArguments("P1").WithLocation(4, 29), // (4,40): warning CS8907: Parameter 'P2' is unread. Did you forget to use it to initialize the property with that name? // unsafe record struct C(int* P1, int*[] P2, C<int*[]> P3) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P2").WithArguments("P2").WithLocation(4, 40), // (4,54): warning CS8907: Parameter 'P3' is unread. Did you forget to use it to initialize the property with that name? // unsafe record struct C(int* P1, int*[] P2, C<int*[]> P3) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P3").WithArguments("P3").WithLocation(4, 54) ); CompileAndVerify(comp, expectedOutput: "P1 P2 P3 RAN", verify: Verification.Skipped /* pointers */); } [ConditionalFact(typeof(DesktopOnly), Reason = ConditionalSkipReason.RestrictedTypesNeedDesktop)] [WorkItem(48115, "https://github.com/dotnet/roslyn/issues/48115")] public void RestrictedTypesAndPointerTypes_StaticFields() { var src = @" public class C<T> { } public static class C2 { } public ref struct RefLike{} public unsafe record C { public static int* f1; public static int*[] f2; public static C<int*[]> f3; public static delegate*<int, int> f4; public static C2 f6; // 1 public static System.ArgIterator f7; // 2 public static System.TypedReference f8; // 3 public static RefLike f9; // 4 } "; var comp = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, options: TestOptions.UnsafeDebugDll); comp.VerifyEmitDiagnostics( // (12,22): error CS0723: Cannot declare a variable of static type 'C2' // public static C2 f6; // 1 Diagnostic(ErrorCode.ERR_VarDeclIsStaticClass, "f6").WithArguments("C2").WithLocation(12, 22), // (13,19): error CS0610: Field or property cannot be of type 'ArgIterator' // public static System.ArgIterator f7; // 2 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.ArgIterator").WithArguments("System.ArgIterator").WithLocation(13, 19), // (14,19): error CS0610: Field or property cannot be of type 'TypedReference' // public static System.TypedReference f8; // 3 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.TypedReference").WithArguments("System.TypedReference").WithLocation(14, 19), // (15,19): error CS8345: Field or auto-implemented property cannot be of type 'RefLike' unless it is an instance member of a ref struct. // public static RefLike f9; // 4 Diagnostic(ErrorCode.ERR_FieldAutoPropCantBeByRefLike, "RefLike").WithArguments("RefLike").WithLocation(15, 19) ); } [Fact] public void RecordProperties_01() { var src = @" using System; record struct C(int X, int Y) { int Z = 345; public static void Main() { var c = new C(1, 2); Console.Write(c.X); Console.Write(c.Y); Console.Write(c.Z); } }"; var verifier = CompileAndVerify(src, expectedOutput: @"12345").VerifyDiagnostics(); verifier.VerifyIL("C..ctor(int, int)", @" { // Code size 26 (0x1a) .maxstack 2 IL_0000: ldarg.0 IL_0001: ldarg.1 IL_0002: stfld ""int C.<X>k__BackingField"" IL_0007: ldarg.0 IL_0008: ldarg.2 IL_0009: stfld ""int C.<Y>k__BackingField"" IL_000e: ldarg.0 IL_000f: ldc.i4 0x159 IL_0014: stfld ""int C.Z"" IL_0019: ret } "); var c = verifier.Compilation.GlobalNamespace.GetTypeMember("C"); Assert.False(c.IsReadOnly); var x = (IPropertySymbol)c.GetMember("X"); Assert.Equal("readonly System.Int32 C.X.get", x.GetMethod.ToTestDisplayString()); Assert.Equal("void C.X.set", x.SetMethod.ToTestDisplayString()); Assert.False(x.SetMethod!.IsInitOnly); var xBackingField = (IFieldSymbol)c.GetMember("<X>k__BackingField"); Assert.Equal("System.Int32 C.<X>k__BackingField", xBackingField.ToTestDisplayString()); Assert.False(xBackingField.IsReadOnly); } [Fact] public void RecordProperties_01_EmptyParameterList() { var src = @" using System; record struct C() { int Z = 345; public static void Main() { var c = new C(); Console.Write(c.Z); } }"; CreateCompilation(src).VerifyEmitDiagnostics(); } [Fact] public void RecordProperties_01_Readonly() { var src = @" using System; readonly record struct C(int X, int Y) { readonly int Z = 345; public static void Main() { var c = new C(1, 2); Console.Write(c.X); Console.Write(c.Y); Console.Write(c.Z); } }"; var verifier = CompileAndVerify(src, expectedOutput: @"12345").VerifyDiagnostics(); var c = verifier.Compilation.GlobalNamespace.GetTypeMember("C"); Assert.True(c.IsReadOnly); var x = (IPropertySymbol)c.GetMember("X"); Assert.Equal("System.Int32 C.X.get", x.GetMethod.ToTestDisplayString()); Assert.Equal("void modreq(System.Runtime.CompilerServices.IsExternalInit) C.X.init", x.SetMethod.ToTestDisplayString()); Assert.True(x.SetMethod!.IsInitOnly); var xBackingField = (IFieldSymbol)c.GetMember("<X>k__BackingField"); Assert.Equal("System.Int32 C.<X>k__BackingField", xBackingField.ToTestDisplayString()); Assert.True(xBackingField.IsReadOnly); } [Fact] public void RecordProperties_01_ReadonlyMismatch() { var src = @" readonly record struct C(int X) { public int X { get; set; } = X; // 1 } record struct C2(int X) { public int X { get; init; } = X; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,16): error CS8341: Auto-implemented instance properties in readonly structs must be readonly. // public int X { get; set; } = X; // 1 Diagnostic(ErrorCode.ERR_AutoPropsInRoStruct, "X").WithLocation(4, 16) ); } [Fact] public void RecordProperties_02() { var src = @" using System; record struct C(int X, int Y) { public C(int a, int b) { } public static void Main() { var c = new C(1, 2); Console.WriteLine(c.X); Console.WriteLine(c.Y); } private int X1 = X; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (5,12): error CS0111: Type 'C' already defines a member called 'C' with the same parameter types // public C(int a, int b) Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "C").WithArguments("C", "C").WithLocation(5, 12), // (5,12): error CS8862: A constructor declared in a record with parameter list must have 'this' constructor initializer. // public C(int a, int b) Diagnostic(ErrorCode.ERR_UnexpectedOrMissingConstructorInitializerInRecord, "C").WithLocation(5, 12), // (11,21): error CS0121: The call is ambiguous between the following methods or properties: 'C.C(int, int)' and 'C.C(int, int)' // var c = new C(1, 2); Diagnostic(ErrorCode.ERR_AmbigCall, "C").WithArguments("C.C(int, int)", "C.C(int, int)").WithLocation(11, 21) ); } [Fact] public void RecordProperties_03() { var src = @" using System; record struct C(int X, int Y) { public int X { get; } public static void Main() { var c = new C(1, 2); Console.WriteLine(c.X); Console.WriteLine(c.Y); } }"; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (3,15): error CS0843: Auto-implemented property 'C.X' must be fully assigned before control is returned to the caller. // record struct C(int X, int Y) Diagnostic(ErrorCode.ERR_UnassignedThisAutoProperty, "C").WithArguments("C.X").WithLocation(3, 15), // (3,21): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(int X, int Y) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(3, 21) ); } [Fact] public void RecordProperties_03_InitializedWithY() { var src = @" using System; record struct C(int X, int Y) { public int X { get; } = Y; public static void Main() { var c = new C(1, 2); Console.Write(c.X); Console.Write(c.Y); } }"; CompileAndVerify(src, expectedOutput: "22") .VerifyDiagnostics( // (3,21): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(int X, int Y) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(3, 21) ); } [Fact] public void RecordProperties_04() { var src = @" using System; record struct C(int X, int Y) { public int X { get; } = 3; public static void Main() { var c = new C(1, 2); Console.Write(c.X); Console.Write(c.Y); } }"; CompileAndVerify(src, expectedOutput: "32") .VerifyDiagnostics( // (3,21): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(int X, int Y) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(3, 21) ); } [Fact] public void RecordProperties_05() { var src = @" record struct C(int X, int X) { }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,28): error CS0100: The parameter name 'X' is a duplicate // record struct C(int X, int X) Diagnostic(ErrorCode.ERR_DuplicateParamName, "X").WithArguments("X").WithLocation(2, 28), // (2,28): error CS0102: The type 'C' already contains a definition for 'X' // record struct C(int X, int X) Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "X").WithArguments("C", "X").WithLocation(2, 28) ); var expectedMembers = new[] { "System.Int32 C.X { get; set; }", "System.Int32 C.X { get; set; }" }; AssertEx.Equal(expectedMembers, comp.GetMember<NamedTypeSymbol>("C").GetMembers().OfType<PropertySymbol>().ToTestDisplayStrings()); var expectedMemberNames = new[] { ".ctor", "<X>k__BackingField", "get_X", "set_X", "X", "<X>k__BackingField", "get_X", "set_X", "X", "ToString", "PrintMembers", "op_Inequality", "op_Equality", "GetHashCode", "Equals", "Equals", "Deconstruct", ".ctor" }; AssertEx.Equal(expectedMemberNames, comp.GetMember<NamedTypeSymbol>("C").GetPublicSymbol().MemberNames); } [Fact] public void RecordProperties_06() { var src = @" record struct C(int X, int Y) { public void get_X() { } public void set_X() { } int get_Y(int value) => value; int set_Y(int value) => value; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,21): error CS0082: Type 'C' already reserves a member called 'get_X' with the same parameter types // record struct C(int X, int Y) Diagnostic(ErrorCode.ERR_MemberReserved, "X").WithArguments("get_X", "C").WithLocation(2, 21), // (2,28): error CS0082: Type 'C' already reserves a member called 'set_Y' with the same parameter types // record struct C(int X, int Y) Diagnostic(ErrorCode.ERR_MemberReserved, "Y").WithArguments("set_Y", "C").WithLocation(2, 28) ); var actualMembers = comp.GetMember<NamedTypeSymbol>("C").GetMembers().ToTestDisplayStrings(); var expectedMembers = new[] { "C..ctor(System.Int32 X, System.Int32 Y)", "System.Int32 C.<X>k__BackingField", "readonly System.Int32 C.X.get", "void C.X.set", "System.Int32 C.X { get; set; }", "System.Int32 C.<Y>k__BackingField", "readonly System.Int32 C.Y.get", "void C.Y.set", "System.Int32 C.Y { get; set; }", "void C.get_X()", "void C.set_X()", "System.Int32 C.get_Y(System.Int32 value)", "System.Int32 C.set_Y(System.Int32 value)", "readonly System.String C.ToString()", "readonly System.Boolean C.PrintMembers(System.Text.StringBuilder builder)", "System.Boolean C.op_Inequality(C left, C right)", "System.Boolean C.op_Equality(C left, C right)", "readonly System.Int32 C.GetHashCode()", "readonly System.Boolean C.Equals(System.Object obj)", "readonly System.Boolean C.Equals(C other)", "readonly void C.Deconstruct(out System.Int32 X, out System.Int32 Y)", "C..ctor()", }; AssertEx.Equal(expectedMembers, actualMembers); } [Fact] public void RecordProperties_07() { var comp = CreateCompilation(@" record struct C1(object P, object get_P); record struct C2(object get_P, object P);"); comp.VerifyDiagnostics( // (2,25): error CS0102: The type 'C1' already contains a definition for 'get_P' // record struct C1(object P, object get_P); Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "P").WithArguments("C1", "get_P").WithLocation(2, 25), // (3,39): error CS0102: The type 'C2' already contains a definition for 'get_P' // record struct C2(object get_P, object P); Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "P").WithArguments("C2", "get_P").WithLocation(3, 39) ); } [Fact] public void RecordProperties_08() { var comp = CreateCompilation(@" record struct C1(object O1) { public object O1 { get; } = O1; public object O2 { get; } = O1; }"); comp.VerifyDiagnostics(); } [Fact] public void RecordProperties_09() { var src = @" record struct C(object P1, object P2, object P3, object P4) { class P1 { } object P2 = 2; int P3(object o) => 3; int P4<T>(T t) => 4; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,24): error CS0102: The type 'C' already contains a definition for 'P1' // record struct C(object P1, object P2, object P3, object P4) Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "P1").WithArguments("C", "P1").WithLocation(2, 24), // (2,35): warning CS8907: Parameter 'P2' is unread. Did you forget to use it to initialize the property with that name? // record struct C(object P1, object P2, object P3, object P4) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P2").WithArguments("P2").WithLocation(2, 35), // (6,9): error CS0102: The type 'C' already contains a definition for 'P3' // int P3(object o) => 3; Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "P3").WithArguments("C", "P3").WithLocation(6, 9), // (7,9): error CS0102: The type 'C' already contains a definition for 'P4' // int P4<T>(T t) => 4; Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "P4").WithArguments("C", "P4").WithLocation(7, 9) ); } [Fact] public void RecordProperties_10() { var src = @" record struct C(object P) { const int P = 4; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,24): error CS8866: Record member 'C.P' must be a readable instance property or field of type 'object' to match positional parameter 'P'. // record struct C(object P) Diagnostic(ErrorCode.ERR_BadRecordMemberForPositionalParameter, "P").WithArguments("C.P", "object", "P").WithLocation(2, 24), // (2,24): warning CS8907: Parameter 'P' is unread. Did you forget to use it to initialize the property with that name? // record struct C(object P) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P").WithArguments("P").WithLocation(2, 24) ); } [Fact] public void RecordProperties_11_UnreadPositionalParameter() { var comp = CreateCompilation(@" record struct C1(object O1, object O2, object O3) // 1, 2 { public object O1 { get; init; } public object O2 { get; init; } = M(O2); public object O3 { get; init; } = M(O3 = null); private static object M(object o) => o; } "); comp.VerifyDiagnostics( // (2,15): error CS0843: Auto-implemented property 'C1.O1' must be fully assigned before control is returned to the caller. // record struct C1(object O1, object O2, object O3) // 1, 2 Diagnostic(ErrorCode.ERR_UnassignedThisAutoProperty, "C1").WithArguments("C1.O1").WithLocation(2, 15), // (2,25): warning CS8907: Parameter 'O1' is unread. Did you forget to use it to initialize the property with that name? // record struct C1(object O1, object O2, object O3) // 1, 2 Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "O1").WithArguments("O1").WithLocation(2, 25), // (2,47): warning CS8907: Parameter 'O3' is unread. Did you forget to use it to initialize the property with that name? // record struct C1(object O1, object O2, object O3) // 1, 2 Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "O3").WithArguments("O3").WithLocation(2, 47) ); } [Fact] public void RecordProperties_11_UnreadPositionalParameter_InRefOut() { var comp = CreateCompilation(@" record struct C1(object O1, object O2, object O3) // 1 { public object O1 { get; init; } = MIn(in O1); public object O2 { get; init; } = MRef(ref O2); public object O3 { get; init; } = MOut(out O3); static object MIn(in object o) => o; static object MRef(ref object o) => o; static object MOut(out object o) => throw null; } "); comp.VerifyDiagnostics( // (2,47): warning CS8907: Parameter 'O3' is unread. Did you forget to use it to initialize the property with that name? // record struct C1(object O1, object O2, object O3) // 1 Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "O3").WithArguments("O3").WithLocation(2, 47) ); } [Fact] public void RecordProperties_SelfContainedStruct() { var comp = CreateCompilation(@" record struct C(C c); "); comp.VerifyDiagnostics( // (2,19): error CS0523: Struct member 'C.c' of type 'C' causes a cycle in the struct layout // record struct C(C c); Diagnostic(ErrorCode.ERR_StructLayoutCycle, "c").WithArguments("C.c", "C").WithLocation(2, 19) ); } [Fact] public void RecordProperties_PropertyInValueType() { var corlib_cs = @" namespace System { public class Object { public virtual bool Equals(object x) => throw null; public virtual int GetHashCode() => throw null; public virtual string ToString() => throw null; } public class Exception { } public class ValueType { public bool X { get; set; } } public class Attribute { } public class String { } public struct Void { } public struct Boolean { } public struct Char { } public struct Int32 { } public interface IEquatable<T> { } } namespace System.Collections.Generic { public abstract class EqualityComparer<T> { public static EqualityComparer<T> Default => throw null; public abstract int GetHashCode(T t); } } namespace System.Text { public class StringBuilder { public StringBuilder Append(string s) => null; public StringBuilder Append(char c) => null; public StringBuilder Append(object o) => null; } } "; var corlibRef = CreateEmptyCompilation(corlib_cs).EmitToImageReference(); { var src = @" record struct C(bool X) { bool M() { return X; } } "; var comp = CreateEmptyCompilation(src, parseOptions: TestOptions.RegularPreview, references: new[] { corlibRef }); comp.VerifyEmitDiagnostics( // (2,22): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(bool X) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(2, 22) ); Assert.Null(comp.GlobalNamespace.GetTypeMember("C").GetMember("X")); var tree = comp.SyntaxTrees.Single(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var x = tree.GetRoot().DescendantNodes().OfType<ReturnStatementSyntax>().Single().Expression; Assert.Equal("System.Boolean System.ValueType.X { get; set; }", model.GetSymbolInfo(x!).Symbol.ToTestDisplayString()); } { var src = @" readonly record struct C(bool X) { bool M() { return X; } } "; var comp = CreateEmptyCompilation(src, parseOptions: TestOptions.RegularPreview, references: new[] { corlibRef }); comp.VerifyEmitDiagnostics( // (2,31): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // readonly record struct C(bool X) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(2, 31) ); Assert.Null(comp.GlobalNamespace.GetTypeMember("C").GetMember("X")); var tree = comp.SyntaxTrees.Single(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var x = tree.GetRoot().DescendantNodes().OfType<ReturnStatementSyntax>().Single().Expression; Assert.Equal("System.Boolean System.ValueType.X { get; set; }", model.GetSymbolInfo(x!).Symbol.ToTestDisplayString()); } } [Fact] public void RecordProperties_PropertyInValueType_Static() { var corlib_cs = @" namespace System { public class Object { public virtual bool Equals(object x) => throw null; public virtual int GetHashCode() => throw null; public virtual string ToString() => throw null; } public class Exception { } public class ValueType { public static bool X { get; set; } } public class Attribute { } public class String { } public struct Void { } public struct Boolean { } public struct Char { } public struct Int32 { } public interface IEquatable<T> { } } namespace System.Collections.Generic { public abstract class EqualityComparer<T> { public static EqualityComparer<T> Default => throw null; public abstract int GetHashCode(T t); } } namespace System.Text { public class StringBuilder { public StringBuilder Append(string s) => null; public StringBuilder Append(char c) => null; public StringBuilder Append(object o) => null; } } "; var corlibRef = CreateEmptyCompilation(corlib_cs).EmitToImageReference(); var src = @" record struct C(bool X) { bool M() { return X; } } "; var comp = CreateEmptyCompilation(src, parseOptions: TestOptions.RegularPreview, references: new[] { corlibRef }); comp.VerifyEmitDiagnostics( // (2,22): error CS8866: Record member 'System.ValueType.X' must be a readable instance property or field of type 'bool' to match positional parameter 'X'. // record struct C(bool X) Diagnostic(ErrorCode.ERR_BadRecordMemberForPositionalParameter, "X").WithArguments("System.ValueType.X", "bool", "X").WithLocation(2, 22), // (2,22): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(bool X) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(2, 22) ); } [Fact] public void StaticCtor() { var src = @" record R(int x) { static void Main() { } static R() { System.Console.Write(""static ctor""); } } "; var comp = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.DebugExe); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "static ctor", verify: Verification.Skipped /* init-only */); } [Fact] public void StaticCtor_ParameterlessPrimaryCtor() { var src = @" record struct R(int I) { static R() { } } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); } [Fact] public void StaticCtor_CopyCtor() { var src = @" record struct R(int I) { static R(R r) { } } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,12): error CS0132: 'R.R(R)': a static constructor must be parameterless // static R(R r) { } Diagnostic(ErrorCode.ERR_StaticConstParam, "R").WithArguments("R.R(R)").WithLocation(4, 12) ); } [Fact] public void InterfaceImplementation_NotReadonly() { var source = @" I r = new R(42); r.P2 = 43; r.P3 = 44; System.Console.Write((r.P1, r.P2, r.P3)); interface I { int P1 { get; set; } int P2 { get; set; } int P3 { get; set; } } record struct R(int P1) : I { public int P2 { get; set; } = 0; int I.P3 { get; set; } = 0; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "(42, 43, 44)"); } [Fact] public void InterfaceImplementation_NotReadonly_InitOnlyInterface() { var source = @" interface I { int P1 { get; init; } } record struct R(int P1) : I; "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (6,27): error CS8854: 'R' does not implement interface member 'I.P1.init'. 'R.P1.set' cannot implement 'I.P1.init'. // record struct R(int P1) : I; Diagnostic(ErrorCode.ERR_CloseUnimplementedInterfaceMemberWrongInitOnly, "I").WithArguments("R", "I.P1.init", "R.P1.set").WithLocation(6, 27) ); } [Fact] public void InterfaceImplementation_Readonly() { var source = @" I r = new R(42) { P2 = 43 }; System.Console.Write((r.P1, r.P2)); interface I { int P1 { get; init; } int P2 { get; init; } } readonly record struct R(int P1) : I { public int P2 { get; init; } = 0; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "(42, 43)", verify: Verification.Skipped /* init-only */); } [Fact] public void InterfaceImplementation_Readonly_SetInterface() { var source = @" interface I { int P1 { get; set; } } readonly record struct R(int P1) : I; "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (6,36): error CS8854: 'R' does not implement interface member 'I.P1.set'. 'R.P1.init' cannot implement 'I.P1.set'. // readonly record struct R(int P1) : I; Diagnostic(ErrorCode.ERR_CloseUnimplementedInterfaceMemberWrongInitOnly, "I").WithArguments("R", "I.P1.set", "R.P1.init").WithLocation(6, 36) ); } [Fact] public void InterfaceImplementation_Readonly_PrivateImplementation() { var source = @" I r = new R(42) { P2 = 43, P3 = 44 }; System.Console.Write((r.P1, r.P2, r.P3)); interface I { int P1 { get; init; } int P2 { get; init; } int P3 { get; init; } } readonly record struct R(int P1) : I { public int P2 { get; init; } = 0; int I.P3 { get; init; } = 0; // not practically initializable } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (2,28): error CS0117: 'R' does not contain a definition for 'P3' // I r = new R(42) { P2 = 43, P3 = 44 }; Diagnostic(ErrorCode.ERR_NoSuchMember, "P3").WithArguments("R", "P3").WithLocation(2, 28) ); } [Fact] public void Initializers_01() { var src = @" using System; record struct C(int X) { int Z = X + 1; public static void Main() { var c = new C(1); Console.WriteLine(c.Z); } }"; var verifier = CompileAndVerify(src, expectedOutput: @"2").VerifyDiagnostics(); var comp = CreateCompilation(src); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree); var x = tree.GetRoot().DescendantNodes().OfType<IdentifierNameSyntax>().Where(id => id.Identifier.ValueText == "X").First(); Assert.Equal("= X + 1", x.Parent!.Parent!.ToString()); var symbol = model.GetSymbolInfo(x).Symbol; Assert.Equal(SymbolKind.Parameter, symbol!.Kind); Assert.Equal("System.Int32 X", symbol.ToTestDisplayString()); Assert.Equal("C..ctor(System.Int32 X)", symbol.ContainingSymbol.ToTestDisplayString()); Assert.Equal("System.Int32 C.Z", model.GetEnclosingSymbol(x.SpanStart).ToTestDisplayString()); Assert.Contains(symbol, model.LookupSymbols(x.SpanStart, name: "X")); Assert.Contains("X", model.LookupNames(x.SpanStart)); var recordDeclaration = tree.GetRoot().DescendantNodes().OfType<RecordDeclarationSyntax>().Single(); Assert.Equal("C", recordDeclaration.Identifier.ValueText); Assert.Null(model.GetOperation(recordDeclaration)); } [Fact] public void Initializers_02() { var src = @" record struct C(int X) { static int Z = X + 1; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (4,20): error CS0236: A field initializer cannot reference the non-static field, method, or property 'C.X' // static int Z = X + 1; Diagnostic(ErrorCode.ERR_FieldInitRefNonstatic, "X").WithArguments("C.X").WithLocation(4, 20) ); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree); var x = tree.GetRoot().DescendantNodes().OfType<IdentifierNameSyntax>().Where(id => id.Identifier.ValueText == "X").First(); Assert.Equal("= X + 1", x.Parent!.Parent!.ToString()); var symbol = model.GetSymbolInfo(x).Symbol; Assert.Equal(SymbolKind.Property, symbol!.Kind); Assert.Equal("System.Int32 C.X { get; set; }", symbol.ToTestDisplayString()); Assert.Equal("C", symbol.ContainingSymbol.ToTestDisplayString()); Assert.Equal("System.Int32 C.Z", model.GetEnclosingSymbol(x.SpanStart).ToTestDisplayString()); Assert.Contains(symbol, model.LookupSymbols(x.SpanStart, name: "X")); Assert.Contains("X", model.LookupNames(x.SpanStart)); } [Fact] public void Initializers_03() { var src = @" record struct C(int X) { const int Z = X + 1; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (4,19): error CS0236: A field initializer cannot reference the non-static field, method, or property 'C.X' // const int Z = X + 1; Diagnostic(ErrorCode.ERR_FieldInitRefNonstatic, "X").WithArguments("C.X").WithLocation(4, 19) ); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree); var x = tree.GetRoot().DescendantNodes().OfType<IdentifierNameSyntax>().Where(id => id.Identifier.ValueText == "X").First(); Assert.Equal("= X + 1", x.Parent!.Parent!.ToString()); var symbol = model.GetSymbolInfo(x).Symbol; Assert.Equal(SymbolKind.Property, symbol!.Kind); Assert.Equal("System.Int32 C.X { get; set; }", symbol.ToTestDisplayString()); Assert.Equal("C", symbol.ContainingSymbol.ToTestDisplayString()); Assert.Equal("System.Int32 C.Z", model.GetEnclosingSymbol(x.SpanStart).ToTestDisplayString()); Assert.Contains(symbol, model.LookupSymbols(x.SpanStart, name: "X")); Assert.Contains("X", model.LookupNames(x.SpanStart)); } [Fact] public void Initializers_04() { var src = @" using System; record struct C(int X) { Func<int> Z = () => X + 1; public static void Main() { var c = new C(1); Console.WriteLine(c.Z()); } }"; var verifier = CompileAndVerify(src, expectedOutput: @"2").VerifyDiagnostics(); var comp = CreateCompilation(src); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree); var x = tree.GetRoot().DescendantNodes().OfType<IdentifierNameSyntax>().Where(id => id.Identifier.ValueText == "X").First(); Assert.Equal("() => X + 1", x.Parent!.Parent!.ToString()); var symbol = model.GetSymbolInfo(x).Symbol; Assert.Equal(SymbolKind.Parameter, symbol!.Kind); Assert.Equal("System.Int32 X", symbol.ToTestDisplayString()); Assert.Equal("C..ctor(System.Int32 X)", symbol.ContainingSymbol.ToTestDisplayString()); Assert.Equal("lambda expression", model.GetEnclosingSymbol(x.SpanStart).ToTestDisplayString()); Assert.Contains(symbol, model.LookupSymbols(x.SpanStart, name: "X")); Assert.Contains("X", model.LookupNames(x.SpanStart)); } [Fact] public void SynthesizedRecordPointerProperty() { var src = @" record struct R(int P1, int* P2, delegate*<int> P3);"; var comp = CreateCompilation(src); var p = comp.GlobalNamespace.GetTypeMember("R").GetMember<SourcePropertySymbolBase>("P1"); Assert.False(p.HasPointerType); p = comp.GlobalNamespace.GetTypeMember("R").GetMember<SourcePropertySymbolBase>("P2"); Assert.True(p.HasPointerType); p = comp.GlobalNamespace.GetTypeMember("R").GetMember<SourcePropertySymbolBase>("P3"); Assert.True(p.HasPointerType); } [Fact] public void PositionalMemberModifiers_In() { var src = @" var r = new R(42); int i = 43; var r2 = new R(in i); System.Console.Write((r.P1, r2.P1)); record struct R(in int P1); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "(42, 43)"); var actualMembers = comp.GetMember<NamedTypeSymbol>("R").Constructors.ToTestDisplayStrings(); var expectedMembers = new[] { "R..ctor(in System.Int32 P1)", "R..ctor()" }; AssertEx.Equal(expectedMembers, actualMembers); } [Fact] public void PositionalMemberModifiers_Params() { var src = @" var r = new R(42, 43); var r2 = new R(new[] { 44, 45 }); System.Console.Write((r.Array[0], r.Array[1], r2.Array[0], r2.Array[1])); record struct R(params int[] Array); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "(42, 43, 44, 45)"); var actualMembers = comp.GetMember<NamedTypeSymbol>("R").Constructors.ToTestDisplayStrings(); var expectedMembers = new[] { "R..ctor(params System.Int32[] Array)", "R..ctor()" }; AssertEx.Equal(expectedMembers, actualMembers); } [Fact] public void PositionalMemberDefaultValue() { var src = @" var r = new R(); // This uses the parameterless constructor System.Console.Write(r.P); record struct R(int P = 42); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "0"); } [Fact] public void PositionalMemberDefaultValue_PassingOneArgument() { var src = @" var r = new R(41); System.Console.Write(r.O); System.Console.Write("" ""); System.Console.Write(r.P); record struct R(int O, int P = 42); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "41 42"); } [Fact] public void PositionalMemberDefaultValue_AndPropertyWithInitializer() { var src = @" var r = new R(0); System.Console.Write(r.P); record struct R(int O, int P = 1) { public int P { get; init; } = 42; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (5,28): warning CS8907: Parameter 'P' is unread. Did you forget to use it to initialize the property with that name? // record struct R(int O, int P = 1) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P").WithArguments("P").WithLocation(5, 28) ); var verifier = CompileAndVerify(comp, expectedOutput: "42", verify: Verification.Skipped /* init-only */); verifier.VerifyIL("R..ctor(int, int)", @" { // Code size 16 (0x10) .maxstack 2 IL_0000: ldarg.0 IL_0001: ldarg.1 IL_0002: stfld ""int R.<O>k__BackingField"" IL_0007: ldarg.0 IL_0008: ldc.i4.s 42 IL_000a: stfld ""int R.<P>k__BackingField"" IL_000f: ret }"); } [Fact] public void PositionalMemberDefaultValue_AndPropertyWithoutInitializer() { var src = @" record struct R(int P = 42) { public int P { get; init; } public static void Main() { var r = new R(); System.Console.Write(r.P); } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,15): error CS0843: Auto-implemented property 'R.P' must be fully assigned before control is returned to the caller. // record struct R(int P = 42) Diagnostic(ErrorCode.ERR_UnassignedThisAutoProperty, "R").WithArguments("R.P").WithLocation(2, 15), // (2,21): warning CS8907: Parameter 'P' is unread. Did you forget to use it to initialize the property with that name? // record struct R(int P = 42) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P").WithArguments("P").WithLocation(2, 21) ); } [Fact] public void PositionalMemberDefaultValue_AndPropertyWithInitializer_CopyingParameter() { var src = @" var r = new R(0); System.Console.Write(r.P); record struct R(int O, int P = 42) { public int P { get; init; } = P; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42", verify: Verification.Skipped /* init-only */); verifier.VerifyIL("R..ctor(int, int)", @" { // Code size 15 (0xf) .maxstack 2 IL_0000: ldarg.0 IL_0001: ldarg.1 IL_0002: stfld ""int R.<O>k__BackingField"" IL_0007: ldarg.0 IL_0008: ldarg.2 IL_0009: stfld ""int R.<P>k__BackingField"" IL_000e: ret }"); } [Fact] public void RecordWithConstraints_NullableWarning() { var src = @" #nullable enable var r = new R<string?>(""R""); var r2 = new R2<string?>(""R2""); System.Console.Write((r.P, r2.P)); record struct R<T>(T P) where T : class; record struct R2<T>(T P) where T : class { } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (3,15): warning CS8634: The type 'string?' cannot be used as type parameter 'T' in the generic type or method 'R<T>'. Nullability of type argument 'string?' doesn't match 'class' constraint. // var r = new R<string?>("R"); Diagnostic(ErrorCode.WRN_NullabilityMismatchInTypeParameterReferenceTypeConstraint, "string?").WithArguments("R<T>", "T", "string?").WithLocation(3, 15), // (4,17): warning CS8634: The type 'string?' cannot be used as type parameter 'T' in the generic type or method 'R2<T>'. Nullability of type argument 'string?' doesn't match 'class' constraint. // var r2 = new R2<string?>("R2"); Diagnostic(ErrorCode.WRN_NullabilityMismatchInTypeParameterReferenceTypeConstraint, "string?").WithArguments("R2<T>", "T", "string?").WithLocation(4, 17) ); CompileAndVerify(comp, expectedOutput: "(R, R2)"); } [Fact] public void RecordWithConstraints_ConstraintError() { var src = @" record struct R<T>(T P) where T : class; record struct R2<T>(T P) where T : class { } public class C { public static void Main() { _ = new R<int>(1); _ = new R2<int>(2); } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (9,19): error CS0452: The type 'int' must be a reference type in order to use it as parameter 'T' in the generic type or method 'R<T>' // _ = new R<int>(1); Diagnostic(ErrorCode.ERR_RefConstraintNotSatisfied, "int").WithArguments("R<T>", "T", "int").WithLocation(9, 19), // (10,20): error CS0452: The type 'int' must be a reference type in order to use it as parameter 'T' in the generic type or method 'R2<T>' // _ = new R2<int>(2); Diagnostic(ErrorCode.ERR_RefConstraintNotSatisfied, "int").WithArguments("R2<T>", "T", "int").WithLocation(10, 20) ); } [Fact] public void CyclicBases4() { var text = @" record struct A<T> : B<A<T>> { } record struct B<T> : A<B<T>> { A<T> F() { return null; } } "; var comp = CreateCompilation(text); comp.GetDeclarationDiagnostics().Verify( // (3,22): error CS0527: Type 'A<B<T>>' in interface list is not an interface // record struct B<T> : A<B<T>> Diagnostic(ErrorCode.ERR_NonInterfaceInInterfaceList, "A<B<T>>").WithArguments("A<B<T>>").WithLocation(3, 22), // (2,22): error CS0527: Type 'B<A<T>>' in interface list is not an interface // record struct A<T> : B<A<T>> { } Diagnostic(ErrorCode.ERR_NonInterfaceInInterfaceList, "B<A<T>>").WithArguments("B<A<T>>").WithLocation(2, 22) ); } [Fact] public void PartialClassWithDifferentTupleNamesInImplementedInterfaces() { var source = @" public interface I<T> { } public partial record C1 : I<(int a, int b)> { } public partial record C1 : I<(int notA, int notB)> { } public partial record C2 : I<(int a, int b)> { } public partial record C2 : I<(int, int)> { } public partial record C3 : I<(int a, int b)> { } public partial record C3 : I<(int a, int b)> { } public partial record C4 : I<(int a, int b)> { } public partial record C4 : I<(int b, int a)> { } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (3,23): error CS8140: 'I<(int notA, int notB)>' is already listed in the interface list on type 'C1' with different tuple element names, as 'I<(int a, int b)>'. // public partial record C1 : I<(int a, int b)> { } Diagnostic(ErrorCode.ERR_DuplicateInterfaceWithTupleNamesInBaseList, "C1").WithArguments("I<(int notA, int notB)>", "I<(int a, int b)>", "C1").WithLocation(3, 23), // (6,23): error CS8140: 'I<(int, int)>' is already listed in the interface list on type 'C2' with different tuple element names, as 'I<(int a, int b)>'. // public partial record C2 : I<(int a, int b)> { } Diagnostic(ErrorCode.ERR_DuplicateInterfaceWithTupleNamesInBaseList, "C2").WithArguments("I<(int, int)>", "I<(int a, int b)>", "C2").WithLocation(6, 23), // (12,23): error CS8140: 'I<(int b, int a)>' is already listed in the interface list on type 'C4' with different tuple element names, as 'I<(int a, int b)>'. // public partial record C4 : I<(int a, int b)> { } Diagnostic(ErrorCode.ERR_DuplicateInterfaceWithTupleNamesInBaseList, "C4").WithArguments("I<(int b, int a)>", "I<(int a, int b)>", "C4").WithLocation(12, 23) ); } [Fact] public void CS0267ERR_PartialMisplaced() { var test = @" partial public record struct C // CS0267 { } "; CreateCompilation(test).VerifyDiagnostics( // (2,1): error CS0267: The 'partial' modifier can only appear immediately before 'class', 'record', 'struct', 'interface', or a method return type. // partial public record struct C // CS0267 Diagnostic(ErrorCode.ERR_PartialMisplaced, "partial").WithLocation(2, 1) ); } [Fact] public void SealedStaticRecord() { var source = @" sealed static record struct R; "; CreateCompilation(source).VerifyDiagnostics( // (2,29): error CS0106: The modifier 'sealed' is not valid for this item // sealed static record struct R; Diagnostic(ErrorCode.ERR_BadMemberFlag, "R").WithArguments("sealed").WithLocation(2, 29), // (2,29): error CS0106: The modifier 'static' is not valid for this item // sealed static record struct R; Diagnostic(ErrorCode.ERR_BadMemberFlag, "R").WithArguments("static").WithLocation(2, 29) ); } [Fact] public void CS0513ERR_AbstractInConcreteClass02() { var text = @" record struct C { public abstract event System.Action E; public abstract int this[int x] { get; set; } } "; CreateCompilation(text).VerifyDiagnostics( // (5,25): error CS0106: The modifier 'abstract' is not valid for this item // public abstract int this[int x] { get; set; } Diagnostic(ErrorCode.ERR_BadMemberFlag, "this").WithArguments("abstract").WithLocation(5, 25), // (4,41): error CS0106: The modifier 'abstract' is not valid for this item // public abstract event System.Action E; Diagnostic(ErrorCode.ERR_BadMemberFlag, "E").WithArguments("abstract").WithLocation(4, 41) ); } [Fact] public void CS0574ERR_BadDestructorName() { var test = @" public record struct iii { ~iiii(){} } "; CreateCompilation(test).VerifyDiagnostics( // (4,6): error CS0574: Name of destructor must match name of type // ~iiii(){} Diagnostic(ErrorCode.ERR_BadDestructorName, "iiii").WithLocation(4, 6), // (4,6): error CS0575: Only class types can contain destructors // ~iiii(){} Diagnostic(ErrorCode.ERR_OnlyClassesCanContainDestructors, "iiii").WithArguments("iii.~iii()").WithLocation(4, 6) ); } [Fact] public void StaticRecordWithConstructorAndDestructor() { var text = @" static record struct R(int I) { public R() : this(0) { } ~R() { } } "; var comp = CreateCompilation(text); comp.VerifyDiagnostics( // (2,22): error CS0106: The modifier 'static' is not valid for this item // static record struct R(int I) Diagnostic(ErrorCode.ERR_BadMemberFlag, "R").WithArguments("static").WithLocation(2, 22), // (5,6): error CS0575: Only class types can contain destructors // ~R() { } Diagnostic(ErrorCode.ERR_OnlyClassesCanContainDestructors, "R").WithArguments("R.~R()").WithLocation(5, 6) ); } [Fact] public void RecordWithPartialMethodExplicitImplementation() { var source = @"record struct R { partial void M(); }"; CreateCompilation(source).VerifyDiagnostics( // (3,18): error CS0751: A partial method must be declared within a partial type // partial void M(); Diagnostic(ErrorCode.ERR_PartialMethodOnlyInPartialClass, "M").WithLocation(3, 18) ); } [Fact] public void RecordWithPartialMethodRequiringBody() { var source = @"partial record struct R { public partial int M(); }"; CreateCompilation(source).VerifyDiagnostics( // (3,24): error CS8795: Partial method 'R.M()' must have an implementation part because it has accessibility modifiers. // public partial int M(); Diagnostic(ErrorCode.ERR_PartialMethodWithAccessibilityModsMustHaveImplementation, "M").WithArguments("R.M()").WithLocation(3, 24) ); } [Fact] public void CanDeclareIteratorInRecord() { var source = @" using System.Collections.Generic; foreach(var i in new X(42).GetItems()) { System.Console.Write(i); } public record struct X(int a) { public IEnumerable<int> GetItems() { yield return a; yield return a + 1; } }"; var comp = CreateCompilation(source).VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "4243"); } [Fact] public void ParameterlessConstructor() { var src = @" System.Console.Write(new C().Property); record struct C() { public int Property { get; set; } = 42; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "42"); } [Fact] public void XmlDoc() { var src = @" /// <summary>Summary</summary> /// <param name=""I1"">Description for I1</param> public record struct C(int I1); namespace System.Runtime.CompilerServices { /// <summary>Ignored</summary> public static class IsExternalInit { } } "; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularWithDocumentationComments); comp.VerifyDiagnostics(); var cMember = comp.GetMember<NamedTypeSymbol>("C"); Assert.Equal( @"<member name=""T:C""> <summary>Summary</summary> <param name=""I1"">Description for I1</param> </member> ", cMember.GetDocumentationCommentXml()); var constructor = cMember.GetMembers(".ctor").OfType<SynthesizedRecordConstructor>().Single(); Assert.Equal( @"<member name=""M:C.#ctor(System.Int32)""> <summary>Summary</summary> <param name=""I1"">Description for I1</param> </member> ", constructor.GetDocumentationCommentXml()); Assert.Equal("", constructor.GetParameters()[0].GetDocumentationCommentXml()); var property = cMember.GetMembers("I1").Single(); Assert.Equal("", property.GetDocumentationCommentXml()); } [Fact] public void XmlDoc_Cref() { var src = @" /// <summary>Summary</summary> /// <param name=""I1"">Description for <see cref=""I1""/></param> public record struct C(int I1) { /// <summary>Summary</summary> /// <param name=""x"">Description for <see cref=""x""/></param> public void M(int x) { } } namespace System.Runtime.CompilerServices { /// <summary>Ignored</summary> public static class IsExternalInit { } } "; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularWithDocumentationComments); comp.VerifyDiagnostics( // (7,52): warning CS1574: XML comment has cref attribute 'x' that could not be resolved // /// <param name="x">Description for <see cref="x"/></param> Diagnostic(ErrorCode.WRN_BadXMLRef, "x").WithArguments("x").WithLocation(7, 52) ); var tree = comp.SyntaxTrees.Single(); var docComments = tree.GetCompilationUnitRoot().DescendantTrivia().Select(trivia => trivia.GetStructure()).OfType<DocumentationCommentTriviaSyntax>(); var cref = docComments.First().DescendantNodes().OfType<XmlCrefAttributeSyntax>().First().Cref; Assert.Equal("I1", cref.ToString()); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); Assert.Equal(SymbolKind.Property, model.GetSymbolInfo(cref).Symbol!.Kind); } [Fact] public void Deconstruct_Simple() { var source = @"using System; record struct B(int X, int Y) { public static void Main() { M(new B(1, 2)); } static void M(B b) { switch (b) { case B(int x, int y): Console.Write(x); Console.Write(y); break; } } }"; var verifier = CompileAndVerify(source, expectedOutput: "12"); verifier.VerifyDiagnostics(); verifier.VerifyIL("B.Deconstruct", @" { // Code size 17 (0x11) .maxstack 2 IL_0000: ldarg.1 IL_0001: ldarg.0 IL_0002: call ""readonly int B.X.get"" IL_0007: stind.i4 IL_0008: ldarg.2 IL_0009: ldarg.0 IL_000a: call ""readonly int B.Y.get"" IL_000f: stind.i4 IL_0010: ret }"); var deconstruct = ((CSharpCompilation)verifier.Compilation).GetMember<MethodSymbol>("B.Deconstruct"); Assert.Equal(2, deconstruct.ParameterCount); Assert.Equal(RefKind.Out, deconstruct.Parameters[0].RefKind); Assert.Equal("X", deconstruct.Parameters[0].Name); Assert.Equal(RefKind.Out, deconstruct.Parameters[1].RefKind); Assert.Equal("Y", deconstruct.Parameters[1].Name); Assert.True(deconstruct.ReturnsVoid); Assert.False(deconstruct.IsVirtual); Assert.False(deconstruct.IsStatic); Assert.Equal(Accessibility.Public, deconstruct.DeclaredAccessibility); } [Fact] public void Deconstruct_PositionalAndNominalProperty() { var source = @"using System; record struct B(int X) { public int Y { get; init; } = 0; public static void Main() { M(new B(1)); } static void M(B b) { switch (b) { case B(int x): Console.Write(x); break; } } }"; var verifier = CompileAndVerify(source, expectedOutput: "1"); verifier.VerifyDiagnostics(); Assert.Equal( "readonly void B.Deconstruct(out System.Int32 X)", verifier.Compilation.GetMember("B.Deconstruct").ToTestDisplayString(includeNonNullable: false)); } [Fact] public void Deconstruct_Nested() { var source = @"using System; record struct B(int X, int Y); record struct C(B B, int Z) { public static void Main() { M(new C(new B(1, 2), 3)); } static void M(C c) { switch (c) { case C(B(int x, int y), int z): Console.Write(x); Console.Write(y); Console.Write(z); break; } } } "; var verifier = CompileAndVerify(source, expectedOutput: "123"); verifier.VerifyDiagnostics(); verifier.VerifyIL("B.Deconstruct", @" { // Code size 17 (0x11) .maxstack 2 IL_0000: ldarg.1 IL_0001: ldarg.0 IL_0002: call ""readonly int B.X.get"" IL_0007: stind.i4 IL_0008: ldarg.2 IL_0009: ldarg.0 IL_000a: call ""readonly int B.Y.get"" IL_000f: stind.i4 IL_0010: ret }"); verifier.VerifyIL("C.Deconstruct", @" { // Code size 21 (0x15) .maxstack 2 IL_0000: ldarg.1 IL_0001: ldarg.0 IL_0002: call ""readonly B C.B.get"" IL_0007: stobj ""B"" IL_000c: ldarg.2 IL_000d: ldarg.0 IL_000e: call ""readonly int C.Z.get"" IL_0013: stind.i4 IL_0014: ret }"); } [Fact] public void Deconstruct_PropertyCollision() { var source = @"using System; record struct B(int X, int Y) { public int X => 3; static void M(B b) { switch (b) { case B(int x, int y): Console.Write(x); Console.Write(y); break; } } static void Main() { M(new B(1, 2)); } } "; var verifier = CompileAndVerify(source, expectedOutput: "32"); verifier.VerifyDiagnostics( // (3,21): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct B(int X, int Y) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(3, 21) ); Assert.Equal( "void B.Deconstruct(out System.Int32 X, out System.Int32 Y)", verifier.Compilation.GetMember("B.Deconstruct").ToTestDisplayString(includeNonNullable: false)); } [Fact] public void Deconstruct_MethodCollision_01() { var source = @" record struct B(int X, int Y) { public int X() => 3; static void M(B b) { switch (b) { case B(int x, int y): break; } } static void Main() { M(new B(1, 2)); } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (4,16): error CS0102: The type 'B' already contains a definition for 'X' // public int X() => 3; Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "X").WithArguments("B", "X").WithLocation(4, 16) ); Assert.Equal( "readonly void B.Deconstruct(out System.Int32 X, out System.Int32 Y)", comp.GetMember("B.Deconstruct").ToTestDisplayString(includeNonNullable: false)); } [Fact] public void Deconstruct_FieldCollision() { var source = @" using System; record struct C(int X) { int X = 0; static void M(C c) { switch (c) { case C(int x): Console.Write(x); break; } } static void Main() { M(new C(0)); } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (4,21): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(int X) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(4, 21), // (6,9): warning CS0414: The field 'C.X' is assigned but its value is never used // int X = 0; Diagnostic(ErrorCode.WRN_UnreferencedFieldAssg, "X").WithArguments("C.X").WithLocation(6, 9)); Assert.Equal( "readonly void C.Deconstruct(out System.Int32 X)", comp.GetMember("C.Deconstruct").ToTestDisplayString(includeNonNullable: false)); } [Fact] public void Deconstruct_Empty() { var source = @" record struct C { static void M(C c) { switch (c) { case C(): break; } } static void Main() { M(new C()); } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (8,19): error CS1061: 'C' does not contain a definition for 'Deconstruct' and no accessible extension method 'Deconstruct' accepting a first argument of type 'C' could be found (are you missing a using directive or an assembly reference?) // case C(): Diagnostic(ErrorCode.ERR_NoSuchMemberOrExtension, "()").WithArguments("C", "Deconstruct").WithLocation(8, 19), // (8,19): error CS8129: No suitable 'Deconstruct' instance or extension method was found for type 'C', with 0 out parameters and a void return type. // case C(): Diagnostic(ErrorCode.ERR_MissingDeconstruct, "()").WithArguments("C", "0").WithLocation(8, 19)); Assert.Null(comp.GetMember("C.Deconstruct")); } [Fact] public void Deconstruct_Conversion_02() { var source = @" #nullable enable using System; record struct C(string? X, string Y) { public string X { get; init; } = null!; public string? Y { get; init; } = string.Empty; static void M(C c) { switch (c) { case C(var x, string y): Console.Write(x); Console.Write(y); break; } } static void Main() { M(new C(""a"", ""b"")); } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (5,25): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(string? X, string Y) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(5, 25), // (5,35): warning CS8907: Parameter 'Y' is unread. Did you forget to use it to initialize the property with that name? // record struct C(string? X, string Y) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "Y").WithArguments("Y").WithLocation(5, 35) ); Assert.Equal( "readonly void C.Deconstruct(out System.String? X, out System.String Y)", comp.GetMember("C.Deconstruct").ToTestDisplayString(includeNonNullable: false)); } [Fact] public void Deconstruct_Empty_WithParameterList() { var source = @" record struct C() { static void M(C c) { switch (c) { case C(): break; } } static void Main() { M(new C()); } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (8,19): error CS1061: 'C' does not contain a definition for 'Deconstruct' and no accessible extension method 'Deconstruct' accepting a first argument of type 'C' could be found (are you missing a using directive or an assembly reference?) // case C(): Diagnostic(ErrorCode.ERR_NoSuchMemberOrExtension, "()").WithArguments("C", "Deconstruct").WithLocation(8, 19), // (8,19): error CS8129: No suitable 'Deconstruct' instance or extension method was found for type 'C', with 0 out parameters and a void return type. // case C(): Diagnostic(ErrorCode.ERR_MissingDeconstruct, "()").WithArguments("C", "0").WithLocation(8, 19)); AssertEx.Equal(new[] { "C..ctor()", "void C.M(C c)", "void C.Main()", "readonly System.String C.ToString()", "readonly System.Boolean C.PrintMembers(System.Text.StringBuilder builder)", "System.Boolean C.op_Inequality(C left, C right)", "System.Boolean C.op_Equality(C left, C right)", "readonly System.Int32 C.GetHashCode()", "readonly System.Boolean C.Equals(System.Object obj)", "readonly System.Boolean C.Equals(C other)" }, comp.GetMember<NamedTypeSymbol>("C").GetMembers().ToTestDisplayStrings()); } [Fact] public void Deconstruct_Empty_WithParameterList_UserDefined_01() { var source = @"using System; record struct C(int I) { public void Deconstruct() { } static void M(C c) { switch (c) { case C(): Console.Write(12); break; } } public static void Main() { M(new C(42)); } } "; var verifier = CompileAndVerify(source, expectedOutput: "12"); verifier.VerifyDiagnostics(); } [Fact] public void Deconstruct_GeneratedAsReadOnly() { var src = @" record struct A(int I, string S); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var method = comp.GetMember<SynthesizedRecordDeconstruct>("A.Deconstruct"); Assert.True(method.IsDeclaredReadOnly); } [Fact] public void Deconstruct_WihtNonReadOnlyGetter_GeneratedAsNonReadOnly() { var src = @" record struct A(int I, string S) { public int I { get => 0; } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,21): warning CS8907: Parameter 'I' is unread. Did you forget to use it to initialize the property with that name? // record struct A(int I, string S) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "I").WithArguments("I").WithLocation(2, 21)); var method = comp.GetMember<SynthesizedRecordDeconstruct>("A.Deconstruct"); Assert.False(method.IsDeclaredReadOnly); } [Fact] public void Deconstruct_UserDefined() { var source = @"using System; record struct B(int X, int Y) { public void Deconstruct(out int X, out int Y) { X = this.X + 1; Y = this.Y + 2; } static void M(B b) { switch (b) { case B(int x, int y): Console.Write(x); Console.Write(y); break; } } public static void Main() { M(new B(0, 0)); } } "; var verifier = CompileAndVerify(source, expectedOutput: "12"); verifier.VerifyDiagnostics(); } [Fact] public void Deconstruct_UserDefined_DifferentSignature_02() { var source = @"using System; record struct B(int X) { public int Deconstruct(out int a) => throw null; static void M(B b) { switch (b) { case B(int x): Console.Write(x); break; } } public static void Main() { M(new B(1)); } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (5,16): error CS8874: Record member 'B.Deconstruct(out int)' must return 'void'. // public int Deconstruct(out int a) => throw null; Diagnostic(ErrorCode.ERR_SignatureMismatchInRecord, "Deconstruct").WithArguments("B.Deconstruct(out int)", "void").WithLocation(5, 16), // (11,19): error CS8129: No suitable 'Deconstruct' instance or extension method was found for type 'B', with 1 out parameters and a void return type. // case B(int x): Diagnostic(ErrorCode.ERR_MissingDeconstruct, "(int x)").WithArguments("B", "1").WithLocation(11, 19)); Assert.Equal("System.Int32 B.Deconstruct(out System.Int32 a)", comp.GetMember("B.Deconstruct").ToTestDisplayString(includeNonNullable: false)); } [Theory] [InlineData("")] [InlineData("private")] [InlineData("internal")] public void Deconstruct_UserDefined_Accessibility_07(string accessibility) { var source = $@" record struct A(int X) {{ { accessibility } void Deconstruct(out int a) => throw null; }} "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,11): error CS8873: Record member 'A.Deconstruct(out int)' must be public. // void Deconstruct(out int a) Diagnostic(ErrorCode.ERR_NonPublicAPIInRecord, "Deconstruct").WithArguments("A.Deconstruct(out int)").WithLocation(4, 11 + accessibility.Length) ); } [Fact] public void Deconstruct_UserDefined_Static_08() { var source = @" record struct A(int X) { public static void Deconstruct(out int a) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,24): error CS8877: Record member 'A.Deconstruct(out int)' may not be static. // public static void Deconstruct(out int a) Diagnostic(ErrorCode.ERR_StaticAPIInRecord, "Deconstruct").WithArguments("A.Deconstruct(out int)").WithLocation(4, 24) ); } [Fact] public void OutVarInPositionalParameterDefaultValue() { var source = @" record struct A(int X = A.M(out int a) + a) { public static int M(out int a) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (2,25): error CS1736: Default parameter value for 'X' must be a compile-time constant // record struct A(int X = A.M(out int a) + a) Diagnostic(ErrorCode.ERR_DefaultValueMustBeConstant, "A.M(out int a) + a").WithArguments("X").WithLocation(2, 25) ); } [Fact] public void FieldConsideredUnassignedIfInitializationViaProperty() { var source = @" record struct Pos(int X) { private int x; public int X { get { return x; } set { x = value; } } = X; } record struct Pos2(int X) { private int x = X; // value isn't validated by setter public int X { get { return x; } set { x = value; } } } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (2,15): error CS0171: Field 'Pos.x' must be fully assigned before control is returned to the caller // record struct Pos(int X) Diagnostic(ErrorCode.ERR_UnassignedThis, "Pos").WithArguments("Pos.x").WithLocation(2, 15), // (5,16): error CS8050: Only auto-implemented properties can have initializers. // public int X { get { return x; } set { x = value; } } = X; Diagnostic(ErrorCode.ERR_InitializerOnNonAutoProperty, "X").WithArguments("Pos.X").WithLocation(5, 16) ); } [Fact] public void IEquatableT_01() { var source = @"record struct A<T>; class Program { static void F<T>(System.IEquatable<T> t) { } static void M<T>() { F(new A<T>()); } }"; var comp = CreateCompilation(source); comp.VerifyDiagnostics( ); } [Fact] public void IEquatableT_02() { var source = @"using System; record struct A; record struct B<T>; class Program { static bool F<T>(IEquatable<T> t, T t2) { return t.Equals(t2); } static void Main() { Console.Write(F(new A(), new A())); Console.Write(F(new B<int>(), new B<int>())); } }"; var comp = CreateCompilation(new[] { source, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.ReleaseExe); CompileAndVerify(comp, expectedOutput: "TrueTrue").VerifyDiagnostics(); } [Fact] public void IEquatableT_02_ImplicitImplementation() { var source = @"using System; record struct A { public bool Equals(A other) { System.Console.Write(""A.Equals(A) ""); return false; } } record struct B<T> { public bool Equals(B<T> other) { System.Console.Write(""B.Equals(B) ""); return true; } } class Program { static bool F<T>(IEquatable<T> t, T t2) { return t.Equals(t2); } static void Main() { Console.Write(F(new A(), new A())); Console.Write("" ""); Console.Write(F(new B<int>(), new B<int>())); } }"; var comp = CreateCompilation(new[] { source, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.ReleaseExe); CompileAndVerify(comp, expectedOutput: "A.Equals(A) False B.Equals(B) True").VerifyDiagnostics( // (4,17): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // public bool Equals(A other) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 17), // (12,17): warning CS8851: 'B' defines 'Equals' but not 'GetHashCode' // public bool Equals(B<T> other) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("B").WithLocation(12, 17) ); } [Fact] public void IEquatableT_02_ExplicitImplementation() { var source = @"using System; record struct A { bool IEquatable<A>.Equals(A other) { System.Console.Write(""A.Equals(A) ""); return false; } } record struct B<T> { bool IEquatable<B<T>>.Equals(B<T> other) { System.Console.Write(""B.Equals(B) ""); return true; } } class Program { static bool F<T>(IEquatable<T> t, T t2) { return t.Equals(t2); } static void Main() { Console.Write(F(new A(), new A())); Console.Write("" ""); Console.Write(F(new B<int>(), new B<int>())); } }"; var comp = CreateCompilation(new[] { source, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.ReleaseExe); CompileAndVerify(comp, expectedOutput: "A.Equals(A) False B.Equals(B) True").VerifyDiagnostics(); } [Fact] public void IEquatableT_03() { var source = @" record struct A<T> : System.IEquatable<A<T>>; "; var comp = CreateCompilation(source); comp.VerifyDiagnostics(); var type = comp.GetMember<NamedTypeSymbol>("A"); AssertEx.Equal(new[] { "System.IEquatable<A<T>>" }, type.InterfacesNoUseSiteDiagnostics().ToTestDisplayStrings()); AssertEx.Equal(new[] { "System.IEquatable<A<T>>" }, type.AllInterfacesNoUseSiteDiagnostics.ToTestDisplayStrings()); } [Fact] public void IEquatableT_MissingIEquatable() { var source = @" record struct A<T>; "; var comp = CreateCompilation(source); comp.MakeTypeMissing(WellKnownType.System_IEquatable_T); comp.VerifyEmitDiagnostics( // (2,15): error CS0518: Predefined type 'System.IEquatable`1' is not defined or imported // record struct A<T>; Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "A").WithArguments("System.IEquatable`1").WithLocation(2, 15), // (2,15): error CS0518: Predefined type 'System.IEquatable`1' is not defined or imported // record struct A<T>; Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "A").WithArguments("System.IEquatable`1").WithLocation(2, 15) ); var type = comp.GetMember<NamedTypeSymbol>("A"); AssertEx.Equal(new[] { "System.IEquatable<A<T>>[missing]" }, type.InterfacesNoUseSiteDiagnostics().ToTestDisplayStrings()); AssertEx.Equal(new[] { "System.IEquatable<A<T>>[missing]" }, type.AllInterfacesNoUseSiteDiagnostics.ToTestDisplayStrings()); } [Fact] public void RecordEquals_01() { var source = @" var a1 = new B(); var a2 = new B(); System.Console.WriteLine(a1.Equals(a2)); record struct B { public bool Equals(B other) { System.Console.WriteLine(""B.Equals(B)""); return false; } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (8,17): warning CS8851: 'B' defines 'Equals' but not 'GetHashCode' // public bool Equals(B other) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("B").WithLocation(8, 17) ); CompileAndVerify(comp, expectedOutput: @" B.Equals(B) False "); } [Fact] public void RecordEquals_01_NoInParameters() { var source = @" var a1 = new B(); var a2 = new B(); System.Console.WriteLine(a1.Equals(in a2)); record struct B; "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,39): error CS1615: Argument 1 may not be passed with the 'in' keyword // System.Console.WriteLine(a1.Equals(in a2)); Diagnostic(ErrorCode.ERR_BadArgExtraRef, "a2").WithArguments("1", "in").WithLocation(4, 39) ); } [Theory] [InlineData("protected")] [InlineData("private protected")] [InlineData("internal protected")] public void RecordEquals_10(string accessibility) { var source = $@" record struct A {{ { accessibility } bool Equals(A x) => throw null; bool System.IEquatable<A>.Equals(A x) => throw null; }} "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,29): error CS0666: 'A.Equals(A)': new protected member declared in struct // internal protected bool Equals(A x) Diagnostic(ErrorCode.ERR_ProtectedInStruct, "Equals").WithArguments("A.Equals(A)").WithLocation(4, 11 + accessibility.Length), // (4,29): error CS8873: Record member 'A.Equals(A)' must be public. // internal protected bool Equals(A x) Diagnostic(ErrorCode.ERR_NonPublicAPIInRecord, "Equals").WithArguments("A.Equals(A)").WithLocation(4, 11 + accessibility.Length), // (4,29): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // internal protected bool Equals(A x) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 11 + accessibility.Length) ); } [Theory] [InlineData("")] [InlineData("private")] [InlineData("internal")] public void RecordEquals_11(string accessibility) { var source = $@" record struct A {{ { accessibility } bool Equals(A x) => throw null; bool System.IEquatable<A>.Equals(A x) => throw null; }} "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,...): error CS8873: Record member 'A.Equals(A)' must be public. // { accessibility } bool Equals(A x) Diagnostic(ErrorCode.ERR_NonPublicAPIInRecord, "Equals").WithArguments("A.Equals(A)").WithLocation(4, 11 + accessibility.Length), // (4,11): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // bool Equals(A x) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 11 + accessibility.Length) ); } [Fact] public void RecordEquals_12() { var source = @" A a1 = new A(); A a2 = new A(); System.Console.Write(a1.Equals(a2)); System.Console.Write(a1.Equals((object)a2)); record struct A { public bool Equals(B other) => throw null; } class B { } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "TrueTrue"); verifier.VerifyIL("A.Equals(A)", @" { // Code size 2 (0x2) .maxstack 1 IL_0000: ldc.i4.1 IL_0001: ret }"); verifier.VerifyIL("A.Equals(object)", @" { // Code size 23 (0x17) .maxstack 2 IL_0000: ldarg.1 IL_0001: isinst ""A"" IL_0006: brfalse.s IL_0015 IL_0008: ldarg.0 IL_0009: ldarg.1 IL_000a: unbox.any ""A"" IL_000f: call ""readonly bool A.Equals(A)"" IL_0014: ret IL_0015: ldc.i4.0 IL_0016: ret }"); verifier.VerifyIL("A.GetHashCode()", @" { // Code size 2 (0x2) .maxstack 1 IL_0000: ldc.i4.0 IL_0001: ret }"); var recordEquals = comp.GetMembers("A.Equals").OfType<SynthesizedRecordEquals>().Single(); Assert.Equal("readonly System.Boolean A.Equals(A other)", recordEquals.ToTestDisplayString()); Assert.Equal(Accessibility.Public, recordEquals.DeclaredAccessibility); Assert.False(recordEquals.IsAbstract); Assert.False(recordEquals.IsVirtual); Assert.False(recordEquals.IsOverride); Assert.False(recordEquals.IsSealed); Assert.True(recordEquals.IsImplicitlyDeclared); var objectEquals = comp.GetMembers("A.Equals").OfType<SynthesizedRecordObjEquals>().Single(); Assert.Equal("readonly System.Boolean A.Equals(System.Object obj)", objectEquals.ToTestDisplayString()); Assert.Equal(Accessibility.Public, objectEquals.DeclaredAccessibility); Assert.False(objectEquals.IsAbstract); Assert.False(objectEquals.IsVirtual); Assert.True(objectEquals.IsOverride); Assert.False(objectEquals.IsSealed); Assert.True(objectEquals.IsImplicitlyDeclared); MethodSymbol gethashCode = comp.GetMembers("A." + WellKnownMemberNames.ObjectGetHashCode).OfType<SynthesizedRecordGetHashCode>().Single(); Assert.Equal("readonly System.Int32 A.GetHashCode()", gethashCode.ToTestDisplayString()); Assert.Equal(Accessibility.Public, gethashCode.DeclaredAccessibility); Assert.False(gethashCode.IsStatic); Assert.False(gethashCode.IsAbstract); Assert.False(gethashCode.IsVirtual); Assert.True(gethashCode.IsOverride); Assert.False(gethashCode.IsSealed); Assert.True(gethashCode.IsImplicitlyDeclared); } [Fact] public void RecordEquals_13() { var source = @" record struct A { public int Equals(A other) => throw null; bool System.IEquatable<A>.Equals(A x) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,16): error CS8874: Record member 'A.Equals(A)' must return 'bool'. // public int Equals(A other) Diagnostic(ErrorCode.ERR_SignatureMismatchInRecord, "Equals").WithArguments("A.Equals(A)", "bool").WithLocation(4, 16), // (4,16): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // public int Equals(A other) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 16) ); } [Fact] public void RecordEquals_14() { var source = @" record struct A { public bool Equals(A other) => throw null; System.Boolean System.IEquatable<A>.Equals(A x) => throw null; } "; var comp = CreateCompilation(source); comp.MakeTypeMissing(SpecialType.System_Boolean); comp.VerifyEmitDiagnostics( // (2,1): error CS0518: Predefined type 'System.Boolean' is not defined or imported // record struct A Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, @"record struct A { public bool Equals(A other) => throw null; System.Boolean System.IEquatable<A>.Equals(A x) => throw null; }").WithArguments("System.Boolean").WithLocation(2, 1), // (2,1): error CS0518: Predefined type 'System.Boolean' is not defined or imported // record struct A Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, @"record struct A { public bool Equals(A other) => throw null; System.Boolean System.IEquatable<A>.Equals(A x) => throw null; }").WithArguments("System.Boolean").WithLocation(2, 1), // (2,15): error CS0518: Predefined type 'System.Boolean' is not defined or imported // record struct A Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "A").WithArguments("System.Boolean").WithLocation(2, 15), // (2,15): error CS0518: Predefined type 'System.Boolean' is not defined or imported // record struct A Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "A").WithArguments("System.Boolean").WithLocation(2, 15), // (2,15): error CS0518: Predefined type 'System.Boolean' is not defined or imported // record struct A Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "A").WithArguments("System.Boolean").WithLocation(2, 15), // (2,15): error CS0518: Predefined type 'System.Boolean' is not defined or imported // record struct A Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "A").WithArguments("System.Boolean").WithLocation(2, 15), // (4,12): error CS0518: Predefined type 'System.Boolean' is not defined or imported // public bool Equals(A other) Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "bool").WithArguments("System.Boolean").WithLocation(4, 12), // (4,17): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // public bool Equals(A other) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 17) ); } [Fact] public void RecordEquals_19() { var source = @" record struct A { public static bool Equals(A x) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (2,15): error CS0736: 'A' does not implement interface member 'IEquatable<A>.Equals(A)'. 'A.Equals(A)' cannot implement an interface member because it is static. // record struct A Diagnostic(ErrorCode.ERR_CloseUnimplementedInterfaceMemberStatic, "A").WithArguments("A", "System.IEquatable<A>.Equals(A)", "A.Equals(A)").WithLocation(2, 15), // (4,24): error CS8877: Record member 'A.Equals(A)' may not be static. // public static bool Equals(A x) => throw null; Diagnostic(ErrorCode.ERR_StaticAPIInRecord, "Equals").WithArguments("A.Equals(A)").WithLocation(4, 24), // (4,24): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // public static bool Equals(A x) => throw null; Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 24) ); } [Fact] public void RecordEquals_RecordEqualsInValueType() { var src = @" public record struct A; namespace System { public class Object { public virtual bool Equals(object x) => throw null; public virtual int GetHashCode() => throw null; public virtual string ToString() => throw null; } public class Exception { } public class ValueType { public bool Equals(A x) => throw null; } public class Attribute { } public class String { } public struct Void { } public struct Boolean { } public struct Char { } public struct Int32 { } public interface IEquatable<T> { } } namespace System.Collections.Generic { public abstract class EqualityComparer<T> { public static EqualityComparer<T> Default => throw null; public abstract int GetHashCode(T t); } } namespace System.Text { public class StringBuilder { public StringBuilder Append(string s) => null; public StringBuilder Append(char c) => null; public StringBuilder Append(object o) => null; } } "; var comp = CreateEmptyCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics( // warning CS8021: No value for RuntimeMetadataVersion found. No assembly containing System.Object was found nor was a value for RuntimeMetadataVersion specified through options. Diagnostic(ErrorCode.WRN_NoRuntimeMetadataVersion).WithLocation(1, 1) ); var recordEquals = comp.GetMembers("A.Equals").OfType<SynthesizedRecordEquals>().Single(); Assert.Equal("readonly System.Boolean A.Equals(A other)", recordEquals.ToTestDisplayString()); } [Fact] public void RecordEquals_FourFields() { var source = @" A a1 = new A(1, ""hello""); System.Console.Write(a1.Equals(a1)); System.Console.Write(a1.Equals((object)a1)); System.Console.Write("" - ""); A a2 = new A(1, ""hello"") { fieldI = 100 }; System.Console.Write(a1.Equals(a2)); System.Console.Write(a1.Equals((object)a2)); System.Console.Write(a2.Equals(a1)); System.Console.Write(a2.Equals((object)a1)); System.Console.Write("" - ""); A a3 = new A(1, ""world""); System.Console.Write(a1.Equals(a3)); System.Console.Write(a1.Equals((object)a3)); System.Console.Write(a3.Equals(a1)); System.Console.Write(a3.Equals((object)a1)); record struct A(int I, string S) { public int fieldI = 42; public string fieldS = ""hello""; } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "TrueTrue - FalseFalseFalseFalse - FalseFalseFalseFalse"); verifier.VerifyIL("A.Equals(A)", @" { // Code size 97 (0x61) .maxstack 3 IL_0000: call ""System.Collections.Generic.EqualityComparer<int> System.Collections.Generic.EqualityComparer<int>.Default.get"" IL_0005: ldarg.0 IL_0006: ldfld ""int A.<I>k__BackingField"" IL_000b: ldarg.1 IL_000c: ldfld ""int A.<I>k__BackingField"" IL_0011: callvirt ""bool System.Collections.Generic.EqualityComparer<int>.Equals(int, int)"" IL_0016: brfalse.s IL_005f IL_0018: call ""System.Collections.Generic.EqualityComparer<string> System.Collections.Generic.EqualityComparer<string>.Default.get"" IL_001d: ldarg.0 IL_001e: ldfld ""string A.<S>k__BackingField"" IL_0023: ldarg.1 IL_0024: ldfld ""string A.<S>k__BackingField"" IL_0029: callvirt ""bool System.Collections.Generic.EqualityComparer<string>.Equals(string, string)"" IL_002e: brfalse.s IL_005f IL_0030: call ""System.Collections.Generic.EqualityComparer<int> System.Collections.Generic.EqualityComparer<int>.Default.get"" IL_0035: ldarg.0 IL_0036: ldfld ""int A.fieldI"" IL_003b: ldarg.1 IL_003c: ldfld ""int A.fieldI"" IL_0041: callvirt ""bool System.Collections.Generic.EqualityComparer<int>.Equals(int, int)"" IL_0046: brfalse.s IL_005f IL_0048: call ""System.Collections.Generic.EqualityComparer<string> System.Collections.Generic.EqualityComparer<string>.Default.get"" IL_004d: ldarg.0 IL_004e: ldfld ""string A.fieldS"" IL_0053: ldarg.1 IL_0054: ldfld ""string A.fieldS"" IL_0059: callvirt ""bool System.Collections.Generic.EqualityComparer<string>.Equals(string, string)"" IL_005e: ret IL_005f: ldc.i4.0 IL_0060: ret }"); verifier.VerifyIL("A.Equals(object)", @" { // Code size 23 (0x17) .maxstack 2 IL_0000: ldarg.1 IL_0001: isinst ""A"" IL_0006: brfalse.s IL_0015 IL_0008: ldarg.0 IL_0009: ldarg.1 IL_000a: unbox.any ""A"" IL_000f: call ""readonly bool A.Equals(A)"" IL_0014: ret IL_0015: ldc.i4.0 IL_0016: ret }"); verifier.VerifyIL("A.GetHashCode()", @" { // Code size 86 (0x56) .maxstack 3 IL_0000: call ""System.Collections.Generic.EqualityComparer<int> System.Collections.Generic.EqualityComparer<int>.Default.get"" IL_0005: ldarg.0 IL_0006: ldfld ""int A.<I>k__BackingField"" IL_000b: callvirt ""int System.Collections.Generic.EqualityComparer<int>.GetHashCode(int)"" IL_0010: ldc.i4 0xa5555529 IL_0015: mul IL_0016: call ""System.Collections.Generic.EqualityComparer<string> System.Collections.Generic.EqualityComparer<string>.Default.get"" IL_001b: ldarg.0 IL_001c: ldfld ""string A.<S>k__BackingField"" IL_0021: callvirt ""int System.Collections.Generic.EqualityComparer<string>.GetHashCode(string)"" IL_0026: add IL_0027: ldc.i4 0xa5555529 IL_002c: mul IL_002d: call ""System.Collections.Generic.EqualityComparer<int> System.Collections.Generic.EqualityComparer<int>.Default.get"" IL_0032: ldarg.0 IL_0033: ldfld ""int A.fieldI"" IL_0038: callvirt ""int System.Collections.Generic.EqualityComparer<int>.GetHashCode(int)"" IL_003d: add IL_003e: ldc.i4 0xa5555529 IL_0043: mul IL_0044: call ""System.Collections.Generic.EqualityComparer<string> System.Collections.Generic.EqualityComparer<string>.Default.get"" IL_0049: ldarg.0 IL_004a: ldfld ""string A.fieldS"" IL_004f: callvirt ""int System.Collections.Generic.EqualityComparer<string>.GetHashCode(string)"" IL_0054: add IL_0055: ret }"); } [Fact] public void RecordEquals_StaticField() { var source = @" record struct A { public static int field = 42; } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp); verifier.VerifyIL("A.Equals(A)", @" { // Code size 2 (0x2) .maxstack 1 IL_0000: ldc.i4.1 IL_0001: ret }"); verifier.VerifyIL("A.GetHashCode()", @" { // Code size 2 (0x2) .maxstack 1 IL_0000: ldc.i4.0 IL_0001: ret }"); } [Fact] public void RecordEquals_GeneratedAsReadOnly() { var src = @" record struct A(int I, string S); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var recordEquals = comp.GetMembers("A.Equals").OfType<SynthesizedRecordEquals>().Single(); Assert.True(recordEquals.IsDeclaredReadOnly); } [Fact] public void ObjectEquals_06() { var source = @" record struct A { public static new bool Equals(object obj) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,28): error CS0111: Type 'A' already defines a member called 'Equals' with the same parameter types // public static new bool Equals(object obj) => throw null; Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "Equals").WithArguments("Equals", "A").WithLocation(4, 28) ); } [Fact] public void ObjectEquals_UserDefined() { var source = @" record struct A { public override bool Equals(object obj) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,26): error CS0111: Type 'A' already defines a member called 'Equals' with the same parameter types // public override bool Equals(object obj) => throw null; Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "Equals").WithArguments("Equals", "A").WithLocation(4, 26) ); } [Fact] public void ObjectEquals_GeneratedAsReadOnly() { var src = @" record struct A(int I, string S); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var objectEquals = comp.GetMembers("A.Equals").OfType<SynthesizedRecordObjEquals>().Single(); Assert.True(objectEquals.IsDeclaredReadOnly); } [Fact] public void GetHashCode_UserDefined() { var source = @" System.Console.Write(new A().GetHashCode()); record struct A { public override int GetHashCode() => 42; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "42"); } [Fact] public void GetHashCode_GetHashCodeInValueType() { var src = @" public record struct A; namespace System { public class Object { public virtual bool Equals(object x) => throw null; public virtual string ToString() => throw null; } public class Exception { } public class ValueType { public virtual int GetHashCode() => throw null; } public class Attribute { } public class String { } public struct Void { } public struct Boolean { } public struct Char { } public struct Int32 { } public interface IEquatable<T> { } } namespace System.Collections.Generic { public abstract class EqualityComparer<T> { public static EqualityComparer<T> Default => throw null; public abstract int GetHashCode(T t); } } namespace System.Text { public class StringBuilder { public StringBuilder Append(string s) => null; public StringBuilder Append(char c) => null; public StringBuilder Append(object o) => null; } } "; var comp = CreateEmptyCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics( // warning CS8021: No value for RuntimeMetadataVersion found. No assembly containing System.Object was found nor was a value for RuntimeMetadataVersion specified through options. Diagnostic(ErrorCode.WRN_NoRuntimeMetadataVersion).WithLocation(1, 1), // (2,22): error CS8869: 'A.GetHashCode()' does not override expected method from 'object'. // public record struct A; Diagnostic(ErrorCode.ERR_DoesNotOverrideMethodFromObject, "A").WithArguments("A.GetHashCode()").WithLocation(2, 22) ); } [Fact] public void GetHashCode_MissingEqualityComparer_EmptyRecord() { var src = @" public record struct A; "; var comp = CreateCompilation(src); comp.MakeTypeMissing(WellKnownType.System_Collections_Generic_EqualityComparer_T); comp.VerifyEmitDiagnostics(); } [Fact] public void GetHashCode_MissingEqualityComparer_NonEmptyRecord() { var src = @" public record struct A(int I); "; var comp = CreateCompilation(src); comp.MakeTypeMissing(WellKnownType.System_Collections_Generic_EqualityComparer_T); comp.VerifyEmitDiagnostics( // (2,1): error CS0656: Missing compiler required member 'System.Collections.Generic.EqualityComparer`1.GetHashCode' // public record struct A(int I); Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "public record struct A(int I);").WithArguments("System.Collections.Generic.EqualityComparer`1", "GetHashCode").WithLocation(2, 1), // (2,1): error CS0656: Missing compiler required member 'System.Collections.Generic.EqualityComparer`1.get_Default' // public record struct A(int I); Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "public record struct A(int I);").WithArguments("System.Collections.Generic.EqualityComparer`1", "get_Default").WithLocation(2, 1) ); } [Fact] public void GetHashCode_GeneratedAsReadOnly() { var src = @" record struct A(int I, string S); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var method = comp.GetMember<SynthesizedRecordGetHashCode>("A.GetHashCode"); Assert.True(method.IsDeclaredReadOnly); } [Fact] public void GetHashCodeIsDefinedButEqualsIsNot() { var src = @" public record struct C { public object Data; public override int GetHashCode() { return 0; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); } [Fact] public void EqualsIsDefinedButGetHashCodeIsNot() { var src = @" public record struct C { public object Data; public bool Equals(C c) { return false; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (5,17): warning CS8851: 'C' defines 'Equals' but not 'GetHashCode' // public bool Equals(C c) { return false; } Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("C").WithLocation(5, 17)); } [Fact] public void EqualityOperators_01() { var source = @" record struct A(int X) { public bool Equals(ref A other) => throw null; static void Main() { Test(default, default); Test(default, new A(0)); Test(new A(1), new A(1)); Test(new A(2), new A(3)); var a = new A(11); Test(a, a); } static void Test(A a1, A a2) { System.Console.WriteLine(""{0} {1} {2} {3}"", a1 == a2, a2 == a1, a1 != a2, a2 != a1); } } "; var verifier = CompileAndVerify(source, expectedOutput: @" True True False False True True False False True True False False False False True True True True False False ").VerifyDiagnostics(); var comp = (CSharpCompilation)verifier.Compilation; MethodSymbol op = comp.GetMembers("A." + WellKnownMemberNames.EqualityOperatorName).OfType<SynthesizedRecordEqualityOperator>().Single(); Assert.Equal("System.Boolean A.op_Equality(A left, A right)", op.ToTestDisplayString()); Assert.Equal(Accessibility.Public, op.DeclaredAccessibility); Assert.True(op.IsStatic); Assert.False(op.IsAbstract); Assert.False(op.IsVirtual); Assert.False(op.IsOverride); Assert.False(op.IsSealed); Assert.True(op.IsImplicitlyDeclared); op = comp.GetMembers("A." + WellKnownMemberNames.InequalityOperatorName).OfType<SynthesizedRecordInequalityOperator>().Single(); Assert.Equal("System.Boolean A.op_Inequality(A left, A right)", op.ToTestDisplayString()); Assert.Equal(Accessibility.Public, op.DeclaredAccessibility); Assert.True(op.IsStatic); Assert.False(op.IsAbstract); Assert.False(op.IsVirtual); Assert.False(op.IsOverride); Assert.False(op.IsSealed); Assert.True(op.IsImplicitlyDeclared); verifier.VerifyIL("bool A.op_Equality(A, A)", @" { // Code size 9 (0x9) .maxstack 2 IL_0000: ldarga.s V_0 IL_0002: ldarg.1 IL_0003: call ""readonly bool A.Equals(A)"" IL_0008: ret } "); verifier.VerifyIL("bool A.op_Inequality(A, A)", @" { // Code size 11 (0xb) .maxstack 2 IL_0000: ldarg.0 IL_0001: ldarg.1 IL_0002: call ""bool A.op_Equality(A, A)"" IL_0007: ldc.i4.0 IL_0008: ceq IL_000a: ret } "); } [Fact] public void EqualityOperators_03() { var source = @" record struct A { public static bool operator==(A r1, A r2) => throw null; public static bool operator==(A r1, string r2) => throw null; public static bool operator!=(A r1, string r2) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,32): error CS0111: Type 'A' already defines a member called 'op_Equality' with the same parameter types // public static bool operator==(A r1, A r2) Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "==").WithArguments("op_Equality", "A").WithLocation(4, 32) ); } [Fact] public void EqualityOperators_04() { var source = @" record struct A { public static bool operator!=(A r1, A r2) => throw null; public static bool operator!=(string r1, A r2) => throw null; public static bool operator==(string r1, A r2) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,32): error CS0111: Type 'A' already defines a member called 'op_Inequality' with the same parameter types // public static bool operator!=(A r1, A r2) Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "!=").WithArguments("op_Inequality", "A").WithLocation(4, 32) ); } [Fact] public void EqualityOperators_05() { var source = @" record struct A { public static bool op_Equality(A r1, A r2) => throw null; public static bool op_Equality(string r1, A r2) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,24): error CS0111: Type 'A' already defines a member called 'op_Equality' with the same parameter types // public static bool op_Equality(A r1, A r2) Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "op_Equality").WithArguments("op_Equality", "A").WithLocation(4, 24) ); } [Fact] public void EqualityOperators_06() { var source = @" record struct A { public static bool op_Inequality(A r1, A r2) => throw null; public static bool op_Inequality(A r1, string r2) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,24): error CS0111: Type 'A' already defines a member called 'op_Inequality' with the same parameter types // public static bool op_Inequality(A r1, A r2) Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "op_Inequality").WithArguments("op_Inequality", "A").WithLocation(4, 24) ); } [Fact] public void EqualityOperators_07() { var source = @" record struct A { public static bool Equals(A other) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (2,15): error CS0736: 'A' does not implement interface member 'IEquatable<A>.Equals(A)'. 'A.Equals(A)' cannot implement an interface member because it is static. // record struct A Diagnostic(ErrorCode.ERR_CloseUnimplementedInterfaceMemberStatic, "A").WithArguments("A", "System.IEquatable<A>.Equals(A)", "A.Equals(A)").WithLocation(2, 15), // (4,24): error CS8877: Record member 'A.Equals(A)' may not be static. // public static bool Equals(A other) Diagnostic(ErrorCode.ERR_StaticAPIInRecord, "Equals").WithArguments("A.Equals(A)").WithLocation(4, 24), // (4,24): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // public static bool Equals(A other) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 24) ); } [Theory] [CombinatorialData] public void EqualityOperators_09(bool useImageReference) { var source1 = @" public record struct A(int X); "; var comp1 = CreateCompilation(source1); var source2 = @" class Program { static void Main() { Test(default, default); Test(default, new A(0)); Test(new A(1), new A(1)); Test(new A(2), new A(3)); } static void Test(A a1, A a2) { System.Console.WriteLine(""{0} {1} {2} {3}"", a1 == a2, a2 == a1, a1 != a2, a2 != a1); } } "; CompileAndVerify(source2, references: new[] { useImageReference ? comp1.EmitToImageReference() : comp1.ToMetadataReference() }, expectedOutput: @" True True False False True True False False True True False False False False True True ").VerifyDiagnostics(); } [Fact] public void GetSimpleNonTypeMembers_DirectApiCheck() { var src = @" public record struct RecordB(); "; var comp = CreateCompilation(src); var b = comp.GlobalNamespace.GetTypeMember("RecordB"); AssertEx.SetEqual(new[] { "System.Boolean RecordB.op_Equality(RecordB left, RecordB right)" }, b.GetSimpleNonTypeMembers("op_Equality").ToTestDisplayStrings()); } [Fact] public void ToString_NestedRecord() { var src = @" var c1 = new Outer.C1(42); System.Console.Write(c1.ToString()); public class Outer { public record struct C1(int I1); } "; var compDebug = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.DebugExe); var compRelease = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.ReleaseExe); CompileAndVerify(compDebug, expectedOutput: "C1 { I1 = 42 }"); compDebug.VerifyEmitDiagnostics(); CompileAndVerify(compRelease, expectedOutput: "C1 { I1 = 42 }"); compRelease.VerifyEmitDiagnostics(); } [Fact] public void ToString_TopLevelRecord_Empty() { var src = @" var c1 = new C1(); System.Console.Write(c1.ToString()); record struct C1; "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); var v = CompileAndVerify(comp, expectedOutput: "C1 { }"); var print = comp.GetMember<MethodSymbol>("C1." + WellKnownMemberNames.PrintMembersMethodName); Assert.Equal(Accessibility.Private, print.DeclaredAccessibility); Assert.False(print.IsOverride); Assert.False(print.IsVirtual); Assert.False(print.IsAbstract); Assert.False(print.IsSealed); Assert.True(print.IsImplicitlyDeclared); var toString = comp.GetMember<MethodSymbol>("C1." + WellKnownMemberNames.ObjectToString); Assert.Equal(Accessibility.Public, toString.DeclaredAccessibility); Assert.True(toString.IsOverride); Assert.False(toString.IsVirtual); Assert.False(toString.IsAbstract); Assert.False(toString.IsSealed); Assert.True(toString.IsImplicitlyDeclared); v.VerifyIL("C1." + WellKnownMemberNames.PrintMembersMethodName, @" { // Code size 2 (0x2) .maxstack 1 IL_0000: ldc.i4.0 IL_0001: ret } "); v.VerifyIL("C1." + WellKnownMemberNames.ObjectToString, @" { // Code size 64 (0x40) .maxstack 2 .locals init (System.Text.StringBuilder V_0) IL_0000: newobj ""System.Text.StringBuilder..ctor()"" IL_0005: stloc.0 IL_0006: ldloc.0 IL_0007: ldstr ""C1"" IL_000c: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0011: pop IL_0012: ldloc.0 IL_0013: ldstr "" { "" IL_0018: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_001d: pop IL_001e: ldarg.0 IL_001f: ldloc.0 IL_0020: call ""readonly bool C1.PrintMembers(System.Text.StringBuilder)"" IL_0025: brfalse.s IL_0030 IL_0027: ldloc.0 IL_0028: ldc.i4.s 32 IL_002a: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(char)"" IL_002f: pop IL_0030: ldloc.0 IL_0031: ldc.i4.s 125 IL_0033: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(char)"" IL_0038: pop IL_0039: ldloc.0 IL_003a: callvirt ""string object.ToString()"" IL_003f: ret } "); } [Fact] public void ToString_TopLevelRecord_MissingStringBuilder() { var src = @" record struct C1; "; var comp = CreateCompilation(src); comp.MakeTypeMissing(WellKnownType.System_Text_StringBuilder); comp.VerifyEmitDiagnostics( // (2,1): error CS0518: Predefined type 'System.Text.StringBuilder' is not defined or imported // record struct C1; Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "record struct C1;").WithArguments("System.Text.StringBuilder").WithLocation(2, 1), // (2,1): error CS0656: Missing compiler required member 'System.Text.StringBuilder..ctor' // record struct C1; Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "record struct C1;").WithArguments("System.Text.StringBuilder", ".ctor").WithLocation(2, 1), // (2,15): error CS0518: Predefined type 'System.Text.StringBuilder' is not defined or imported // record struct C1; Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "C1").WithArguments("System.Text.StringBuilder").WithLocation(2, 15) ); } [Fact] public void ToString_TopLevelRecord_MissingStringBuilderCtor() { var src = @" record struct C1; "; var comp = CreateCompilation(src); comp.MakeMemberMissing(WellKnownMember.System_Text_StringBuilder__ctor); comp.VerifyEmitDiagnostics( // (2,1): error CS0656: Missing compiler required member 'System.Text.StringBuilder..ctor' // record struct C1; Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "record struct C1;").WithArguments("System.Text.StringBuilder", ".ctor").WithLocation(2, 1) ); } [Fact] public void ToString_TopLevelRecord_MissingStringBuilderAppendString() { var src = @" record struct C1; "; var comp = CreateCompilation(src); comp.MakeMemberMissing(WellKnownMember.System_Text_StringBuilder__AppendString); comp.VerifyEmitDiagnostics( // (2,1): error CS0656: Missing compiler required member 'System.Text.StringBuilder.Append' // record struct C1; Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "record struct C1;").WithArguments("System.Text.StringBuilder", "Append").WithLocation(2, 1) ); } [Fact] public void ToString_TopLevelRecord_OneProperty_MissingStringBuilderAppendString() { var src = @" record struct C1(int P); "; var comp = CreateCompilation(src); comp.MakeMemberMissing(WellKnownMember.System_Text_StringBuilder__AppendString); comp.VerifyEmitDiagnostics( // (2,1): error CS0656: Missing compiler required member 'System.Text.StringBuilder.Append' // record struct C1(int P); Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "record struct C1(int P);").WithArguments("System.Text.StringBuilder", "Append").WithLocation(2, 1), // (2,1): error CS0656: Missing compiler required member 'System.Text.StringBuilder.Append' // record struct C1(int P); Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "record struct C1(int P);").WithArguments("System.Text.StringBuilder", "Append").WithLocation(2, 1) ); } [Fact] public void ToString_RecordWithIndexer() { var src = @" var c1 = new C1(42); System.Console.Write(c1.ToString()); record struct C1(int I1) { private int field = 44; public int this[int i] => 0; public int PropertyWithoutGetter { set { } } public int P2 { get => 43; } public event System.Action a = null; private int field1 = 100; internal int field2 = 100; private int Property1 { get; set; } = 100; internal int Property2 { get; set; } = 100; } "; var comp = CreateCompilation(src); CompileAndVerify(comp, expectedOutput: "C1 { I1 = 42, P2 = 43 }"); comp.VerifyEmitDiagnostics( // (7,17): warning CS0414: The field 'C1.field' is assigned but its value is never used // private int field = 44; Diagnostic(ErrorCode.WRN_UnreferencedFieldAssg, "field").WithArguments("C1.field").WithLocation(7, 17), // (11,32): warning CS0414: The field 'C1.a' is assigned but its value is never used // public event System.Action a = null; Diagnostic(ErrorCode.WRN_UnreferencedFieldAssg, "a").WithArguments("C1.a").WithLocation(11, 32), // (13,17): warning CS0414: The field 'C1.field1' is assigned but its value is never used // private int field1 = 100; Diagnostic(ErrorCode.WRN_UnreferencedFieldAssg, "field1").WithArguments("C1.field1").WithLocation(13, 17) ); } [Fact] public void ToString_PrivateGetter() { var src = @" var c1 = new C1(); System.Console.Write(c1.ToString()); record struct C1 { public int P1 { private get => 43; set => throw null; } } "; var comp = CreateCompilation(src); CompileAndVerify(comp, expectedOutput: "C1 { P1 = 43 }"); comp.VerifyEmitDiagnostics(); } [Fact] public void ToString_TopLevelRecord_OneField_ValueType() { var src = @" var c1 = new C1() { field = 42 }; System.Console.Write(c1.ToString()); record struct C1 { public int field; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); var v = CompileAndVerify(comp, expectedOutput: "C1 { field = 42 }"); var print = comp.GetMember<MethodSymbol>("C1." + WellKnownMemberNames.PrintMembersMethodName); Assert.Equal(Accessibility.Private, print.DeclaredAccessibility); Assert.False(print.IsOverride); Assert.False(print.IsVirtual); Assert.False(print.IsAbstract); Assert.False(print.IsSealed); Assert.True(print.IsImplicitlyDeclared); var toString = comp.GetMember<MethodSymbol>("C1." + WellKnownMemberNames.ObjectToString); Assert.Equal(Accessibility.Public, toString.DeclaredAccessibility); Assert.True(toString.IsOverride); Assert.False(toString.IsVirtual); Assert.False(toString.IsAbstract); Assert.False(toString.IsSealed); Assert.True(toString.IsImplicitlyDeclared); v.VerifyIL("C1." + WellKnownMemberNames.PrintMembersMethodName, @" { // Code size 38 (0x26) .maxstack 2 IL_0000: ldarg.1 IL_0001: ldstr ""field = "" IL_0006: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_000b: pop IL_000c: ldarg.1 IL_000d: ldarg.0 IL_000e: ldflda ""int C1.field"" IL_0013: constrained. ""int"" IL_0019: callvirt ""string object.ToString()"" IL_001e: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0023: pop IL_0024: ldc.i4.1 IL_0025: ret } "); } [Fact] public void ToString_TopLevelRecord_OneField_ConstrainedValueType() { var src = @" var c1 = new C1<int>() { field = 42 }; System.Console.Write(c1.ToString()); record struct C1<T> where T : struct { public T field; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); var v = CompileAndVerify(comp, expectedOutput: "C1 { field = 42 }"); v.VerifyIL("C1<T>." + WellKnownMemberNames.PrintMembersMethodName, @" { // Code size 41 (0x29) .maxstack 2 .locals init (T V_0) IL_0000: ldarg.1 IL_0001: ldstr ""field = "" IL_0006: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_000b: pop IL_000c: ldarg.1 IL_000d: ldarg.0 IL_000e: ldfld ""T C1<T>.field"" IL_0013: stloc.0 IL_0014: ldloca.s V_0 IL_0016: constrained. ""T"" IL_001c: callvirt ""string object.ToString()"" IL_0021: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0026: pop IL_0027: ldc.i4.1 IL_0028: ret } "); } [Fact] public void ToString_TopLevelRecord_OneField_ReferenceType() { var src = @" var c1 = new C1() { field = ""hello"" }; System.Console.Write(c1.ToString()); record struct C1 { public string field; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); var v = CompileAndVerify(comp, expectedOutput: "C1 { field = hello }"); v.VerifyIL("C1." + WellKnownMemberNames.PrintMembersMethodName, @" { // Code size 27 (0x1b) .maxstack 2 IL_0000: ldarg.1 IL_0001: ldstr ""field = "" IL_0006: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_000b: pop IL_000c: ldarg.1 IL_000d: ldarg.0 IL_000e: ldfld ""string C1.field"" IL_0013: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(object)"" IL_0018: pop IL_0019: ldc.i4.1 IL_001a: ret } "); } [Fact] public void ToString_TopLevelRecord_TwoFields_ReferenceType() { var src = @" var c1 = new C1(42) { field1 = ""hi"", field2 = null }; System.Console.Write(c1.ToString()); record struct C1(int I) { public string field1 = null; public string field2 = null; private string field3 = null; internal string field4 = null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (10,20): warning CS0414: The field 'C1.field3' is assigned but its value is never used // private string field3 = null; Diagnostic(ErrorCode.WRN_UnreferencedFieldAssg, "field3").WithArguments("C1.field3").WithLocation(10, 20) ); var v = CompileAndVerify(comp, expectedOutput: "C1 { I = 42, field1 = hi, field2 = }"); v.VerifyIL("C1." + WellKnownMemberNames.PrintMembersMethodName, @" { // Code size 91 (0x5b) .maxstack 2 .locals init (int V_0) IL_0000: ldarg.1 IL_0001: ldstr ""I = "" IL_0006: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_000b: pop IL_000c: ldarg.1 IL_000d: ldarg.0 IL_000e: call ""readonly int C1.I.get"" IL_0013: stloc.0 IL_0014: ldloca.s V_0 IL_0016: constrained. ""int"" IL_001c: callvirt ""string object.ToString()"" IL_0021: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0026: pop IL_0027: ldarg.1 IL_0028: ldstr "", field1 = "" IL_002d: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0032: pop IL_0033: ldarg.1 IL_0034: ldarg.0 IL_0035: ldfld ""string C1.field1"" IL_003a: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(object)"" IL_003f: pop IL_0040: ldarg.1 IL_0041: ldstr "", field2 = "" IL_0046: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_004b: pop IL_004c: ldarg.1 IL_004d: ldarg.0 IL_004e: ldfld ""string C1.field2"" IL_0053: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(object)"" IL_0058: pop IL_0059: ldc.i4.1 IL_005a: ret } "); } [Fact] public void ToString_TopLevelRecord_Readonly() { var src = @" var c1 = new C1(42); System.Console.Write(c1.ToString()); readonly record struct C1(int I); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var v = CompileAndVerify(comp, expectedOutput: "C1 { I = 42 }", verify: Verification.Skipped /* init-only */); v.VerifyIL("C1." + WellKnownMemberNames.PrintMembersMethodName, @" { // Code size 41 (0x29) .maxstack 2 .locals init (int V_0) IL_0000: ldarg.1 IL_0001: ldstr ""I = "" IL_0006: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_000b: pop IL_000c: ldarg.1 IL_000d: ldarg.0 IL_000e: call ""int C1.I.get"" IL_0013: stloc.0 IL_0014: ldloca.s V_0 IL_0016: constrained. ""int"" IL_001c: callvirt ""string object.ToString()"" IL_0021: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0026: pop IL_0027: ldc.i4.1 IL_0028: ret } "); v.VerifyIL("C1." + WellKnownMemberNames.ObjectToString, @" { // Code size 64 (0x40) .maxstack 2 .locals init (System.Text.StringBuilder V_0) IL_0000: newobj ""System.Text.StringBuilder..ctor()"" IL_0005: stloc.0 IL_0006: ldloc.0 IL_0007: ldstr ""C1"" IL_000c: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0011: pop IL_0012: ldloc.0 IL_0013: ldstr "" { "" IL_0018: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_001d: pop IL_001e: ldarg.0 IL_001f: ldloc.0 IL_0020: call ""bool C1.PrintMembers(System.Text.StringBuilder)"" IL_0025: brfalse.s IL_0030 IL_0027: ldloc.0 IL_0028: ldc.i4.s 32 IL_002a: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(char)"" IL_002f: pop IL_0030: ldloc.0 IL_0031: ldc.i4.s 125 IL_0033: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(char)"" IL_0038: pop IL_0039: ldloc.0 IL_003a: callvirt ""string object.ToString()"" IL_003f: ret } "); } [Fact] public void ToString_TopLevelRecord_UserDefinedToString() { var src = @" var c1 = new C1(); System.Console.Write(c1.ToString()); record struct C1 { public override string ToString() => ""RAN""; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "RAN"); var print = comp.GetMember<MethodSymbol>("C1." + WellKnownMemberNames.PrintMembersMethodName); Assert.Equal("readonly System.Boolean C1." + WellKnownMemberNames.PrintMembersMethodName + "(System.Text.StringBuilder builder)", print.ToTestDisplayString()); } [Fact] public void ToString_TopLevelRecord_UserDefinedToString_New() { var src = @" record struct C1 { public new string ToString() => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,23): error CS8869: 'C1.ToString()' does not override expected method from 'object'. // public new string ToString() => throw null; Diagnostic(ErrorCode.ERR_DoesNotOverrideMethodFromObject, "ToString").WithArguments("C1.ToString()").WithLocation(4, 23) ); } [Fact] public void ToString_TopLevelRecord_UserDefinedToString_Sealed() { var src = @" record struct C1 { public sealed override string ToString() => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,35): error CS0106: The modifier 'sealed' is not valid for this item // public sealed override string ToString() => throw null; Diagnostic(ErrorCode.ERR_BadMemberFlag, "ToString").WithArguments("sealed").WithLocation(4, 35) ); } [Fact] public void ToString_UserDefinedPrintMembers_WithNullableStringBuilder() { var src = @" #nullable enable record struct C1 { private bool PrintMembers(System.Text.StringBuilder? builder) => throw null!; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); } [Fact] public void ToString_UserDefinedPrintMembers_ErrorReturnType() { var src = @" record struct C1 { private Error PrintMembers(System.Text.StringBuilder builder) => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,13): error CS0246: The type or namespace name 'Error' could not be found (are you missing a using directive or an assembly reference?) // private Error PrintMembers(System.Text.StringBuilder builder) => throw null; Diagnostic(ErrorCode.ERR_SingleTypeNameNotFound, "Error").WithArguments("Error").WithLocation(4, 13) ); } [Fact] public void ToString_UserDefinedPrintMembers_WrongReturnType() { var src = @" record struct C1 { private int PrintMembers(System.Text.StringBuilder builder) => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,17): error CS8874: Record member 'C1.PrintMembers(StringBuilder)' must return 'bool'. // private int PrintMembers(System.Text.StringBuilder builder) => throw null; Diagnostic(ErrorCode.ERR_SignatureMismatchInRecord, "PrintMembers").WithArguments("C1.PrintMembers(System.Text.StringBuilder)", "bool").WithLocation(4, 17) ); } [Fact] public void ToString_UserDefinedPrintMembers() { var src = @" var c1 = new C1(); System.Console.Write(c1.ToString()); System.Console.Write("" - ""); c1.M(); record struct C1 { private bool PrintMembers(System.Text.StringBuilder builder) { builder.Append(""RAN""); return true; } public void M() { var builder = new System.Text.StringBuilder(); if (PrintMembers(builder)) { System.Console.Write(builder.ToString()); } } } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "C1 { RAN } - RAN"); } [Fact] public void ToString_CallingSynthesizedPrintMembers() { var src = @" var c1 = new C1(1, 2, 3); System.Console.Write(c1.ToString()); System.Console.Write("" - ""); c1.M(); record struct C1(int I, int I2, int I3) { public void M() { var builder = new System.Text.StringBuilder(); if (PrintMembers(builder)) { System.Console.Write(builder.ToString()); } } } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "C1 { I = 1, I2 = 2, I3 = 3 } - I = 1, I2 = 2, I3 = 3"); } [Fact] public void ToString_UserDefinedPrintMembers_WrongAccessibility() { var src = @" var c = new C1(); System.Console.Write(c.ToString()); record struct C1 { internal bool PrintMembers(System.Text.StringBuilder builder) => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (7,19): error CS8879: Record member 'C1.PrintMembers(StringBuilder)' must be private. // internal bool PrintMembers(System.Text.StringBuilder builder) => throw null; Diagnostic(ErrorCode.ERR_NonPrivateAPIInRecord, "PrintMembers").WithArguments("C1.PrintMembers(System.Text.StringBuilder)").WithLocation(7, 19) ); } [Fact] public void ToString_UserDefinedPrintMembers_Static() { var src = @" record struct C1 { static private bool PrintMembers(System.Text.StringBuilder builder) => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,25): error CS8877: Record member 'C1.PrintMembers(StringBuilder)' may not be static. // static private bool PrintMembers(System.Text.StringBuilder builder) => throw null; Diagnostic(ErrorCode.ERR_StaticAPIInRecord, "PrintMembers").WithArguments("C1.PrintMembers(System.Text.StringBuilder)").WithLocation(4, 25) ); } [Fact] public void ToString_GeneratedAsReadOnly() { var src = @" record struct A(int I, string S); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var method = comp.GetMember<SynthesizedRecordToString>("A.ToString"); Assert.True(method.IsDeclaredReadOnly); } [Fact] public void ToString_WihtNonReadOnlyGetter_GeneratedAsNonReadOnly() { var src = @" record struct A(int I, string S) { public double T => 0.1; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var method = comp.GetMember<SynthesizedRecordToString>("A.ToString"); Assert.False(method.IsDeclaredReadOnly); } [Fact] public void AmbigCtor_WithPropertyInitializer() { // Scenario causes ambiguous ctor for record class, but not record struct var src = @" record struct R(R X) { public R X { get; init; } = X; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,14): error CS0523: Struct member 'R.X' of type 'R' causes a cycle in the struct layout // public R X { get; init; } = X; Diagnostic(ErrorCode.ERR_StructLayoutCycle, "X").WithArguments("R.X", "R").WithLocation(4, 14) ); var tree = comp.SyntaxTrees[0]; var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var parameterSyntax = tree.GetRoot().DescendantNodes().OfType<ParameterSyntax>().Single(); var parameter = model.GetDeclaredSymbol(parameterSyntax)!; Assert.Equal("R X", parameter.ToTestDisplayString()); Assert.Equal(SymbolKind.Parameter, parameter.Kind); Assert.Equal("R..ctor(R X)", parameter.ContainingSymbol.ToTestDisplayString()); var initializerSyntax = tree.GetRoot().DescendantNodes().OfType<EqualsValueClauseSyntax>().Single(); var initializer = model.GetSymbolInfo(initializerSyntax.Value).Symbol!; Assert.Equal("R X", initializer.ToTestDisplayString()); Assert.Equal(SymbolKind.Parameter, initializer.Kind); Assert.Equal("R..ctor(R X)", initializer.ContainingSymbol.ToTestDisplayString()); var src2 = @" record struct R(R X); "; var comp2 = CreateCompilation(src2); comp2.VerifyEmitDiagnostics( // (2,19): error CS0523: Struct member 'R.X' of type 'R' causes a cycle in the struct layout // record struct R(R X); Diagnostic(ErrorCode.ERR_StructLayoutCycle, "X").WithArguments("R.X", "R").WithLocation(2, 19) ); } [Fact] public void GetDeclaredSymbolOnAnOutLocalInPropertyInitializer() { var src = @" record struct R(int I) { public int I { get; init; } = M(out int i); static int M(out int i) => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (2,21): warning CS8907: Parameter 'I' is unread. Did you forget to use it to initialize the property with that name? // record struct R(int I) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "I").WithArguments("I").WithLocation(2, 21) ); var tree = comp.SyntaxTrees[0]; var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var outVarSyntax = tree.GetRoot().DescendantNodes().OfType<SingleVariableDesignationSyntax>().Single(); var outVar = model.GetDeclaredSymbol(outVarSyntax)!; Assert.Equal("System.Int32 i", outVar.ToTestDisplayString()); Assert.Equal(SymbolKind.Local, outVar.Kind); Assert.Equal("System.Int32 R.<I>k__BackingField", outVar.ContainingSymbol.ToTestDisplayString()); } [Fact] public void AnalyzerActions_01() { // Test RegisterSyntaxNodeAction var text1 = @" record struct A([Attr1]int X = 0) : I1 { private int M() => 3; A(string S) : this(4) => throw null; } interface I1 {} class Attr1 : System.Attribute {} "; var analyzer = new AnalyzerActions_01_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount0); Assert.Equal(1, analyzer.FireCountRecordStructDeclarationA); Assert.Equal(1, analyzer.FireCountRecordStructDeclarationACtor); Assert.Equal(1, analyzer.FireCount3); Assert.Equal(1, analyzer.FireCountSimpleBaseTypeI1onA); Assert.Equal(1, analyzer.FireCount5); Assert.Equal(1, analyzer.FireCountParameterListAPrimaryCtor); Assert.Equal(1, analyzer.FireCount7); Assert.Equal(1, analyzer.FireCountConstructorDeclaration); Assert.Equal(1, analyzer.FireCountStringParameterList); Assert.Equal(1, analyzer.FireCountThisConstructorInitializer); Assert.Equal(1, analyzer.FireCount11); Assert.Equal(1, analyzer.FireCount12); } private class AnalyzerActions_01_Analyzer : DiagnosticAnalyzer { public int FireCount0; public int FireCountRecordStructDeclarationA; public int FireCountRecordStructDeclarationACtor; public int FireCount3; public int FireCountSimpleBaseTypeI1onA; public int FireCount5; public int FireCountParameterListAPrimaryCtor; public int FireCount7; public int FireCountConstructorDeclaration; public int FireCountStringParameterList; public int FireCountThisConstructorInitializer; public int FireCount11; public int FireCount12; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterSyntaxNodeAction(Handle1, SyntaxKind.NumericLiteralExpression); context.RegisterSyntaxNodeAction(Handle2, SyntaxKind.EqualsValueClause); context.RegisterSyntaxNodeAction(Fail, SyntaxKind.BaseConstructorInitializer); context.RegisterSyntaxNodeAction(Handle3, SyntaxKind.ThisConstructorInitializer); context.RegisterSyntaxNodeAction(Handle4, SyntaxKind.ConstructorDeclaration); context.RegisterSyntaxNodeAction(Fail, SyntaxKind.PrimaryConstructorBaseType); context.RegisterSyntaxNodeAction(Handle6, SyntaxKind.RecordStructDeclaration); context.RegisterSyntaxNodeAction(Handle7, SyntaxKind.IdentifierName); context.RegisterSyntaxNodeAction(Handle8, SyntaxKind.SimpleBaseType); context.RegisterSyntaxNodeAction(Handle9, SyntaxKind.ParameterList); context.RegisterSyntaxNodeAction(Handle10, SyntaxKind.ArgumentList); } protected void Handle1(SyntaxNodeAnalysisContext context) { var literal = (LiteralExpressionSyntax)context.Node; switch (literal.ToString()) { case "0": Interlocked.Increment(ref FireCount0); Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); break; case "3": Interlocked.Increment(ref FireCount7); Assert.Equal("System.Int32 A.M()", context.ContainingSymbol.ToTestDisplayString()); break; case "4": Interlocked.Increment(ref FireCount12); Assert.Equal("A..ctor(System.String S)", context.ContainingSymbol.ToTestDisplayString()); break; default: Assert.True(false); break; } Assert.Same(literal.SyntaxTree, context.ContainingSymbol!.DeclaringSyntaxReferences.Single().SyntaxTree); } protected void Handle2(SyntaxNodeAnalysisContext context) { var equalsValue = (EqualsValueClauseSyntax)context.Node; switch (equalsValue.ToString()) { case "= 0": Interlocked.Increment(ref FireCount3); Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); break; default: Assert.True(false); break; } Assert.Same(equalsValue.SyntaxTree, context.ContainingSymbol!.DeclaringSyntaxReferences.Single().SyntaxTree); } protected void Handle3(SyntaxNodeAnalysisContext context) { var initializer = (ConstructorInitializerSyntax)context.Node; switch (initializer.ToString()) { case ": this(4)": Interlocked.Increment(ref FireCountThisConstructorInitializer); Assert.Equal("A..ctor(System.String S)", context.ContainingSymbol.ToTestDisplayString()); break; default: Assert.True(false); break; } Assert.Same(initializer.SyntaxTree, context.ContainingSymbol!.DeclaringSyntaxReferences.Single().SyntaxTree); } protected void Handle4(SyntaxNodeAnalysisContext context) { Interlocked.Increment(ref FireCountConstructorDeclaration); Assert.Equal("A..ctor(System.String S)", context.ContainingSymbol.ToTestDisplayString()); } protected void Fail(SyntaxNodeAnalysisContext context) { Assert.True(false); } protected void Handle6(SyntaxNodeAnalysisContext context) { var record = (RecordDeclarationSyntax)context.Node; Assert.Equal(SyntaxKind.RecordStructDeclaration, record.Kind()); switch (context.ContainingSymbol.ToTestDisplayString()) { case "A": Interlocked.Increment(ref FireCountRecordStructDeclarationA); break; case "A..ctor([System.Int32 X = 0])": Interlocked.Increment(ref FireCountRecordStructDeclarationACtor); break; default: Assert.True(false); break; } Assert.Same(record.SyntaxTree, context.ContainingSymbol!.DeclaringSyntaxReferences.Single().SyntaxTree); } protected void Handle7(SyntaxNodeAnalysisContext context) { var identifier = (IdentifierNameSyntax)context.Node; switch (identifier.Identifier.ValueText) { case "Attr1": Interlocked.Increment(ref FireCount5); Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); break; } } protected void Handle8(SyntaxNodeAnalysisContext context) { var baseType = (SimpleBaseTypeSyntax)context.Node; switch (baseType.ToString()) { case "I1": switch (context.ContainingSymbol.ToTestDisplayString()) { case "A": Interlocked.Increment(ref FireCountSimpleBaseTypeI1onA); break; default: Assert.True(false); break; } break; case "System.Attribute": break; default: Assert.True(false); break; } } protected void Handle9(SyntaxNodeAnalysisContext context) { var parameterList = (ParameterListSyntax)context.Node; switch (parameterList.ToString()) { case "([Attr1]int X = 0)": Interlocked.Increment(ref FireCountParameterListAPrimaryCtor); Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); break; case "(string S)": Interlocked.Increment(ref FireCountStringParameterList); Assert.Equal("A..ctor(System.String S)", context.ContainingSymbol.ToTestDisplayString()); break; case "()": break; default: Assert.True(false); break; } } protected void Handle10(SyntaxNodeAnalysisContext context) { var argumentList = (ArgumentListSyntax)context.Node; switch (argumentList.ToString()) { case "(4)": Interlocked.Increment(ref FireCount11); Assert.Equal("A..ctor(System.String S)", context.ContainingSymbol.ToTestDisplayString()); break; default: Assert.True(false); break; } } } [Fact] public void AnalyzerActions_02() { // Test RegisterSymbolAction var text1 = @" record struct A(int X = 0) {} record struct C { C(int Z = 4) {} } "; var analyzer = new AnalyzerActions_02_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount1); Assert.Equal(1, analyzer.FireCount2); Assert.Equal(1, analyzer.FireCount3); Assert.Equal(1, analyzer.FireCount4); Assert.Equal(1, analyzer.FireCount5); Assert.Equal(1, analyzer.FireCount6); Assert.Equal(1, analyzer.FireCount7); } private class AnalyzerActions_02_Analyzer : DiagnosticAnalyzer { public int FireCount1; public int FireCount2; public int FireCount3; public int FireCount4; public int FireCount5; public int FireCount6; public int FireCount7; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterSymbolAction(Handle, SymbolKind.Method); context.RegisterSymbolAction(Handle, SymbolKind.Property); context.RegisterSymbolAction(Handle, SymbolKind.Parameter); context.RegisterSymbolAction(Handle, SymbolKind.NamedType); } private void Handle(SymbolAnalysisContext context) { switch (context.Symbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": Interlocked.Increment(ref FireCount1); break; case "System.Int32 A.X { get; set; }": Interlocked.Increment(ref FireCount2); break; case "[System.Int32 X = 0]": Interlocked.Increment(ref FireCount3); break; case "C..ctor([System.Int32 Z = 4])": Interlocked.Increment(ref FireCount4); break; case "[System.Int32 Z = 4]": Interlocked.Increment(ref FireCount5); break; case "A": Interlocked.Increment(ref FireCount6); break; case "C": Interlocked.Increment(ref FireCount7); break; case "System.Runtime.CompilerServices.IsExternalInit": break; default: Assert.True(false); break; } } } [Fact] public void AnalyzerActions_03() { // Test RegisterSymbolStartAction var text1 = @" readonly record struct A(int X = 0) {} readonly record struct C { C(int Z = 4) {} } "; var analyzer = new AnalyzerActions_03_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount1); Assert.Equal(1, analyzer.FireCount2); Assert.Equal(0, analyzer.FireCount3); Assert.Equal(1, analyzer.FireCount4); Assert.Equal(0, analyzer.FireCount5); Assert.Equal(1, analyzer.FireCount6); Assert.Equal(1, analyzer.FireCount7); Assert.Equal(1, analyzer.FireCount8); Assert.Equal(1, analyzer.FireCount9); Assert.Equal(1, analyzer.FireCount10); Assert.Equal(1, analyzer.FireCount11); Assert.Equal(1, analyzer.FireCount12); } private class AnalyzerActions_03_Analyzer : DiagnosticAnalyzer { public int FireCount1; public int FireCount2; public int FireCount3; public int FireCount4; public int FireCount5; public int FireCount6; public int FireCount7; public int FireCount8; public int FireCount9; public int FireCount10; public int FireCount11; public int FireCount12; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterSymbolStartAction(Handle1, SymbolKind.Method); context.RegisterSymbolStartAction(Handle1, SymbolKind.Property); context.RegisterSymbolStartAction(Handle1, SymbolKind.Parameter); context.RegisterSymbolStartAction(Handle1, SymbolKind.NamedType); } private void Handle1(SymbolStartAnalysisContext context) { switch (context.Symbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": Interlocked.Increment(ref FireCount1); context.RegisterSymbolEndAction(Handle2); break; case "System.Int32 A.X { get; init; }": Interlocked.Increment(ref FireCount2); context.RegisterSymbolEndAction(Handle3); break; case "[System.Int32 X = 0]": Interlocked.Increment(ref FireCount3); break; case "C..ctor([System.Int32 Z = 4])": Interlocked.Increment(ref FireCount4); context.RegisterSymbolEndAction(Handle4); break; case "[System.Int32 Z = 4]": Interlocked.Increment(ref FireCount5); break; case "A": Interlocked.Increment(ref FireCount9); Assert.Equal(0, FireCount1); Assert.Equal(0, FireCount2); Assert.Equal(0, FireCount6); Assert.Equal(0, FireCount7); context.RegisterSymbolEndAction(Handle5); break; case "C": Interlocked.Increment(ref FireCount10); Assert.Equal(0, FireCount4); Assert.Equal(0, FireCount8); context.RegisterSymbolEndAction(Handle6); break; case "System.Runtime.CompilerServices.IsExternalInit": break; default: Assert.True(false); break; } } private void Handle2(SymbolAnalysisContext context) { Assert.Equal("A..ctor([System.Int32 X = 0])", context.Symbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount6); } private void Handle3(SymbolAnalysisContext context) { Assert.Equal("System.Int32 A.X { get; init; }", context.Symbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount7); } private void Handle4(SymbolAnalysisContext context) { Assert.Equal("C..ctor([System.Int32 Z = 4])", context.Symbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount8); } private void Handle5(SymbolAnalysisContext context) { Assert.Equal("A", context.Symbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount11); Assert.Equal(1, FireCount1); Assert.Equal(1, FireCount2); Assert.Equal(1, FireCount6); Assert.Equal(1, FireCount7); } private void Handle6(SymbolAnalysisContext context) { Assert.Equal("C", context.Symbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount12); Assert.Equal(1, FireCount4); Assert.Equal(1, FireCount8); } } [Fact] public void AnalyzerActions_04() { // Test RegisterOperationAction var text1 = @" record struct A([Attr1(100)]int X = 0) : I1 {} interface I1 {} "; var analyzer = new AnalyzerActions_04_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(0, analyzer.FireCount1); Assert.Equal(1, analyzer.FireCount6); Assert.Equal(1, analyzer.FireCount7); Assert.Equal(1, analyzer.FireCount14); } private class AnalyzerActions_04_Analyzer : DiagnosticAnalyzer { public int FireCount1; public int FireCount6; public int FireCount7; public int FireCount14; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterOperationAction(HandleConstructorBody, OperationKind.ConstructorBody); context.RegisterOperationAction(HandleInvocation, OperationKind.Invocation); context.RegisterOperationAction(HandleLiteral, OperationKind.Literal); context.RegisterOperationAction(HandleParameterInitializer, OperationKind.ParameterInitializer); context.RegisterOperationAction(Fail, OperationKind.PropertyInitializer); context.RegisterOperationAction(Fail, OperationKind.FieldInitializer); } protected void HandleConstructorBody(OperationAnalysisContext context) { switch (context.ContainingSymbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": Interlocked.Increment(ref FireCount1); Assert.Equal(SyntaxKind.RecordDeclaration, context.Operation.Syntax.Kind()); VerifyOperationTree((CSharpCompilation)context.Compilation, context.Operation, @""); break; default: Assert.True(false); break; } } protected void HandleInvocation(OperationAnalysisContext context) { Assert.True(false); } protected void HandleLiteral(OperationAnalysisContext context) { switch (context.Operation.Syntax.ToString()) { case "100": Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount6); break; case "0": Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount7); break; default: Assert.True(false); break; } } protected void HandleParameterInitializer(OperationAnalysisContext context) { switch (context.Operation.Syntax.ToString()) { case "= 0": Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount14); break; default: Assert.True(false); break; } } protected void Fail(OperationAnalysisContext context) { Assert.True(false); } } [Fact] public void AnalyzerActions_05() { // Test RegisterOperationBlockAction var text1 = @" record struct A([Attr1(100)]int X = 0) : I1 {} interface I1 {} "; var analyzer = new AnalyzerActions_05_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount1); } private class AnalyzerActions_05_Analyzer : DiagnosticAnalyzer { public int FireCount1; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterOperationBlockAction(Handle); } private void Handle(OperationBlockAnalysisContext context) { switch (context.OwningSymbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": Interlocked.Increment(ref FireCount1); Assert.Equal(2, context.OperationBlocks.Length); Assert.Equal(OperationKind.ParameterInitializer, context.OperationBlocks[0].Kind); Assert.Equal("= 0", context.OperationBlocks[0].Syntax.ToString()); Assert.Equal(OperationKind.None, context.OperationBlocks[1].Kind); Assert.Equal("Attr1(100)", context.OperationBlocks[1].Syntax.ToString()); break; default: Assert.True(false); break; } } } [Fact] public void AnalyzerActions_07() { // Test RegisterCodeBlockAction var text1 = @" record struct A([Attr1(100)]int X = 0) : I1 { int M() => 3; } interface I1 {} "; var analyzer = new AnalyzerActions_07_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount1); Assert.Equal(1, analyzer.FireCount4); } private class AnalyzerActions_07_Analyzer : DiagnosticAnalyzer { public int FireCount1; public int FireCount4; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterCodeBlockAction(Handle); } private void Handle(CodeBlockAnalysisContext context) { switch (context.OwningSymbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": switch (context.CodeBlock) { case RecordDeclarationSyntax { Identifier: { ValueText: "A" } }: Interlocked.Increment(ref FireCount1); break; default: Assert.True(false); break; } break; case "System.Int32 A.M()": switch (context.CodeBlock) { case MethodDeclarationSyntax { Identifier: { ValueText: "M" } }: Interlocked.Increment(ref FireCount4); break; default: Assert.True(false); break; } break; default: Assert.True(false); break; } } } [Fact] public void AnalyzerActions_08() { // Test RegisterCodeBlockStartAction var text1 = @" record struct A([Attr1]int X = 0) : I1 { private int M() => 3; A(string S) : this(4) => throw null; } interface I1 {} "; var analyzer = new AnalyzerActions_08_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount100); Assert.Equal(1, analyzer.FireCount400); Assert.Equal(1, analyzer.FireCount500); Assert.Equal(1, analyzer.FireCount0); Assert.Equal(0, analyzer.FireCountRecordStructDeclarationA); Assert.Equal(0, analyzer.FireCountRecordStructDeclarationACtor); Assert.Equal(1, analyzer.FireCount3); Assert.Equal(0, analyzer.FireCountSimpleBaseTypeI1onA); Assert.Equal(1, analyzer.FireCount5); Assert.Equal(0, analyzer.FireCountParameterListAPrimaryCtor); Assert.Equal(1, analyzer.FireCount7); Assert.Equal(0, analyzer.FireCountConstructorDeclaration); Assert.Equal(0, analyzer.FireCountStringParameterList); Assert.Equal(1, analyzer.FireCountThisConstructorInitializer); Assert.Equal(1, analyzer.FireCount11); Assert.Equal(1, analyzer.FireCount12); Assert.Equal(1, analyzer.FireCount1000); Assert.Equal(1, analyzer.FireCount4000); Assert.Equal(1, analyzer.FireCount5000); } private class AnalyzerActions_08_Analyzer : AnalyzerActions_01_Analyzer { public int FireCount100; public int FireCount400; public int FireCount500; public int FireCount1000; public int FireCount4000; public int FireCount5000; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterCodeBlockStartAction<SyntaxKind>(Handle); } private void Handle(CodeBlockStartAnalysisContext<SyntaxKind> context) { switch (context.OwningSymbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": switch (context.CodeBlock) { case RecordDeclarationSyntax { Identifier: { ValueText: "A" } }: Interlocked.Increment(ref FireCount100); break; default: Assert.True(false); break; } break; case "System.Int32 A.M()": switch (context.CodeBlock) { case MethodDeclarationSyntax { Identifier: { ValueText: "M" } }: Interlocked.Increment(ref FireCount400); break; default: Assert.True(false); break; } break; case "A..ctor(System.String S)": switch (context.CodeBlock) { case ConstructorDeclarationSyntax { Identifier: { ValueText: "A" } }: Interlocked.Increment(ref FireCount500); break; default: Assert.True(false); break; } break; default: Assert.True(false); break; } context.RegisterSyntaxNodeAction(Handle1, SyntaxKind.NumericLiteralExpression); context.RegisterSyntaxNodeAction(Handle2, SyntaxKind.EqualsValueClause); context.RegisterSyntaxNodeAction(Fail, SyntaxKind.BaseConstructorInitializer); context.RegisterSyntaxNodeAction(Handle3, SyntaxKind.ThisConstructorInitializer); context.RegisterSyntaxNodeAction(Handle4, SyntaxKind.ConstructorDeclaration); context.RegisterSyntaxNodeAction(Fail, SyntaxKind.PrimaryConstructorBaseType); context.RegisterSyntaxNodeAction(Handle6, SyntaxKind.RecordStructDeclaration); context.RegisterSyntaxNodeAction(Handle7, SyntaxKind.IdentifierName); context.RegisterSyntaxNodeAction(Handle8, SyntaxKind.SimpleBaseType); context.RegisterSyntaxNodeAction(Handle9, SyntaxKind.ParameterList); context.RegisterSyntaxNodeAction(Handle10, SyntaxKind.ArgumentList); context.RegisterCodeBlockEndAction(Handle11); } private void Handle11(CodeBlockAnalysisContext context) { switch (context.OwningSymbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": switch (context.CodeBlock) { case RecordDeclarationSyntax { Identifier: { ValueText: "A" } }: Interlocked.Increment(ref FireCount1000); break; default: Assert.True(false); break; } break; case "System.Int32 A.M()": switch (context.CodeBlock) { case MethodDeclarationSyntax { Identifier: { ValueText: "M" } }: Interlocked.Increment(ref FireCount4000); break; default: Assert.True(false); break; } break; case "A..ctor(System.String S)": switch (context.CodeBlock) { case ConstructorDeclarationSyntax { Identifier: { ValueText: "A" } }: Interlocked.Increment(ref FireCount5000); break; default: Assert.True(false); break; } break; default: Assert.True(false); break; } } } [Fact] public void AnalyzerActions_09() { var text1 = @" record A([Attr1(100)]int X = 0) : I1 {} record B([Attr2(200)]int Y = 1) : A(2), I1 { int M() => 3; } record C : A, I1 { C([Attr3(300)]int Z = 4) : base(5) {} } interface I1 {} "; var analyzer = new AnalyzerActions_09_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount1); Assert.Equal(1, analyzer.FireCount2); Assert.Equal(1, analyzer.FireCount3); Assert.Equal(1, analyzer.FireCount4); Assert.Equal(1, analyzer.FireCount5); Assert.Equal(1, analyzer.FireCount6); Assert.Equal(1, analyzer.FireCount7); Assert.Equal(1, analyzer.FireCount8); Assert.Equal(1, analyzer.FireCount9); } private class AnalyzerActions_09_Analyzer : DiagnosticAnalyzer { public int FireCount1; public int FireCount2; public int FireCount3; public int FireCount4; public int FireCount5; public int FireCount6; public int FireCount7; public int FireCount8; public int FireCount9; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterSymbolAction(Handle1, SymbolKind.Method); context.RegisterSymbolAction(Handle2, SymbolKind.Property); context.RegisterSymbolAction(Handle3, SymbolKind.Parameter); } private void Handle1(SymbolAnalysisContext context) { switch (context.Symbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": Interlocked.Increment(ref FireCount1); break; case "B..ctor([System.Int32 Y = 1])": Interlocked.Increment(ref FireCount2); break; case "C..ctor([System.Int32 Z = 4])": Interlocked.Increment(ref FireCount3); break; case "System.Int32 B.M()": Interlocked.Increment(ref FireCount4); break; default: Assert.True(false); break; } } private void Handle2(SymbolAnalysisContext context) { switch (context.Symbol.ToTestDisplayString()) { case "System.Int32 A.X { get; init; }": Interlocked.Increment(ref FireCount5); break; case "System.Int32 B.Y { get; init; }": Interlocked.Increment(ref FireCount6); break; default: Assert.True(false); break; } } private void Handle3(SymbolAnalysisContext context) { switch (context.Symbol.ToTestDisplayString()) { case "[System.Int32 X = 0]": Interlocked.Increment(ref FireCount7); break; case "[System.Int32 Y = 1]": Interlocked.Increment(ref FireCount8); break; case "[System.Int32 Z = 4]": Interlocked.Increment(ref FireCount9); break; default: Assert.True(false); break; } } } [Fact] public void WithExprOnStruct_LangVersion() { var src = @" var b = new B() { X = 1 }; var b2 = b.M(); System.Console.Write(b2.X); System.Console.Write("" ""); System.Console.Write(b.X); public struct B { public int X { get; set; } public B M() /*<bind>*/{ return this with { X = 42 }; }/*</bind>*/ }"; var comp = CreateCompilation(src, parseOptions: TestOptions.Regular9); comp.VerifyEmitDiagnostics( // (13,16): error CS8773: Feature 'with on structs' is not available in C# 9.0. Please use language version 10.0 or greater. // return this with { X = 42 }; Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "this with { X = 42 }").WithArguments("with on structs", "10.0").WithLocation(13, 16) ); comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42 1"); verifier.VerifyIL("B.M", @" { // Code size 18 (0x12) .maxstack 2 .locals init (B V_0) IL_0000: ldarg.0 IL_0001: ldobj ""B"" IL_0006: stloc.0 IL_0007: ldloca.s V_0 IL_0009: ldc.i4.s 42 IL_000b: call ""void B.X.set"" IL_0010: ldloc.0 IL_0011: ret }"); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var with = tree.GetRoot().DescendantNodes().OfType<WithExpressionSyntax>().Single(); var type = model.GetTypeInfo(with); Assert.Equal("B", type.Type.ToTestDisplayString()); var operation = model.GetOperation(with); VerifyOperationTree(comp, operation, @" IWithOperation (OperationKind.With, Type: B) (Syntax: 'this with { X = 42 }') Operand: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B) (Syntax: 'this') CloneMethod: null Initializer: IObjectOrCollectionInitializerOperation (OperationKind.ObjectOrCollectionInitializer, Type: B) (Syntax: '{ X = 42 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'X = 42') Left: IPropertyReferenceOperation: System.Int32 B.X { get; set; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'X') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: B, IsImplicit) (Syntax: 'X') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 42) (Syntax: '42') "); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'this') Value: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B) (Syntax: 'this') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'X = 42') Left: IPropertyReferenceOperation: System.Int32 B.X { get; set; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 42) (Syntax: '42') Next (Return) Block[B2] IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Leaving: {R1} } Block[B2] - Exit Predecessors: [B1] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExprOnStruct_ControlFlow_DuplicateInitialization() { var src = @" public struct B { public int X { get; set; } public B M() /*<bind>*/{ return this with { X = 42, X = 43 }; }/*</bind>*/ }"; var expectedDiagnostics = new[] { // (8,36): error CS1912: Duplicate initialization of member 'X' // return this with { X = 42, X = 43 }; Diagnostic(ErrorCode.ERR_MemberAlreadyInitialized, "X").WithArguments("X").WithLocation(8, 36) }; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'this') Value: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B) (Syntax: 'this') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'X = 42') Left: IPropertyReferenceOperation: System.Int32 B.X { get; set; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 42) (Syntax: '42') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsInvalid) (Syntax: 'X = 43') Left: IPropertyReferenceOperation: System.Int32 B.X { get; set; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 43) (Syntax: '43') Next (Return) Block[B2] IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Leaving: {R1} } Block[B2] - Exit Predecessors: [B1] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExprOnStruct_ControlFlow_NestedInitializer() { var src = @" public struct C { public int Y { get; set; } } public struct B { public C X { get; set; } public B M() /*<bind>*/{ return this with { X = { Y = 1 } }; }/*</bind>*/ }"; var expectedDiagnostics = new[] { // (12,32): error CS1525: Invalid expression term '{' // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.ERR_InvalidExprTerm, "{").WithArguments("{").WithLocation(12, 32), // (12,32): error CS1513: } expected // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.ERR_RbraceExpected, "{").WithLocation(12, 32), // (12,32): error CS1002: ; expected // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "{").WithLocation(12, 32), // (12,34): error CS0103: The name 'Y' does not exist in the current context // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.ERR_NameNotInContext, "Y").WithArguments("Y").WithLocation(12, 34), // (12,34): warning CS0162: Unreachable code detected // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.WRN_UnreachableCode, "Y").WithLocation(12, 34), // (12,40): error CS1002: ; expected // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "}").WithLocation(12, 40), // (12,43): error CS1597: Semicolon after method or accessor block is not valid // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.ERR_UnexpectedSemicolon, ";").WithLocation(12, 43), // (14,1): error CS1022: Type or namespace definition, or end-of-file expected // } Diagnostic(ErrorCode.ERR_EOFExpected, "}").WithLocation(14, 1) }; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'this') Value: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B) (Syntax: 'this') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: C, IsInvalid) (Syntax: 'X = ') Left: IPropertyReferenceOperation: C B.X { get; set; } (OperationKind.PropertyReference, Type: C) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Right: IInvalidOperation (OperationKind.Invalid, Type: null, IsInvalid) (Syntax: '') Children(0) Next (Return) Block[B3] IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Leaving: {R1} } Block[B2] - Block [UnReachable] Predecessors (0) Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null, IsInvalid) (Syntax: 'Y = 1 ') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: ?, IsInvalid) (Syntax: 'Y = 1') Left: IInvalidOperation (OperationKind.Invalid, Type: ?, IsInvalid) (Syntax: 'Y') Children(0) Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Next (Regular) Block[B3] Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExprOnStruct_ControlFlow_NonAssignmentExpression() { var src = @" public struct B { public int X { get; set; } public B M(int i, int j) /*<bind>*/{ return this with { i, j++, M2(), X = 2}; }/*</bind>*/ static int M2() => 0; }"; var expectedDiagnostics = new[] { // (8,28): error CS0747: Invalid initializer member declarator // return this with { i, j++, M2(), X = 2}; Diagnostic(ErrorCode.ERR_InvalidInitializerElementInitializer, "i").WithLocation(8, 28), // (8,31): error CS0747: Invalid initializer member declarator // return this with { i, j++, M2(), X = 2}; Diagnostic(ErrorCode.ERR_InvalidInitializerElementInitializer, "j++").WithLocation(8, 31), // (8,36): error CS0747: Invalid initializer member declarator // return this with { i, j++, M2(), X = 2}; Diagnostic(ErrorCode.ERR_InvalidInitializerElementInitializer, "M2()").WithLocation(8, 36) }; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (5) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'this') Value: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B) (Syntax: 'this') IInvalidOperation (OperationKind.Invalid, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'i') Children(1): IParameterReferenceOperation: i (OperationKind.ParameterReference, Type: System.Int32, IsInvalid) (Syntax: 'i') IInvalidOperation (OperationKind.Invalid, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'j++') Children(1): IIncrementOrDecrementOperation (Postfix) (OperationKind.Increment, Type: System.Int32, IsInvalid) (Syntax: 'j++') Target: IParameterReferenceOperation: j (OperationKind.ParameterReference, Type: System.Int32, IsInvalid) (Syntax: 'j') IInvalidOperation (OperationKind.Invalid, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'M2()') Children(1): IInvocationOperation (System.Int32 B.M2()) (OperationKind.Invocation, Type: System.Int32, IsInvalid) (Syntax: 'M2()') Instance Receiver: null Arguments(0) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'X = 2') Left: IPropertyReferenceOperation: System.Int32 B.X { get; set; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Next (Return) Block[B2] IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Leaving: {R1} } Block[B2] - Exit Predecessors: [B1] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void ObjectCreationInitializer_ControlFlow_WithCoalescingExpressionForValue() { var src = @" public struct B { public string X; public void M(string hello) /*<bind>*/{ var x = new B() { X = Identity((string)null) ?? Identity(hello) }; }/*</bind>*/ T Identity<T>(T t) => t; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { Locals: [B x] CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (1) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'new B() { X ... ty(hello) }') Value: IObjectCreationOperation (Constructor: B..ctor()) (OperationKind.ObjectCreation, Type: B) (Syntax: 'new B() { X ... ty(hello) }') Arguments(0) Initializer: null Next (Regular) Block[B2] Entering: {R2} {R3} .locals {R2} { CaptureIds: [2] .locals {R3} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity((string)null)') Value: IInvocationOperation ( System.String B.Identity<System.String>(System.String t)) (OperationKind.Invocation, Type: System.String) (Syntax: 'Identity((string)null)') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B, IsImplicit) (Syntax: 'Identity') Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '(string)null') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.String, Constant: null) (Syntax: '(string)null') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILiteralOperation (OperationKind.Literal, Type: null, Constant: null) (Syntax: 'null') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Jump if True (Regular) to Block[B4] IIsNullOperation (OperationKind.IsNull, Type: System.Boolean, IsImplicit) (Syntax: 'Identity((string)null)') Operand: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity((string)null)') Leaving: {R3} Next (Regular) Block[B3] Block[B3] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity((string)null)') Value: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity((string)null)') Next (Regular) Block[B5] Leaving: {R3} } Block[B4] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(hello)') Value: IInvocationOperation ( System.String B.Identity<System.String>(System.String t)) (OperationKind.Invocation, Type: System.String) (Syntax: 'Identity(hello)') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B, IsImplicit) (Syntax: 'Identity') Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'hello') IParameterReferenceOperation: hello (OperationKind.ParameterReference, Type: System.String) (Syntax: 'hello') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Block[B5] - Block Predecessors: [B3] [B4] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.String) (Syntax: 'X = Identit ... tity(hello)') Left: IFieldReferenceOperation: System.String B.X (OperationKind.FieldReference, Type: System.String) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'new B() { X ... ty(hello) }') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity((s ... tity(hello)') Next (Regular) Block[B6] Leaving: {R2} } Block[B6] - Block Predecessors: [B5] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: B, IsImplicit) (Syntax: 'x = new B() ... ty(hello) }') Left: ILocalReferenceOperation: x (IsDeclaration: True) (OperationKind.LocalReference, Type: B, IsImplicit) (Syntax: 'x = new B() ... ty(hello) }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'new B() { X ... ty(hello) }') Next (Regular) Block[B7] Leaving: {R1} } Block[B7] - Exit Predecessors: [B6] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics); } [Fact] public void WithExprOnStruct_ControlFlow_WithCoalescingExpressionForValue() { var src = @" var b = new B() { X = string.Empty }; var b2 = b.M(""hello""); System.Console.Write(b2.X); public struct B { public string X; public B M(string hello) /*<bind>*/{ return Identity(this) with { X = Identity((string)null) ?? Identity(hello) }; }/*</bind>*/ T Identity<T>(T t) => t; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "hello"); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (1) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(this)') Value: IInvocationOperation ( B B.Identity<B>(B t)) (OperationKind.Invocation, Type: B) (Syntax: 'Identity(this)') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B, IsImplicit) (Syntax: 'Identity') Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'this') IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B) (Syntax: 'this') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B2] Entering: {R2} {R3} .locals {R2} { CaptureIds: [2] .locals {R3} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity((string)null)') Value: IInvocationOperation ( System.String B.Identity<System.String>(System.String t)) (OperationKind.Invocation, Type: System.String) (Syntax: 'Identity((string)null)') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B, IsImplicit) (Syntax: 'Identity') Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '(string)null') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.String, Constant: null) (Syntax: '(string)null') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILiteralOperation (OperationKind.Literal, Type: null, Constant: null) (Syntax: 'null') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Jump if True (Regular) to Block[B4] IIsNullOperation (OperationKind.IsNull, Type: System.Boolean, IsImplicit) (Syntax: 'Identity((string)null)') Operand: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity((string)null)') Leaving: {R3} Next (Regular) Block[B3] Block[B3] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity((string)null)') Value: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity((string)null)') Next (Regular) Block[B5] Leaving: {R3} } Block[B4] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(hello)') Value: IInvocationOperation ( System.String B.Identity<System.String>(System.String t)) (OperationKind.Invocation, Type: System.String) (Syntax: 'Identity(hello)') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B, IsImplicit) (Syntax: 'Identity') Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'hello') IParameterReferenceOperation: hello (OperationKind.ParameterReference, Type: System.String) (Syntax: 'hello') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Block[B5] - Block Predecessors: [B3] [B4] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.String) (Syntax: 'X = Identit ... tity(hello)') Left: IFieldReferenceOperation: System.String B.X (OperationKind.FieldReference, Type: System.String) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'Identity(this)') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity((s ... tity(hello)') Next (Regular) Block[B6] Leaving: {R2} } Block[B6] - Block Predecessors: [B5] Statements (0) Next (Return) Block[B7] IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'Identity(this)') Leaving: {R1} } Block[B7] - Exit Predecessors: [B6] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExprOnStruct_OnParameter() { var src = @" var b = new B() { X = 1 }; var b2 = B.M(b); System.Console.Write(b2.X); public struct B { public int X { get; set; } public static B M(B b) { return b with { X = 42 }; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42"); verifier.VerifyIL("B.M", @" { // Code size 13 (0xd) .maxstack 2 .locals init (B V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: call ""void B.X.set"" IL_000b: ldloc.0 IL_000c: ret }"); } [Fact] public void WithExprOnStruct_OnThis() { var src = @" record struct C { public int X { get; set; } C(string ignored) { _ = this with { X = 42 }; // 1 this = default; } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (8,13): error CS0188: The 'this' object cannot be used before all of its fields have been assigned // _ = this with { X = 42 }; // 1 Diagnostic(ErrorCode.ERR_UseDefViolationThis, "this").WithArguments("this").WithLocation(8, 13) ); } [Fact] public void WithExprOnStruct_OnTStructParameter() { var src = @" var b = new B() { X = 1 }; var b2 = B.M(b); System.Console.Write(b2.X); public interface I { int X { get; set; } } public struct B : I { public int X { get; set; } public static T M<T>(T b) where T : struct, I { return b with { X = 42 }; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42"); verifier.VerifyIL("B.M<T>(T)", @" { // Code size 19 (0x13) .maxstack 2 .locals init (T V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: constrained. ""T"" IL_000c: callvirt ""void I.X.set"" IL_0011: ldloc.0 IL_0012: ret }"); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var with = tree.GetRoot().DescendantNodes().OfType<WithExpressionSyntax>().Single(); var type = model.GetTypeInfo(with); Assert.Equal("T", type.Type.ToTestDisplayString()); } [Fact] public void WithExprOnStruct_OnRecordStructParameter() { var src = @" var b = new B(1); var b2 = B.M(b); System.Console.Write(b2.X); public record struct B(int X) { public static B M(B b) { return b with { X = 42 }; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42"); verifier.VerifyIL("B.M", @" { // Code size 13 (0xd) .maxstack 2 .locals init (B V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: call ""void B.X.set"" IL_000b: ldloc.0 IL_000c: ret }"); } [Fact] public void WithExprOnStruct_OnRecordStructParameter_Readonly() { var src = @" var b = new B(1, 2); var b2 = B.M(b); System.Console.Write(b2.X); System.Console.Write(b2.Y); public readonly record struct B(int X, int Y) { public static B M(B b) { return b with { X = 42, Y = 43 }; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "4243", verify: Verification.Skipped /* init-only */); verifier.VerifyIL("B.M", @" { // Code size 22 (0x16) .maxstack 2 .locals init (B V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: call ""void B.X.init"" IL_000b: ldloca.s V_0 IL_000d: ldc.i4.s 43 IL_000f: call ""void B.Y.init"" IL_0014: ldloc.0 IL_0015: ret }"); } [Fact] public void WithExprOnStruct_OnTuple() { var src = @" class C { static void Main() { var b = (1, 2); var b2 = M(b); System.Console.Write(b2.Item1); System.Console.Write(b2.Item2); } static (int, int) M((int, int) b) { return b with { Item1 = 42, Item2 = 43 }; } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview, options: TestOptions.ReleaseExe); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "4243"); verifier.VerifyIL("C.M", @" { // Code size 22 (0x16) .maxstack 2 .locals init (System.ValueTuple<int, int> V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: stfld ""int System.ValueTuple<int, int>.Item1"" IL_000b: ldloca.s V_0 IL_000d: ldc.i4.s 43 IL_000f: stfld ""int System.ValueTuple<int, int>.Item2"" IL_0014: ldloc.0 IL_0015: ret }"); } [Fact] public void WithExprOnStruct_OnTuple_WithNames() { var src = @" var b = (1, 2); var b2 = M(b); System.Console.Write(b2.Item1); System.Console.Write(b2.Item2); static (int, int) M((int X, int Y) b) { return b with { X = 42, Y = 43 }; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "4243"); verifier.VerifyIL("Program.<<Main>$>g__M|0_0(System.ValueTuple<int, int>)", @" { // Code size 22 (0x16) .maxstack 2 .locals init (System.ValueTuple<int, int> V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: stfld ""int System.ValueTuple<int, int>.Item1"" IL_000b: ldloca.s V_0 IL_000d: ldc.i4.s 43 IL_000f: stfld ""int System.ValueTuple<int, int>.Item2"" IL_0014: ldloc.0 IL_0015: ret }"); } [Fact] public void WithExprOnStruct_OnTuple_LongTuple() { var src = @" var b = (1, 2, 3, 4, 5, 6, 7, 8); var b2 = M(b); System.Console.Write(b2.Item7); System.Console.Write(b2.Item8); static (int, int, int, int, int, int, int, int) M((int, int, int, int, int, int, int, int) b) { return b with { Item7 = 42, Item8 = 43 }; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "4243"); verifier.VerifyIL("Program.<<Main>$>g__M|0_0(System.ValueTuple<int, int, int, int, int, int, int, System.ValueTuple<int>>)", @" { // Code size 27 (0x1b) .maxstack 2 .locals init (System.ValueTuple<int, int, int, int, int, int, int, System.ValueTuple<int>> V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: stfld ""int System.ValueTuple<int, int, int, int, int, int, int, System.ValueTuple<int>>.Item7"" IL_000b: ldloca.s V_0 IL_000d: ldflda ""System.ValueTuple<int> System.ValueTuple<int, int, int, int, int, int, int, System.ValueTuple<int>>.Rest"" IL_0012: ldc.i4.s 43 IL_0014: stfld ""int System.ValueTuple<int>.Item1"" IL_0019: ldloc.0 IL_001a: ret }"); } [Fact] public void WithExprOnStruct_OnReadonlyField() { var src = @" var b = new B { X = 1 }; // 1 public struct B { public readonly int X; public B M() { return this with { X = 42 }; // 2 } public static B M2(B b) { return b with { X = 42 }; // 3 } public B(int i) { this = default; _ = this with { X = 42 }; // 4 } }"; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (2,17): error CS0191: A readonly field cannot be assigned to (except in a constructor or init-only setter of the type in which the field is defined or a variable initializer) // var b = new B { X = 1 }; // 1 Diagnostic(ErrorCode.ERR_AssgReadonly, "X").WithLocation(2, 17), // (9,28): error CS0191: A readonly field cannot be assigned to (except in a constructor or init-only setter of the type in which the field is defined or a variable initializer) // return this with { X = 42 }; // 2 Diagnostic(ErrorCode.ERR_AssgReadonly, "X").WithLocation(9, 28), // (13,25): error CS0191: A readonly field cannot be assigned to (except in a constructor or init-only setter of the type in which the field is defined or a variable initializer) // return b with { X = 42 }; // 3 Diagnostic(ErrorCode.ERR_AssgReadonly, "X").WithLocation(13, 25), // (18,25): error CS0191: A readonly field cannot be assigned to (except in a constructor or init-only setter of the type in which the field is defined or a variable initializer) // _ = this with { X = 42 }; // 4 Diagnostic(ErrorCode.ERR_AssgReadonly, "X").WithLocation(18, 25) ); } [Fact] public void WithExprOnStruct_OnEnum() { var src = @" public enum E { } class C { static E M(E e) { return e with { }; } }"; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); } [Fact] public void WithExprOnStruct_OnPointer() { var src = @" unsafe class C { static int* M(int* i) { return i with { }; } }"; var comp = CreateCompilation(src, options: TestOptions.UnsafeReleaseDll, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics( // (6,16): error CS8858: The receiver type 'int*' is not a valid record type and is not a struct type. // return i with { }; Diagnostic(ErrorCode.ERR_CannotClone, "i").WithArguments("int*").WithLocation(6, 16) ); } [Fact] public void WithExprOnStruct_OnInterface() { var src = @" public interface I { int X { get; set; } } class C { static I M(I i) { return i with { X = 42 }; } }"; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (10,16): error CS8858: The receiver type 'I' is not a valid record type and is not a value type. // return i with { X = 42 }; Diagnostic(ErrorCode.ERR_CannotClone, "i").WithArguments("I").WithLocation(10, 16) ); } [Fact] public void WithExprOnStruct_OnRefStruct() { // Similar to test RefLikeObjInitializers but with `with` expressions var text = @" using System; class Program { static S2 Test1() { S1 outer = default; S1 inner = stackalloc int[1]; // error return new S2() with { Field1 = outer, Field2 = inner }; } static S2 Test2() { S1 outer = default; S1 inner = stackalloc int[1]; S2 result; // error result = new S2() with { Field1 = inner, Field2 = outer }; return result; } static S2 Test3() { S1 outer = default; S1 inner = stackalloc int[1]; return new S2() with { Field1 = outer, Field2 = outer }; } public ref struct S1 { public static implicit operator S1(Span<int> o) => default; } public ref struct S2 { public S1 Field1; public S1 Field2; } } "; CreateCompilationWithMscorlibAndSpan(text, parseOptions: TestOptions.RegularPreview).VerifyDiagnostics( // (12,48): error CS8352: Cannot use local 'inner' in this context because it may expose referenced variables outside of their declaration scope // return new S2() with { Field1 = outer, Field2 = inner }; Diagnostic(ErrorCode.ERR_EscapeLocal, "Field2 = inner").WithArguments("inner").WithLocation(12, 48), // (23,34): error CS8352: Cannot use local 'inner' in this context because it may expose referenced variables outside of their declaration scope // result = new S2() with { Field1 = inner, Field2 = outer }; Diagnostic(ErrorCode.ERR_EscapeLocal, "Field1 = inner").WithArguments("inner").WithLocation(23, 34) ); } [Fact] public void WithExprOnStruct_OnRefStruct_ReceiverMayWrap() { // Similar to test LocalWithNoInitializerEscape but wrapping method is used as receiver for `with` expression var text = @" using System; class Program { static void Main() { S1 sp; Span<int> local = stackalloc int[1]; sp = MayWrap(ref local) with { }; // 1, 2 } static S1 MayWrap(ref Span<int> arg) { return default; } ref struct S1 { public ref int this[int i] => throw null; } } "; CreateCompilationWithMscorlibAndSpan(text, parseOptions: TestOptions.RegularPreview).VerifyDiagnostics( // (9,26): error CS8352: Cannot use local 'local' in this context because it may expose referenced variables outside of their declaration scope // sp = MayWrap(ref local) with { }; // 1, 2 Diagnostic(ErrorCode.ERR_EscapeLocal, "local").WithArguments("local").WithLocation(9, 26), // (9,14): error CS8347: Cannot use a result of 'Program.MayWrap(ref Span<int>)' in this context because it may expose variables referenced by parameter 'arg' outside of their declaration scope // sp = MayWrap(ref local) with { }; // 1, 2 Diagnostic(ErrorCode.ERR_EscapeCall, "MayWrap(ref local)").WithArguments("Program.MayWrap(ref System.Span<int>)", "arg").WithLocation(9, 14) ); } [Fact] public void WithExprOnStruct_OnRefStruct_ReceiverMayWrap_02() { var text = @" using System; class Program { static void Main() { Span<int> local = stackalloc int[1]; S1 sp = MayWrap(ref local) with { }; } static S1 MayWrap(ref Span<int> arg) { return default; } ref struct S1 { public ref int this[int i] => throw null; } } "; CreateCompilationWithMscorlibAndSpan(text, parseOptions: TestOptions.RegularPreview).VerifyDiagnostics(); } [Fact] public void WithExpr_NullableAnalysis_01() { var src = @" #nullable enable record struct B(int X) { static void M(B b) { string? s = null; _ = b with { X = M(out s) }; s.ToString(); } static int M(out string s) { s = ""a""; return 42; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); } [Fact] public void WithExpr_NullableAnalysis_02() { var src = @" #nullable enable record struct B(string X) { static void M(B b, string? s) { b.X.ToString(); _ = b with { X = s }; // 1 b.X.ToString(); // 2 } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (8,26): warning CS8601: Possible null reference assignment. // _ = b with { X = s }; // 1 Diagnostic(ErrorCode.WRN_NullReferenceAssignment, "s").WithLocation(8, 26)); } [Fact] public void WithExpr_NullableAnalysis_03() { var src = @" #nullable enable record struct B(string? X) { static void M1(B b, string s, bool flag) { if (flag) { b.X.ToString(); } // 1 _ = b with { X = s }; if (flag) { b.X.ToString(); } // 2 } static void M2(B b, string s, bool flag) { if (flag) { b.X.ToString(); } // 3 b = b with { X = s }; if (flag) { b.X.ToString(); } } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (7,21): warning CS8602: Dereference of a possibly null reference. // if (flag) { b.X.ToString(); } // 1 Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.X").WithLocation(7, 21), // (9,21): warning CS8602: Dereference of a possibly null reference. // if (flag) { b.X.ToString(); } // 2 Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.X").WithLocation(9, 21), // (14,21): warning CS8602: Dereference of a possibly null reference. // if (flag) { b.X.ToString(); } // 3 Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.X").WithLocation(14, 21)); } [Fact, WorkItem(44763, "https://github.com/dotnet/roslyn/issues/44763")] public void WithExpr_NullableAnalysis_05() { var src = @" #nullable enable record struct B(string? X, string? Y) { static void M1(bool flag) { B b = new B(""hello"", null); if (flag) { b.X.ToString(); // shouldn't warn b.Y.ToString(); // 1 } b = b with { Y = ""world"" }; b.X.ToString(); // shouldn't warn b.Y.ToString(); } }"; // records should propagate the nullability of the // constructor arguments to the corresponding properties. // https://github.com/dotnet/roslyn/issues/44763 var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (10,13): warning CS8602: Dereference of a possibly null reference. // b.X.ToString(); // shouldn't warn Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.X").WithLocation(10, 13), // (11,13): warning CS8602: Dereference of a possibly null reference. // b.Y.ToString(); // 1 Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.Y").WithLocation(11, 13), // (15,9): warning CS8602: Dereference of a possibly null reference. // b.X.ToString(); // shouldn't warn Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.X").WithLocation(15, 9)); } [Fact] public void WithExpr_NullableAnalysis_06() { var src = @" #nullable enable struct B { public string? X { get; init; } public string? Y { get; init; } static void M1(bool flag) { B b = new B { X = ""hello"", Y = null }; if (flag) { b.X.ToString(); b.Y.ToString(); // 1 } b = b with { Y = ""world"" }; b.X.ToString(); b.Y.ToString(); } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (14,13): warning CS8602: Dereference of a possibly null reference. // b.Y.ToString(); // 1 Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.Y").WithLocation(14, 13) ); } [Fact] public void WithExprAssignToRef1() { var src = @" using System; record struct C(int Y) { private readonly int[] _a = new[] { 0 }; public ref int X => ref _a[0]; public static void Main() { var c = new C(0) { X = 5 }; Console.WriteLine(c.X); c = c with { X = 1 }; Console.WriteLine(c.X); } }"; var verifier = CompileAndVerify(src, expectedOutput: @" 5 1").VerifyDiagnostics(); verifier.VerifyIL("C.Main", @" { // Code size 59 (0x3b) .maxstack 2 .locals init (C V_0, //c C V_1) IL_0000: ldloca.s V_1 IL_0002: ldc.i4.0 IL_0003: call ""C..ctor(int)"" IL_0008: ldloca.s V_1 IL_000a: call ""ref int C.X.get"" IL_000f: ldc.i4.5 IL_0010: stind.i4 IL_0011: ldloc.1 IL_0012: stloc.0 IL_0013: ldloca.s V_0 IL_0015: call ""ref int C.X.get"" IL_001a: ldind.i4 IL_001b: call ""void System.Console.WriteLine(int)"" IL_0020: ldloc.0 IL_0021: stloc.1 IL_0022: ldloca.s V_1 IL_0024: call ""ref int C.X.get"" IL_0029: ldc.i4.1 IL_002a: stind.i4 IL_002b: ldloc.1 IL_002c: stloc.0 IL_002d: ldloca.s V_0 IL_002f: call ""ref int C.X.get"" IL_0034: ldind.i4 IL_0035: call ""void System.Console.WriteLine(int)"" IL_003a: ret }"); } [Fact] public void WithExpressionSameLHS() { var comp = CreateCompilation(@" record struct C(int X) { public static void Main() { var c = new C(0); c = c with { X = 1, X = 2}; } }"); comp.VerifyDiagnostics( // (7,29): error CS1912: Duplicate initialization of member 'X' // c = c with { X = 1, X = 2}; Diagnostic(ErrorCode.ERR_MemberAlreadyInitialized, "X").WithArguments("X").WithLocation(7, 29) ); } [Fact] public void WithExpr_AnonymousType_ChangeAllProperties() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var a = new { A = 10, B = 20 }; var b = Identity(a) with { A = Identity(30), B = Identity(40) }; System.Console.Write(b); }/*</bind>*/ static T Identity<T>(T t) { System.Console.Write($""Identity({t}) ""); return t; } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.Regular9); comp.VerifyEmitDiagnostics( // (9,17): error CS8773: Feature 'with on anonymous types' is not available in C# 9.0. Please use language version 10.0 or greater. // var b = Identity(a) with { A = Identity(30), B = Identity(40) }; Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "Identity(a) with { A = Identity(30), B = Identity(40) }").WithArguments("with on anonymous types", "10.0").WithLocation(9, 17) ); comp = CreateCompilation(src, parseOptions: TestOptions.Regular10); comp.VerifyEmitDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "Identity({ A = 10, B = 20 }) Identity(30) Identity(40) { A = 30, B = 40 }"); verifier.VerifyIL("C.M", @" { // Code size 42 (0x2a) .maxstack 2 .locals init (int V_0) IL_0000: ldc.i4.s 10 IL_0002: ldc.i4.s 20 IL_0004: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0009: call ""<anonymous type: int A, int B> C.Identity<<anonymous type: int A, int B>>(<anonymous type: int A, int B>)"" IL_000e: pop IL_000f: ldc.i4.s 30 IL_0011: call ""int C.Identity<int>(int)"" IL_0016: ldc.i4.s 40 IL_0018: call ""int C.Identity<int>(int)"" IL_001d: stloc.0 IL_001e: ldloc.0 IL_001f: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0024: call ""void System.Console.Write(object)"" IL_0029: ret } "); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 B> a] [<anonymous type: System.Int32 A, System.Int32 B> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'new { A = 10, B = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20) (Syntax: 'B = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} } .locals {R3} { CaptureIds: [2] [3] Block[B2] - Block Predecessors: [B1] Statements (4) IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 B> C.Identity<<anonymous type: System.Int32 A, System.Int32 B>>(<anonymous type: System.Int32 A, System.Int32 B> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(30)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(30)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '30') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(40)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(40)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '40') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 40) (Syntax: '40') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = Identit ... ntity(40) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = Identit ... ntity(40) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a) ... ntity(40) }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B3] Leaving: {R3} } Block[B3] - Block Predecessors: [B2] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B4] Leaving: {R1} } Block[B4] - Exit Predecessors: [B3] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ChangeAllProperties_ReverseOrder() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var a = new { A = 10, B = 20 }; var b = Identity(a) with { B = Identity(40), A = Identity(30) }; System.Console.Write(b); }/*</bind>*/ static T Identity<T>(T t) { System.Console.Write($""Identity({t}) ""); return t; } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "Identity({ A = 10, B = 20 }) Identity(40) Identity(30) { A = 30, B = 40 }"); verifier.VerifyIL("C.M", @" { // Code size 42 (0x2a) .maxstack 2 .locals init (int V_0) IL_0000: ldc.i4.s 10 IL_0002: ldc.i4.s 20 IL_0004: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0009: call ""<anonymous type: int A, int B> C.Identity<<anonymous type: int A, int B>>(<anonymous type: int A, int B>)"" IL_000e: pop IL_000f: ldc.i4.s 40 IL_0011: call ""int C.Identity<int>(int)"" IL_0016: stloc.0 IL_0017: ldc.i4.s 30 IL_0019: call ""int C.Identity<int>(int)"" IL_001e: ldloc.0 IL_001f: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0024: call ""void System.Console.Write(object)"" IL_0029: ret } "); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 B> a] [<anonymous type: System.Int32 A, System.Int32 B> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'new { A = 10, B = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20) (Syntax: 'B = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} } .locals {R3} { CaptureIds: [2] [3] Block[B2] - Block Predecessors: [B1] Statements (4) IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 B> C.Identity<<anonymous type: System.Int32 A, System.Int32 B>>(<anonymous type: System.Int32 A, System.Int32 B> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(40)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(40)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '40') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 40) (Syntax: '40') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(30)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(30)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '30') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = Identit ... ntity(30) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = Identit ... ntity(30) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a) ... ntity(30) }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B3] Leaving: {R3} } Block[B3] - Block Predecessors: [B2] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B4] Leaving: {R1} } Block[B4] - Exit Predecessors: [B3] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ChangeNoProperty() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var a = new { A = 10, B = 20 }; var b = M2(a) with { }; System.Console.Write(b); }/*</bind>*/ static T M2<T>(T t) { System.Console.Write(""M2 ""); return t; } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "M2 { A = 10, B = 20 }"); verifier.VerifyIL("C.M", @" { // Code size 38 (0x26) .maxstack 2 .locals init (<>f__AnonymousType0<int, int> V_0) IL_0000: ldc.i4.s 10 IL_0002: ldc.i4.s 20 IL_0004: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0009: call ""<anonymous type: int A, int B> C.M2<<anonymous type: int A, int B>>(<anonymous type: int A, int B>)"" IL_000e: stloc.0 IL_000f: ldloc.0 IL_0010: callvirt ""int <>f__AnonymousType0<int, int>.A.get"" IL_0015: ldloc.0 IL_0016: callvirt ""int <>f__AnonymousType0<int, int>.B.get"" IL_001b: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0020: call ""void System.Console.Write(object)"" IL_0025: ret } "); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 B> a] [<anonymous type: System.Int32 A, System.Int32 B> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'new { A = 10, B = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20) (Syntax: 'B = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [3] [4] .locals {R4} { CaptureIds: [2] Block[B2] - Block Predecessors: [B1] Statements (3) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'M2(a)') Value: IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 B> C.M2<<anonymous type: System.Int32 A, System.Int32 B>>(<anonymous type: System.Int32 A, System.Int32 B> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'M2(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'M2(a) with { }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'M2(a) with { }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'M2(a)') IFlowCaptureOperation: 4 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'M2(a) with { }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'M2(a) with { }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'M2(a)') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = M2(a) with { }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = M2(a) with { }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'M2(a) with { }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'M2(a) with { }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'M2(a) with { }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'M2(a) with { }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'M2(a)') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'M2(a) with { }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'M2(a) with { }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'M2(a) with { }') Right: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'M2(a)') Next (Regular) Block[B4] Leaving: {R3} } Block[B4] - Block Predecessors: [B3] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ChangeOneProperty() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var a = new { A = 10, B = 20 }; var b = a with { B = Identity(30) }; System.Console.Write(b); }/*</bind>*/ static T Identity<T>(T t) => t; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "{ A = 10, B = 30 }"); verifier.VerifyIL("C.M", @" { // Code size 34 (0x22) .maxstack 2 .locals init (int V_0) IL_0000: ldc.i4.s 10 IL_0002: ldc.i4.s 20 IL_0004: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0009: ldc.i4.s 30 IL_000b: call ""int C.Identity<int>(int)"" IL_0010: stloc.0 IL_0011: callvirt ""int <>f__AnonymousType0<int, int>.A.get"" IL_0016: ldloc.0 IL_0017: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_001c: call ""void System.Console.Write(object)"" IL_0021: ret } "); var tree = comp.SyntaxTrees.Single(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var withExpr = tree.GetRoot().DescendantNodes().OfType<WithExpressionSyntax>().Single(); var operation = model.GetOperation(withExpr); VerifyOperationTree(comp, operation, @" IWithOperation (OperationKind.With, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a with { B ... ntity(30) }') Operand: ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') CloneMethod: null Initializer: IObjectOrCollectionInitializerOperation (OperationKind.ObjectOrCollectionInitializer, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: '{ B = Identity(30) }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'B = Identity(30)') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'B') Right: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(30)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '30') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) "); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 B> a] [<anonymous type: System.Int32 A, System.Int32 B> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'new { A = 10, B = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20) (Syntax: 'B = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [3] [4] .locals {R4} { CaptureIds: [2] Block[B2] - Block Predecessors: [B1] Statements (3) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(30)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(30)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '30') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 4 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = a with ... ntity(30) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = a with ... ntity(30) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a with { B ... ntity(30) }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Right: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R3} } Block[B4] - Block Predecessors: [B3] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ChangeOneProperty_WithMethodCallForTarget() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var a = new { A = 10, B = 20 }; var b = Identity(a) with { B = 30 }; System.Console.Write(b); }/*</bind>*/ static T Identity<T>(T t) => t; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "{ A = 10, B = 30 }"); verifier.VerifyIL("C.M", @" { // Code size 34 (0x22) .maxstack 2 .locals init (int V_0) IL_0000: ldc.i4.s 10 IL_0002: ldc.i4.s 20 IL_0004: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0009: call ""<anonymous type: int A, int B> C.Identity<<anonymous type: int A, int B>>(<anonymous type: int A, int B>)"" IL_000e: ldc.i4.s 30 IL_0010: stloc.0 IL_0011: callvirt ""int <>f__AnonymousType0<int, int>.A.get"" IL_0016: ldloc.0 IL_0017: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_001c: call ""void System.Console.Write(object)"" IL_0021: ret } "); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 B> a] [<anonymous type: System.Int32 A, System.Int32 B> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'new { A = 10, B = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20) (Syntax: 'B = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [3] [4] .locals {R4} { CaptureIds: [2] Block[B2] - Block Predecessors: [B1] Statements (3) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(a)') Value: IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 B> C.Identity<<anonymous type: System.Int32 A, System.Int32 B>>(<anonymous type: System.Int32 A, System.Int32 B> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '30') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') IFlowCaptureOperation: 4 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = Identit ... { B = 30 }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = Identit ... { B = 30 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a) ... { B = 30 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Right: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B4] Leaving: {R3} } Block[B4] - Block Predecessors: [B3] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ChangeOneProperty_WithCoalescingExpressionForTarget() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var a = new { A = 10, B = 20 }; var b = (Identity(a) ?? Identity2(a)) with { B = 30 }; System.Console.Write(b); }/*</bind>*/ static T Identity<T>(T t) => t; static T Identity2<T>(T t) => t; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "{ A = 10, B = 30 }"); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 B> a] [<anonymous type: System.Int32 A, System.Int32 B> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'new { A = 10, B = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20) (Syntax: 'B = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} {R5} } .locals {R3} { CaptureIds: [4] [5] .locals {R4} { CaptureIds: [2] .locals {R5} { CaptureIds: [3] Block[B2] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(a)') Value: IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 B> C.Identity<<anonymous type: System.Int32 A, System.Int32 B>>(<anonymous type: System.Int32 A, System.Int32 B> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Jump if True (Regular) to Block[B4] IIsNullOperation (OperationKind.IsNull, Type: System.Boolean, IsImplicit) (Syntax: 'Identity(a)') Operand: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') Leaving: {R5} Next (Regular) Block[B3] Block[B3] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(a)') Value: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B5] Leaving: {R5} } Block[B4] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity2(a)') Value: IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 B> C.Identity2<<anonymous type: System.Int32 A, System.Int32 B>>(<anonymous type: System.Int32 A, System.Int32 B> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity2(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Block[B5] - Block Predecessors: [B3] [B4] Statements (2) IFlowCaptureOperation: 4 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '30') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') IFlowCaptureOperation: 5 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... dentity2(a)') Next (Regular) Block[B6] Leaving: {R4} } Block[B6] - Block Predecessors: [B5] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = (Identi ... { B = 30 }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = (Identi ... { B = 30 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: '(Identity(a ... { B = 30 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Right: IFlowCaptureReferenceOperation: 5 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... dentity2(a)') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Right: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... dentity2(a)') Next (Regular) Block[B7] Leaving: {R3} } Block[B7] - Block Predecessors: [B6] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B8] Leaving: {R1} } Block[B8] - Exit Predecessors: [B7] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ChangeOneProperty_WithCoalescingExpressionForValue() { var src = @" C.M(""hello"", ""world""); public class C { public static void M(string hello, string world) /*<bind>*/{ var x = new { A = hello, B = string.Empty }; var y = x with { B = Identity(null) ?? Identity2(world) }; System.Console.Write(y); }/*</bind>*/ static string Identity(string t) => t; static string Identity2(string t) => t; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "{ A = hello, B = world }"); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.String A, System.String B> x] [<anonymous type: System.String A, System.String B> y] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'hello') Value: IParameterReferenceOperation: hello (OperationKind.ParameterReference, Type: System.String) (Syntax: 'hello') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'string.Empty') Value: IFieldReferenceOperation: System.String System.String.Empty (Static) (OperationKind.FieldReference, Type: System.String) (Syntax: 'string.Empty') Instance Receiver: null ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x = new { A ... ing.Empty }') Left: ILocalReferenceOperation: x (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x = new { A ... ing.Empty }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.String A, System.String B>) (Syntax: 'new { A = h ... ing.Empty }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.String) (Syntax: 'A = hello') Left: IPropertyReferenceOperation: System.String <anonymous type: System.String A, System.String B>.A { get; } (OperationKind.PropertyReference, Type: System.String) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'new { A = h ... ing.Empty }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'hello') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.String) (Syntax: 'B = string.Empty') Left: IPropertyReferenceOperation: System.String <anonymous type: System.String A, System.String B>.B { get; } (OperationKind.PropertyReference, Type: System.String) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'new { A = h ... ing.Empty }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'string.Empty') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [3] [5] .locals {R4} { CaptureIds: [2] Block[B2] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'x') Value: ILocalReferenceOperation: x (OperationKind.LocalReference, Type: <anonymous type: System.String A, System.String B>) (Syntax: 'x') Next (Regular) Block[B3] Entering: {R5} .locals {R5} { CaptureIds: [4] Block[B3] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 4 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(null)') Value: IInvocationOperation (System.String C.Identity(System.String t)) (OperationKind.Invocation, Type: System.String) (Syntax: 'Identity(null)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'null') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.String, Constant: null, IsImplicit) (Syntax: 'null') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILiteralOperation (OperationKind.Literal, Type: null, Constant: null) (Syntax: 'null') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Jump if True (Regular) to Block[B5] IIsNullOperation (OperationKind.IsNull, Type: System.Boolean, IsImplicit) (Syntax: 'Identity(null)') Operand: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity(null)') Leaving: {R5} Next (Regular) Block[B4] Block[B4] - Block Predecessors: [B3] Statements (1) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(null)') Value: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity(null)') Next (Regular) Block[B6] Leaving: {R5} } Block[B5] - Block Predecessors: [B3] Statements (1) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity2(world)') Value: IInvocationOperation (System.String C.Identity2(System.String t)) (OperationKind.Invocation, Type: System.String) (Syntax: 'Identity2(world)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'world') IParameterReferenceOperation: world (OperationKind.ParameterReference, Type: System.String) (Syntax: 'world') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B6] Block[B6] - Block Predecessors: [B4] [B5] Statements (1) IFlowCaptureOperation: 5 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Value: IPropertyReferenceOperation: System.String <anonymous type: System.String A, System.String B>.A { get; } (OperationKind.PropertyReference, Type: System.String, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x') Next (Regular) Block[B7] Leaving: {R4} } Block[B7] - Block Predecessors: [B6] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'y = x with ... y2(world) }') Left: ILocalReferenceOperation: y (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'y = x with ... y2(world) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.String A, System.String B>) (Syntax: 'x with { B ... y2(world) }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.String, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Left: IPropertyReferenceOperation: System.String <anonymous type: System.String A, System.String B>.A { get; } (OperationKind.PropertyReference, Type: System.String, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Right: IFlowCaptureReferenceOperation: 5 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.String, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Left: IPropertyReferenceOperation: System.String <anonymous type: System.String A, System.String B>.B { get; } (OperationKind.PropertyReference, Type: System.String, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x') Next (Regular) Block[B8] Leaving: {R3} } Block[B8] - Block Predecessors: [B7] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(y);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(y)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'y') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'y') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: y (OperationKind.LocalReference, Type: <anonymous type: System.String A, System.String B>) (Syntax: 'y') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B9] Leaving: {R1} } Block[B9] - Exit Predecessors: [B8] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ErrorMember() { var src = @" public class C { public static void M() /*<bind>*/{ var a = new { A = 10 }; var b = a with { Error = Identity(20) }; }/*</bind>*/ static T Identity<T>(T t) => t; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); var expectedDiagnostics = new[] { // (7,26): error CS0117: '<anonymous type: int A>' does not contain a definition for 'Error' // var b = a with { Error = Identity(20) }; Diagnostic(ErrorCode.ERR_NoSuchMember, "Error").WithArguments("<anonymous type: int A>", "Error").WithLocation(7, 26) }; comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A> a] [<anonymous type: System.Int32 A> b] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>) (Syntax: 'new { A = 10 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'new { A = 10 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [2] .locals {R4} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (3) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'a') IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(20)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '20') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsInvalid, IsImplicit) (Syntax: 'a with { Er ... ntity(20) }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { Er ... ntity(20) }') Instance Receiver: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with ... ntity(20) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with ... ntity(20) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>, IsInvalid) (Syntax: 'a with { Er ... ntity(20) }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { Er ... ntity(20) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { Er ... ntity(20) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'a with { Er ... ntity(20) }') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R3} {R1} } } Block[B4] - Exit Predecessors: [B3] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ToString() { var src = @" public class C { public static void M() /*<bind>*/{ var a = new { A = 10 }; var b = a with { ToString = Identity(20) }; }/*</bind>*/ static T Identity<T>(T t) => t; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); var expectedDiagnostics = new[] { // (7,26): error CS1913: Member 'ToString' cannot be initialized. It is not a field or property. // var b = a with { ToString = Identity(20) }; Diagnostic(ErrorCode.ERR_MemberCannotBeInitialized, "ToString").WithArguments("ToString").WithLocation(7, 26) }; comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A> a] [<anonymous type: System.Int32 A> b] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>) (Syntax: 'new { A = 10 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'new { A = 10 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [2] .locals {R4} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (3) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'a') IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(20)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '20') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsInvalid, IsImplicit) (Syntax: 'a with { To ... ntity(20) }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { To ... ntity(20) }') Instance Receiver: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with ... ntity(20) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with ... ntity(20) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>, IsInvalid) (Syntax: 'a with { To ... ntity(20) }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { To ... ntity(20) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { To ... ntity(20) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'a with { To ... ntity(20) }') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R3} {R1} } } Block[B4] - Exit Predecessors: [B3] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_NestedInitializer() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var nested = new { A = 10 }; var a = new { Nested = nested }; var b = a with { Nested = { A = 20 } }; System.Console.Write(b); }/*</bind>*/ }"; var expectedDiagnostics = new[] { // (10,35): error CS1525: Invalid expression term '{' // var b = a with { Nested = { A = 20 } }; Diagnostic(ErrorCode.ERR_InvalidExprTerm, "{").WithArguments("{").WithLocation(10, 35), // (10,35): error CS1513: } expected // var b = a with { Nested = { A = 20 } }; Diagnostic(ErrorCode.ERR_RbraceExpected, "{").WithLocation(10, 35), // (10,35): error CS1002: ; expected // var b = a with { Nested = { A = 20 } }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "{").WithLocation(10, 35), // (10,37): error CS0103: The name 'A' does not exist in the current context // var b = a with { Nested = { A = 20 } }; Diagnostic(ErrorCode.ERR_NameNotInContext, "A").WithArguments("A").WithLocation(10, 37), // (10,44): error CS1002: ; expected // var b = a with { Nested = { A = 20 } }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "}").WithLocation(10, 44), // (10,47): error CS1597: Semicolon after method or accessor block is not valid // var b = a with { Nested = { A = 20 } }; Diagnostic(ErrorCode.ERR_UnexpectedSemicolon, ";").WithLocation(10, 47), // (11,29): error CS1519: Invalid token '(' in class, record, struct, or interface member declaration // System.Console.Write(b); Diagnostic(ErrorCode.ERR_InvalidMemberDecl, "(").WithArguments("(").WithLocation(11, 29), // (11,31): error CS8124: Tuple must contain at least two elements. // System.Console.Write(b); Diagnostic(ErrorCode.ERR_TupleTooFewElements, ")").WithLocation(11, 31), // (11,32): error CS1519: Invalid token ';' in class, record, struct, or interface member declaration // System.Console.Write(b); Diagnostic(ErrorCode.ERR_InvalidMemberDecl, ";").WithArguments(";").WithLocation(11, 32), // (13,1): error CS1022: Type or namespace definition, or end-of-file expected // } Diagnostic(ErrorCode.ERR_EOFExpected, "}").WithLocation(13, 1) }; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A> nested] [<anonymous type: <anonymous type: System.Int32 A> Nested> a] [<anonymous type: <anonymous type: System.Int32 A> Nested> b] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'nested = new { A = 10 }') Left: ILocalReferenceOperation: nested (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'nested = new { A = 10 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>) (Syntax: 'new { A = 10 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'new { A = 10 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} } .locals {R3} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (2) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'nested') Value: ILocalReferenceOperation: nested (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'nested') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsImplicit) (Syntax: 'a = new { N ... = nested }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsImplicit) (Syntax: 'a = new { N ... = nested }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>) (Syntax: 'new { Nested = nested }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>) (Syntax: 'Nested = nested') Left: IPropertyReferenceOperation: <anonymous type: System.Int32 A> <anonymous type: <anonymous type: System.Int32 A> Nested>.Nested { get; } (OperationKind.PropertyReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'Nested') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsImplicit) (Syntax: 'new { Nested = nested }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'nested') Next (Regular) Block[B3] Leaving: {R3} Entering: {R4} } .locals {R4} { CaptureIds: [2] Block[B3] - Block Predecessors: [B2] Statements (3) ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>) (Syntax: 'a') IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsInvalid, IsImplicit) (Syntax: '') Value: IInvalidOperation (OperationKind.Invalid, Type: null, IsInvalid) (Syntax: '') Children(0) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsInvalid, IsImplicit) (Syntax: 'b = a with { Nested = ') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsInvalid, IsImplicit) (Syntax: 'b = a with { Nested = ') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsInvalid) (Syntax: 'a with { Nested = ') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'a with { Nested = ') Left: IPropertyReferenceOperation: <anonymous type: System.Int32 A> <anonymous type: <anonymous type: System.Int32 A> Nested>.Nested { get; } (OperationKind.PropertyReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'a with { Nested = ') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsInvalid, IsImplicit) (Syntax: 'a with { Nested = ') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R4} } Block[B4] - Block Predecessors: [B3] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null, IsInvalid) (Syntax: 'A = 20 ') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: ?, IsInvalid) (Syntax: 'A = 20') Left: IInvalidOperation (OperationKind.Invalid, Type: ?, IsInvalid) (Syntax: 'A') Children(0) Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_NonAssignmentExpression() { var src = @" public class C { public static void M(int i, int j) /*<bind>*/{ var a = new { A = 10 }; var b = a with { i, j++, M2(), A = 20 }; }/*</bind>*/ static int M2() => 0; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); var expectedDiagnostics = new[] { // (7,26): error CS0747: Invalid initializer member declarator // var b = a with { i, j++, M2(), A = 20 }; Diagnostic(ErrorCode.ERR_InvalidInitializerElementInitializer, "i").WithLocation(7, 26), // (7,29): error CS0747: Invalid initializer member declarator // var b = a with { i, j++, M2(), A = 20 }; Diagnostic(ErrorCode.ERR_InvalidInitializerElementInitializer, "j++").WithLocation(7, 29), // (7,34): error CS0747: Invalid initializer member declarator // var b = a with { i, j++, M2(), A = 20 }; Diagnostic(ErrorCode.ERR_InvalidInitializerElementInitializer, "M2()").WithLocation(7, 34) }; comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A> a] [<anonymous type: System.Int32 A> b] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>) (Syntax: 'new { A = 10 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'new { A = 10 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} } .locals {R3} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (6) ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'a') IInvalidOperation (OperationKind.Invalid, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'i') Children(1): IParameterReferenceOperation: i (OperationKind.ParameterReference, Type: System.Int32, IsInvalid) (Syntax: 'i') IInvalidOperation (OperationKind.Invalid, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'j++') Children(1): IIncrementOrDecrementOperation (Postfix) (OperationKind.Increment, Type: System.Int32, IsInvalid) (Syntax: 'j++') Target: IParameterReferenceOperation: j (OperationKind.ParameterReference, Type: System.Int32, IsInvalid) (Syntax: 'j') IInvalidOperation (OperationKind.Invalid, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'M2()') Children(1): IInvocationOperation (System.Int32 C.M2()) (OperationKind.Invocation, Type: System.Int32, IsInvalid) (Syntax: 'M2()') Instance Receiver: null Arguments(0) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with ... ), A = 20 }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with ... ), A = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>, IsInvalid) (Syntax: 'a with { i, ... ), A = 20 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { i, ... ), A = 20 }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { i, ... ), A = 20 }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'a with { i, ... ), A = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B3] Leaving: {R3} {R1} } } Block[B3] - Exit Predecessors: [B2] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_IndexerAccess() { var src = @" public class C { public static void M() /*<bind>*/{ var a = new { A = 10 }; var b = a with { [0] = 20 }; }/*</bind>*/ }"; var expectedDiagnostics = new[] { // (7,26): error CS1513: } expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_RbraceExpected, "[").WithLocation(7, 26), // (7,26): error CS1002: ; expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "[").WithLocation(7, 26), // (7,26): error CS7014: Attributes are not valid in this context. // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_AttributesNotAllowed, "[").WithLocation(7, 26), // (7,27): error CS1001: Identifier expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_IdentifierExpected, "0").WithLocation(7, 27), // (7,27): error CS1003: Syntax error, ']' expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_SyntaxError, "0").WithArguments("]", "").WithLocation(7, 27), // (7,28): error CS1002: ; expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "]").WithLocation(7, 28), // (7,28): error CS1513: } expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_RbraceExpected, "]").WithLocation(7, 28), // (7,30): error CS1525: Invalid expression term '=' // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_InvalidExprTerm, "=").WithArguments("=").WithLocation(7, 30), // (7,35): error CS1002: ; expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "}").WithLocation(7, 35), // (7,36): error CS1597: Semicolon after method or accessor block is not valid // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_UnexpectedSemicolon, ";").WithLocation(7, 36), // (9,1): error CS1022: Type or namespace definition, or end-of-file expected // } Diagnostic(ErrorCode.ERR_EOFExpected, "}").WithLocation(9, 1) }; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A> a] [<anonymous type: System.Int32 A> b] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>) (Syntax: 'new { A = 10 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'new { A = 10 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [2] .locals {R4} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (2) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'a') IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsInvalid, IsImplicit) (Syntax: 'a with { ') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { ') Instance Receiver: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with { ') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with { ') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>, IsInvalid) (Syntax: 'a with { ') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { ') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { ') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'a with { ') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R3} } Block[B4] - Block Predecessors: [B3] Statements (2) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null, IsInvalid) (Syntax: '[0') Expression: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 0, IsInvalid) (Syntax: '0') IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null, IsInvalid) (Syntax: '= 20 ') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: ?, IsInvalid) (Syntax: '= 20') Left: IInvalidOperation (OperationKind.Invalid, Type: null, IsInvalid) (Syntax: '') Children(0) Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_CannotSet() { var src = @" public class C { public static void M() { var a = new { A = 10 }; a.A = 20; var b = new { B = a }; b.B.A = 30; } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.Regular9); comp.VerifyEmitDiagnostics( // (7,9): error CS0200: Property or indexer '<anonymous type: int A>.A' cannot be assigned to -- it is read only // a.A = 20; Diagnostic(ErrorCode.ERR_AssgReadonlyProp, "a.A").WithArguments("<anonymous type: int A>.A").WithLocation(7, 9), // (10,9): error CS0200: Property or indexer '<anonymous type: int A>.A' cannot be assigned to -- it is read only // b.B.A = 30; Diagnostic(ErrorCode.ERR_AssgReadonlyProp, "b.B.A").WithArguments("<anonymous type: int A>.A").WithLocation(10, 9) ); } [Fact] public void WithExpr_AnonymousType_DuplicateMemberInDeclaration() { var src = @" public class C { public static void M() /*<bind>*/{ var a = new { A = 10, A = 20 }; var b = Identity(a) with { A = Identity(30) }; System.Console.Write(b); }/*</bind>*/ static T Identity<T>(T t) => t; }"; var expectedDiagnostics = new[] { // (6,31): error CS0833: An anonymous type cannot have multiple properties with the same name // var a = new { A = 10, A = 20 }; Diagnostic(ErrorCode.ERR_AnonymousTypeDuplicatePropertyName, "A = 20").WithLocation(6, 31) }; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 $1> a] [<anonymous type: System.Int32 A, System.Int32 $1> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsInvalid, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20, IsInvalid) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsInvalid, IsImplicit) (Syntax: 'a = new { A ... 0, A = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsInvalid, IsImplicit) (Syntax: 'a = new { A ... 0, A = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsInvalid) (Syntax: 'new { A = 10, A = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 $1>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsInvalid, IsImplicit) (Syntax: 'new { A = 10, A = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20, IsInvalid) (Syntax: 'A = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 $1>.$1 { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsInvalid, IsImplicit) (Syntax: 'new { A = 10, A = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsInvalid, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [3] [4] .locals {R4} { CaptureIds: [2] Block[B2] - Block Predecessors: [B1] Statements (3) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(a)') Value: IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 $1> C.Identity<<anonymous type: System.Int32 A, System.Int32 $1>>(<anonymous type: System.Int32 A, System.Int32 $1> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 $1>) (Syntax: 'Identity(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(30)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(30)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '30') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 4 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 $1>.$1 { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'b = Identit ... ntity(30) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'b = Identit ... ntity(30) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 $1>) (Syntax: 'Identity(a) ... ntity(30) }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 $1>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'Identity(a)') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 $1>.$1 { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Right: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B4] Leaving: {R3} } Block[B4] - Block Predecessors: [B3] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_DuplicateInitialization() { var src = @" public class C { public static void M() /*<bind>*/{ var a = new { A = 10 }; var b = Identity(a) with { A = Identity(30), A = Identity(40) }; }/*</bind>*/ static T Identity<T>(T t) => t; }"; var expectedDiagnostics = new[] { // (7,54): error CS1912: Duplicate initialization of member 'A' // var b = Identity(a) with { A = Identity(30), A = Identity(40) }; Diagnostic(ErrorCode.ERR_MemberAlreadyInitialized, "A").WithArguments("A").WithLocation(7, 54) }; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A> a] [<anonymous type: System.Int32 A> b] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>) (Syntax: 'new { A = 10 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'new { A = 10 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} } .locals {R3} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (4) IInvocationOperation (<anonymous type: System.Int32 A> C.Identity<<anonymous type: System.Int32 A>>(<anonymous type: System.Int32 A> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A>) (Syntax: 'Identity(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(30)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(30)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '30') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(40)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '40') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 40) (Syntax: '40') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = Identit ... ntity(40) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = Identit ... ntity(40) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>, IsInvalid) (Syntax: 'Identity(a) ... ntity(40) }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B3] Leaving: {R3} {R1} } } Block[B3] - Exit Predecessors: [B2] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact, WorkItem(53849, "https://github.com/dotnet/roslyn/issues/53849")] public void WithExpr_AnonymousType_ValueIsLoweredToo() { var src = @" var x = new { Property = 42 }; var adjusted = x with { Property = x.Property + 2 }; System.Console.WriteLine(adjusted); "; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); var verifier = CompileAndVerify(comp, expectedOutput: "{ Property = 44 }"); verifier.VerifyDiagnostics(); } [Fact, WorkItem(53849, "https://github.com/dotnet/roslyn/issues/53849")] public void WithExpr_AnonymousType_ValueIsLoweredToo_NestedWith() { var src = @" var x = new { Property = 42 }; var container = new { Item = x }; var adjusted = container with { Item = x with { Property = x.Property + 2 } }; System.Console.WriteLine(adjusted); "; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); var verifier = CompileAndVerify(comp, expectedOutput: "{ Item = { Property = 44 } }"); verifier.VerifyDiagnostics(); } [Fact] public void AttributesOnPrimaryConstructorParameters_01() { string source = @" [System.AttributeUsage(System.AttributeTargets.Field, AllowMultiple = true) ] public class A : System.Attribute { } [System.AttributeUsage(System.AttributeTargets.Property, AllowMultiple = true) ] public class B : System.Attribute { } [System.AttributeUsage(System.AttributeTargets.Parameter, AllowMultiple = true) ] public class C : System.Attribute { } [System.AttributeUsage(System.AttributeTargets.Parameter, AllowMultiple = true) ] public class D : System.Attribute { } public readonly record struct Test( [field: A] [property: B] [param: C] [D] int P1) { } "; Action<ModuleSymbol> symbolValidator = moduleSymbol => { var @class = moduleSymbol.GlobalNamespace.GetMember<NamedTypeSymbol>("Test"); var prop1 = @class.GetMember<PropertySymbol>("P1"); AssertEx.SetEqual(new[] { "B" }, getAttributeStrings(prop1)); var field1 = @class.GetMember<FieldSymbol>("<P1>k__BackingField"); AssertEx.SetEqual(new[] { "A" }, getAttributeStrings(field1)); var param1 = @class.GetMembers(".ctor").OfType<MethodSymbol>().Where(m => m.Parameters.AsSingleton()?.Name == "P1").Single().Parameters[0]; AssertEx.SetEqual(new[] { "C", "D" }, getAttributeStrings(param1)); }; var comp = CompileAndVerify(new[] { source, IsExternalInitTypeDefinition }, sourceSymbolValidator: symbolValidator, symbolValidator: symbolValidator, parseOptions: TestOptions.RegularPreview, // init-only is unverifiable verify: Verification.Skipped, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); comp.VerifyDiagnostics(); IEnumerable<string> getAttributeStrings(Symbol symbol) { return GetAttributeStrings(symbol.GetAttributes().Where(a => a.AttributeClass!.Name is "A" or "B" or "C" or "D")); } } [Fact] public void FieldAsPositionalMember() { var source = @" var a = new A(42); System.Console.Write(a.X); System.Console.Write("" - ""); a.Deconstruct(out int x); System.Console.Write(x); record struct A(int X) { public int X = X; } "; var comp = CreateCompilation(source, parseOptions: TestOptions.Regular9); comp.VerifyEmitDiagnostics( // (8,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct A(int X) Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(8, 8), // (8,17): error CS8773: Feature 'positional fields in records' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct A(int X) Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "int X").WithArguments("positional fields in records", "10.0").WithLocation(8, 17) ); comp = CreateCompilation(source, parseOptions: TestOptions.Regular10); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42 - 42"); verifier.VerifyIL("A.Deconstruct", @" { // Code size 9 (0x9) .maxstack 2 IL_0000: ldarg.1 IL_0001: ldarg.0 IL_0002: ldfld ""int A.X"" IL_0007: stind.i4 IL_0008: ret } "); } [Fact] public void FieldAsPositionalMember_Readonly() { var source = @" readonly record struct A(int X) { public int X = X; // 1 } readonly record struct B(int X) { public readonly int X = X; } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (4,16): error CS8340: Instance fields of readonly structs must be readonly. // public int X = X; // 1 Diagnostic(ErrorCode.ERR_FieldsInRoStruct, "X").WithLocation(4, 16) ); } [Fact] public void FieldAsPositionalMember_Fixed() { var src = @" unsafe record struct C(int[] P) { public fixed int P[2]; public int[] X = P; }"; var comp = CreateCompilation(src, options: TestOptions.UnsafeReleaseDll, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics( // (2,30): error CS8866: Record member 'C.P' must be a readable instance property or field of type 'int[]' to match positional parameter 'P'. // unsafe record struct C(int[] P) Diagnostic(ErrorCode.ERR_BadRecordMemberForPositionalParameter, "P").WithArguments("C.P", "int[]", "P").WithLocation(2, 30), // (4,22): error CS8908: The type 'int*' may not be used for a field of a record. // public fixed int P[2]; Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "P").WithArguments("int*").WithLocation(4, 22) ); } [Fact] public void FieldAsPositionalMember_WrongType() { var source = @" record struct A(int X) { public string X = null; public int Y = X; } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (2,21): error CS8866: Record member 'A.X' must be a readable instance property or field of type 'int' to match positional parameter 'X'. // record struct A(int X) Diagnostic(ErrorCode.ERR_BadRecordMemberForPositionalParameter, "X").WithArguments("A.X", "int", "X").WithLocation(2, 21) ); } [Fact] public void FieldAsPositionalMember_DuplicateFields() { var source = @" record struct A(int X) { public int X = 0; public int X = 0; public int Y = X; } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (5,16): error CS0102: The type 'A' already contains a definition for 'X' // public int X = 0; Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "X").WithArguments("A", "X").WithLocation(5, 16) ); } [Fact] public void SyntaxFactory_TypeDeclaration() { var expected = @"record struct Point { }"; AssertEx.AssertEqualToleratingWhitespaceDifferences(expected, SyntaxFactory.TypeDeclaration(SyntaxKind.RecordStructDeclaration, "Point").NormalizeWhitespace().ToString()); } [Fact] public void InterfaceWithParameters() { var src = @" public interface I { } record struct R(int X) : I() { } record struct R2(int X) : I(X) { } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (6,27): error CS8861: Unexpected argument list. // record struct R(int X) : I() Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "()").WithLocation(6, 27), // (10,28): error CS8861: Unexpected argument list. // record struct R2(int X) : I(X) Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "(X)").WithLocation(10, 28) ); } [Fact] public void InterfaceWithParameters_NoPrimaryConstructor() { var src = @" public interface I { } record struct R : I() { } record struct R2 : I(0) { } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (6,20): error CS8861: Unexpected argument list. // record struct R : I() Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "()").WithLocation(6, 20), // (10,21): error CS8861: Unexpected argument list. // record struct R2 : I(0) Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "(0)").WithLocation(10, 21) ); } [Fact] public void InterfaceWithParameters_Struct() { var src = @" public interface I { } struct C : I() { } struct C2 : I(0) { } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (6,13): error CS8861: Unexpected argument list. // struct C : I() Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "()").WithLocation(6, 13), // (10,14): error CS8861: Unexpected argument list. // struct C2 : I(0) Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "(0)").WithLocation(10, 14) ); } [Fact] public void BaseArguments_Speculation() { var src = @" record struct R1(int X) : Error1(0, 1) { } record struct R2(int X) : Error2() { } record struct R3(int X) : Error3 { } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,27): error CS0246: The type or namespace name 'Error1' could not be found (are you missing a using directive or an assembly reference?) // record struct R1(int X) : Error1(0, 1) Diagnostic(ErrorCode.ERR_SingleTypeNameNotFound, "Error1").WithArguments("Error1").WithLocation(2, 27), // (2,33): error CS8861: Unexpected argument list. // record struct R1(int X) : Error1(0, 1) Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "(0, 1)").WithLocation(2, 33), // (5,27): error CS0246: The type or namespace name 'Error2' could not be found (are you missing a using directive or an assembly reference?) // record struct R2(int X) : Error2() Diagnostic(ErrorCode.ERR_SingleTypeNameNotFound, "Error2").WithArguments("Error2").WithLocation(5, 27), // (5,33): error CS8861: Unexpected argument list. // record struct R2(int X) : Error2() Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "()").WithLocation(5, 33), // (8,27): error CS0246: The type or namespace name 'Error3' could not be found (are you missing a using directive or an assembly reference?) // record struct R3(int X) : Error3 Diagnostic(ErrorCode.ERR_SingleTypeNameNotFound, "Error3").WithArguments("Error3").WithLocation(8, 27) ); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree); var baseWithargs = tree.GetRoot().DescendantNodes().OfType<PrimaryConstructorBaseTypeSyntax>().First(); Assert.Equal("Error1(0, 1)", baseWithargs.ToString()); var speculativeBase = baseWithargs.WithArgumentList(baseWithargs.ArgumentList.WithArguments(baseWithargs.ArgumentList.Arguments.RemoveAt(1))); Assert.Equal("Error1(0)", speculativeBase.ToString()); Assert.False(model.TryGetSpeculativeSemanticModel(baseWithargs.ArgumentList.OpenParenToken.SpanStart, speculativeBase, out _)); var baseWithoutargs = tree.GetRoot().DescendantNodes().OfType<PrimaryConstructorBaseTypeSyntax>().Skip(1).First(); Assert.Equal("Error2()", baseWithoutargs.ToString()); Assert.False(model.TryGetSpeculativeSemanticModel(baseWithoutargs.ArgumentList.OpenParenToken.SpanStart, speculativeBase, out _)); var baseWithoutParens = tree.GetRoot().DescendantNodes().OfType<SimpleBaseTypeSyntax>().Single(); Assert.Equal("Error3", baseWithoutParens.ToString()); Assert.False(model.TryGetSpeculativeSemanticModel(baseWithoutParens.SpanStart + 2, speculativeBase, out _)); } [Fact, WorkItem(54413, "https://github.com/dotnet/roslyn/issues/54413")] public void ValueTypeCopyConstructorLike_NoThisInitializer() { var src = @" record struct Value(string Text) { private Value(int X) { } // 1 private Value(Value original) { } // 2 } record class Boxed(string Text) { private Boxed(int X) { } // 3 private Boxed(Boxed original) { } // 4 } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,13): error CS8862: A constructor declared in a record with parameter list must have 'this' constructor initializer. // private Value(int X) { } // 1 Diagnostic(ErrorCode.ERR_UnexpectedOrMissingConstructorInitializerInRecord, "Value").WithLocation(4, 13), // (5,13): error CS8862: A constructor declared in a record with parameter list must have 'this' constructor initializer. // private Value(Value original) { } // 2 Diagnostic(ErrorCode.ERR_UnexpectedOrMissingConstructorInitializerInRecord, "Value").WithLocation(5, 13), // (10,13): error CS8862: A constructor declared in a record with parameter list must have 'this' constructor initializer. // private Boxed(int X) { } // 3 Diagnostic(ErrorCode.ERR_UnexpectedOrMissingConstructorInitializerInRecord, "Boxed").WithLocation(10, 13), // (11,13): error CS8878: A copy constructor 'Boxed.Boxed(Boxed)' must be public or protected because the record is not sealed. // private Boxed(Boxed original) { } // 4 Diagnostic(ErrorCode.ERR_CopyConstructorWrongAccessibility, "Boxed").WithArguments("Boxed.Boxed(Boxed)").WithLocation(11, 13) ); } [Fact] public void ValueTypeCopyConstructorLike() { var src = @" System.Console.Write(new Value(new Value(0))); record struct Value(int I) { public Value(Value original) : this(42) { } } "; var comp = CreateCompilation(src); CompileAndVerify(comp, expectedOutput: "Value { I = 42 }"); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using System.Threading; using Microsoft.CodeAnalysis.CSharp.Symbols; using Microsoft.CodeAnalysis.CSharp.Symbols.Metadata.PE; using Microsoft.CodeAnalysis.CSharp.Symbols.Retargeting; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.CSharp.Test.Utilities; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Test.Utilities; using Roslyn.Test.Utilities; using Roslyn.Utilities; using Xunit; namespace Microsoft.CodeAnalysis.CSharp.UnitTests.Semantics { [CompilerTrait(CompilerFeature.RecordStructs)] public class RecordStructTests : CompilingTestBase { private static CSharpCompilation CreateCompilation(CSharpTestSource source) => CSharpTestBase.CreateCompilation(new[] { source, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview); private CompilationVerifier CompileAndVerify( CSharpTestSource src, string? expectedOutput = null, IEnumerable<MetadataReference>? references = null) => base.CompileAndVerify( new[] { src, IsExternalInitTypeDefinition }, expectedOutput: expectedOutput, parseOptions: TestOptions.RegularPreview, references: references, // init-only is unverifiable verify: Verification.Skipped); [Fact] public void StructRecord1() { var src = @" record struct Point(int X, int Y);"; var verifier = CompileAndVerify(src).VerifyDiagnostics(); verifier.VerifyIL("Point.Equals(object)", @" { // Code size 23 (0x17) .maxstack 2 IL_0000: ldarg.1 IL_0001: isinst ""Point"" IL_0006: brfalse.s IL_0015 IL_0008: ldarg.0 IL_0009: ldarg.1 IL_000a: unbox.any ""Point"" IL_000f: call ""readonly bool Point.Equals(Point)"" IL_0014: ret IL_0015: ldc.i4.0 IL_0016: ret }"); verifier.VerifyIL("Point.Equals(Point)", @" { // Code size 49 (0x31) .maxstack 3 IL_0000: call ""System.Collections.Generic.EqualityComparer<int> System.Collections.Generic.EqualityComparer<int>.Default.get"" IL_0005: ldarg.0 IL_0006: ldfld ""int Point.<X>k__BackingField"" IL_000b: ldarg.1 IL_000c: ldfld ""int Point.<X>k__BackingField"" IL_0011: callvirt ""bool System.Collections.Generic.EqualityComparer<int>.Equals(int, int)"" IL_0016: brfalse.s IL_002f IL_0018: call ""System.Collections.Generic.EqualityComparer<int> System.Collections.Generic.EqualityComparer<int>.Default.get"" IL_001d: ldarg.0 IL_001e: ldfld ""int Point.<Y>k__BackingField"" IL_0023: ldarg.1 IL_0024: ldfld ""int Point.<Y>k__BackingField"" IL_0029: callvirt ""bool System.Collections.Generic.EqualityComparer<int>.Equals(int, int)"" IL_002e: ret IL_002f: ldc.i4.0 IL_0030: ret }"); } [Fact] public void StructRecord2() { var src = @" using System; record struct S(int X, int Y) { public static void Main() { var s1 = new S(0, 1); var s2 = new S(0, 1); Console.WriteLine(s1.X); Console.WriteLine(s1.Y); Console.WriteLine(s1.Equals(s2)); Console.WriteLine(s1.Equals(new S(1, 0))); } }"; var verifier = CompileAndVerify(src, expectedOutput: @"0 1 True False").VerifyDiagnostics(); } [Fact] public void StructRecord3() { var src = @" using System; record struct S(int X, int Y) { public bool Equals(S s) => false; public static void Main() { var s1 = new S(0, 1); Console.WriteLine(s1.Equals(s1)); } }"; var verifier = CompileAndVerify(src, expectedOutput: @"False") .VerifyDiagnostics( // (5,17): warning CS8851: 'S' defines 'Equals' but not 'GetHashCode' // public bool Equals(S s) => false; Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("S").WithLocation(5, 17)); verifier.VerifyIL("S.Main", @" { // Code size 23 (0x17) .maxstack 3 .locals init (S V_0) //s1 IL_0000: ldloca.s V_0 IL_0002: ldc.i4.0 IL_0003: ldc.i4.1 IL_0004: call ""S..ctor(int, int)"" IL_0009: ldloca.s V_0 IL_000b: ldloc.0 IL_000c: call ""bool S.Equals(S)"" IL_0011: call ""void System.Console.WriteLine(bool)"" IL_0016: ret }"); } [Fact] public void StructRecord5() { var src = @" using System; record struct S(int X, int Y) { public bool Equals(S s) { Console.Write(""s""); return true; } public static void Main() { var s1 = new S(0, 1); s1.Equals((object)s1); s1.Equals(s1); } }"; CompileAndVerify(src, expectedOutput: @"ss") .VerifyDiagnostics( // (5,17): warning CS8851: 'S' defines 'Equals' but not 'GetHashCode' // public bool Equals(S s) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("S").WithLocation(5, 17)); } [Fact] public void StructRecordDefaultCtor() { const string src = @" public record struct S(int X);"; const string src2 = @" class C { public S M() => new S(); }"; var comp = CreateCompilation(src + src2); comp.VerifyDiagnostics(); comp = CreateCompilation(src); var comp2 = CreateCompilation(src2, references: new[] { comp.EmitToImageReference() }); comp2.VerifyDiagnostics(); } [Fact] public void Equality_01() { var source = @"using static System.Console; record struct S; class Program { static void Main() { var x = new S(); var y = new S(); WriteLine(x.Equals(y)); WriteLine(((object)x).Equals(y)); } }"; var comp = CreateCompilation(source, parseOptions: TestOptions.RegularPreview, options: TestOptions.ReleaseExe); var verifier = CompileAndVerify(comp, expectedOutput: @"True True").VerifyDiagnostics(); verifier.VerifyIL("S.Equals(S)", @" { // Code size 2 (0x2) .maxstack 1 IL_0000: ldc.i4.1 IL_0001: ret }"); verifier.VerifyIL("S.Equals(object)", @" { // Code size 23 (0x17) .maxstack 2 IL_0000: ldarg.1 IL_0001: isinst ""S"" IL_0006: brfalse.s IL_0015 IL_0008: ldarg.0 IL_0009: ldarg.1 IL_000a: unbox.any ""S"" IL_000f: call ""readonly bool S.Equals(S)"" IL_0014: ret IL_0015: ldc.i4.0 IL_0016: ret }"); } [Fact] public void RecordStructLanguageVersion() { var src1 = @" struct Point(int x, int y); "; var src2 = @" record struct Point { } "; var src3 = @" record struct Point(int x, int y); "; var comp = CreateCompilation(new[] { src1, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular9, options: TestOptions.ReleaseDll); comp.VerifyDiagnostics( // (2,13): error CS1514: { expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_LbraceExpected, "(").WithLocation(2, 13), // (2,13): error CS1513: } expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_RbraceExpected, "(").WithLocation(2, 13), // (2,13): error CS8803: Top-level statements must precede namespace and type declarations. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_TopLevelStatementAfterNamespaceOrType, "(int x, int y);").WithLocation(2, 13), // (2,13): error CS8805: Program using top-level statements must be an executable. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_SimpleProgramNotAnExecutable, "(int x, int y);").WithLocation(2, 13), // (2,13): error CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_IllegalStatement, "(int x, int y)").WithLocation(2, 13), // (2,14): error CS8185: A declaration is not allowed in this context. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_DeclarationExpressionNotPermitted, "int x").WithLocation(2, 14), // (2,14): error CS0165: Use of unassigned local variable 'x' // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_UseDefViolation, "int x").WithArguments("x").WithLocation(2, 14), // (2,21): error CS8185: A declaration is not allowed in this context. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_DeclarationExpressionNotPermitted, "int y").WithLocation(2, 21), // (2,21): error CS0165: Use of unassigned local variable 'y' // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_UseDefViolation, "int y").WithArguments("y").WithLocation(2, 21) ); comp = CreateCompilation(new[] { src2, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular9, options: TestOptions.ReleaseDll); comp.VerifyDiagnostics( // (2,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct Point { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(2, 8) ); comp = CreateCompilation(new[] { src3, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular9, options: TestOptions.ReleaseDll); comp.VerifyDiagnostics( // (2,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct Point { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(2, 8) ); comp = CreateCompilation(new[] { src1, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular10, options: TestOptions.ReleaseDll); comp.VerifyDiagnostics( // (2,13): error CS1514: { expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_LbraceExpected, "(").WithLocation(2, 13), // (2,13): error CS1513: } expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_RbraceExpected, "(").WithLocation(2, 13), // (2,13): error CS8803: Top-level statements must precede namespace and type declarations. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_TopLevelStatementAfterNamespaceOrType, "(int x, int y);").WithLocation(2, 13), // (2,13): error CS8805: Program using top-level statements must be an executable. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_SimpleProgramNotAnExecutable, "(int x, int y);").WithLocation(2, 13), // (2,13): error CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_IllegalStatement, "(int x, int y)").WithLocation(2, 13), // (2,14): error CS8185: A declaration is not allowed in this context. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_DeclarationExpressionNotPermitted, "int x").WithLocation(2, 14), // (2,14): error CS0165: Use of unassigned local variable 'x' // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_UseDefViolation, "int x").WithArguments("x").WithLocation(2, 14), // (2,21): error CS8185: A declaration is not allowed in this context. // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_DeclarationExpressionNotPermitted, "int y").WithLocation(2, 21), // (2,21): error CS0165: Use of unassigned local variable 'y' // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_UseDefViolation, "int y").WithArguments("y").WithLocation(2, 21) ); comp = CreateCompilation(new[] { src2, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular10, options: TestOptions.ReleaseDll); comp.VerifyDiagnostics(); comp = CreateCompilation(new[] { src3, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular10, options: TestOptions.ReleaseDll); comp.VerifyDiagnostics(); } [Fact] public void RecordStructLanguageVersion_Nested() { var src1 = @" class C { struct Point(int x, int y); } "; var src2 = @" class D { record struct Point { } } "; var src3 = @" struct E { record struct Point(int x, int y); } "; var src4 = @" namespace NS { record struct Point { } } "; var comp = CreateCompilation(src1, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (4,17): error CS1514: { expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_LbraceExpected, "(").WithLocation(4, 17), // (4,17): error CS1513: } expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_RbraceExpected, "(").WithLocation(4, 17), // (4,31): error CS1519: Invalid token ';' in class, record, struct, or interface member declaration // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_InvalidMemberDecl, ";").WithArguments(";").WithLocation(4, 31), // (4,31): error CS1519: Invalid token ';' in class, record, struct, or interface member declaration // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_InvalidMemberDecl, ";").WithArguments(";").WithLocation(4, 31) ); comp = CreateCompilation(new[] { src2, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (4,12): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct Point { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(4, 12) ); comp = CreateCompilation(new[] { src3, IsExternalInitTypeDefinition }, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (4,12): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct Point(int x, int y); Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(4, 12) ); comp = CreateCompilation(src4, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (4,12): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct Point { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(4, 12) ); comp = CreateCompilation(src1); comp.VerifyDiagnostics( // (4,17): error CS1514: { expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_LbraceExpected, "(").WithLocation(4, 17), // (4,17): error CS1513: } expected // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_RbraceExpected, "(").WithLocation(4, 17), // (4,31): error CS1519: Invalid token ';' in class, record, struct, or interface member declaration // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_InvalidMemberDecl, ";").WithArguments(";").WithLocation(4, 31), // (4,31): error CS1519: Invalid token ';' in class, record, struct, or interface member declaration // struct Point(int x, int y); Diagnostic(ErrorCode.ERR_InvalidMemberDecl, ";").WithArguments(";").WithLocation(4, 31) ); comp = CreateCompilation(src2); comp.VerifyDiagnostics(); comp = CreateCompilation(src3); comp.VerifyDiagnostics(); comp = CreateCompilation(src4); comp.VerifyDiagnostics(); } [Fact] public void TypeDeclaration_IsStruct() { var src = @" record struct Point(int x, int y); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, symbolValidator: validateModule, sourceSymbolValidator: validateModule); Assert.True(SyntaxFacts.IsTypeDeclaration(SyntaxKind.RecordStructDeclaration)); static void validateModule(ModuleSymbol module) { var isSourceSymbol = module is SourceModuleSymbol; var point = module.GlobalNamespace.GetTypeMember("Point"); Assert.True(point.IsValueType); Assert.False(point.IsReferenceType); Assert.False(point.IsRecord); Assert.Equal(TypeKind.Struct, point.TypeKind); Assert.Equal(SpecialType.System_ValueType, point.BaseTypeNoUseSiteDiagnostics.SpecialType); Assert.Equal("Point", point.ToTestDisplayString()); if (isSourceSymbol) { Assert.True(point is SourceNamedTypeSymbol); Assert.True(point.IsRecordStruct); Assert.True(point.GetPublicSymbol().IsRecord); Assert.Equal("record struct Point", point.ToDisplayString(SymbolDisplayFormat.TestFormat.AddKindOptions(SymbolDisplayKindOptions.IncludeTypeKeyword))); } else { Assert.True(point is PENamedTypeSymbol); Assert.False(point.IsRecordStruct); Assert.False(point.GetPublicSymbol().IsRecord); Assert.Equal("struct Point", point.ToDisplayString(SymbolDisplayFormat.TestFormat.AddKindOptions(SymbolDisplayKindOptions.IncludeTypeKeyword))); } } } [Fact] public void TypeDeclaration_IsStruct_InConstraints() { var src = @" record struct Point(int x, int y); class C<T> where T : struct { void M(C<Point> c) { } } class C2<T> where T : new() { void M(C2<Point> c) { } } class C3<T> where T : class { void M(C3<Point> c) { } // 1 } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (16,22): error CS0452: The type 'Point' must be a reference type in order to use it as parameter 'T' in the generic type or method 'C3<T>' // void M(C3<Point> c) { } // 1 Diagnostic(ErrorCode.ERR_RefConstraintNotSatisfied, "c").WithArguments("C3<T>", "T", "Point").WithLocation(16, 22) ); } [Fact] public void TypeDeclaration_IsStruct_Unmanaged() { var src = @" record struct Point(int x, int y); record struct Point2(string x, string y); class C<T> where T : unmanaged { void M(C<Point> c) { } void M2(C<Point2> c) { } // 1 } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (8,23): error CS8377: The type 'Point2' must be a non-nullable value type, along with all fields at any level of nesting, in order to use it as parameter 'T' in the generic type or method 'C<T>' // void M2(C<Point2> c) { } // 1 Diagnostic(ErrorCode.ERR_UnmanagedConstraintNotSatisfied, "c").WithArguments("C<T>", "T", "Point2").WithLocation(8, 23) ); } [Fact] public void IsRecord_Generic() { var src = @" record struct Point<T>(T x, T y); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, symbolValidator: validateModule, sourceSymbolValidator: validateModule); static void validateModule(ModuleSymbol module) { var isSourceSymbol = module is SourceModuleSymbol; var point = module.GlobalNamespace.GetTypeMember("Point"); Assert.True(point.IsValueType); Assert.False(point.IsReferenceType); Assert.False(point.IsRecord); Assert.Equal(TypeKind.Struct, point.TypeKind); Assert.Equal(SpecialType.System_ValueType, point.BaseTypeNoUseSiteDiagnostics.SpecialType); Assert.True(SyntaxFacts.IsTypeDeclaration(SyntaxKind.RecordStructDeclaration)); if (isSourceSymbol) { Assert.True(point is SourceNamedTypeSymbol); Assert.True(point.IsRecordStruct); Assert.True(point.GetPublicSymbol().IsRecord); } else { Assert.True(point is PENamedTypeSymbol); Assert.False(point.IsRecordStruct); Assert.False(point.GetPublicSymbol().IsRecord); } } } [Fact] public void IsRecord_Retargeting() { var src = @" public record struct Point(int x, int y); "; var comp = CreateCompilation(src, targetFramework: TargetFramework.Mscorlib40); var comp2 = CreateCompilation("", targetFramework: TargetFramework.Mscorlib46, references: new[] { comp.ToMetadataReference() }); var point = comp2.GlobalNamespace.GetTypeMember("Point"); Assert.Equal("Point", point.ToTestDisplayString()); Assert.IsType<RetargetingNamedTypeSymbol>(point); Assert.True(point.IsRecordStruct); Assert.True(point.GetPublicSymbol().IsRecord); } [Fact] public void IsRecord_AnonymousType() { var src = @" class C { void M() { var x = new { X = 1 }; } } "; var comp = CreateCompilation(src); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var creation = tree.GetRoot().DescendantNodes().OfType<AnonymousObjectCreationExpressionSyntax>().Single(); var type = model.GetTypeInfo(creation).Type!; Assert.Equal("<anonymous type: System.Int32 X>", type.ToTestDisplayString()); Assert.IsType<AnonymousTypeManager.AnonymousTypePublicSymbol>(((Symbols.PublicModel.NonErrorNamedTypeSymbol)type).UnderlyingNamedTypeSymbol); Assert.False(type.IsRecord); } [Fact] public void IsRecord_ErrorType() { var src = @" class C { Error M() => throw null; } "; var comp = CreateCompilation(src); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var method = tree.GetRoot().DescendantNodes().OfType<MethodDeclarationSyntax>().Single(); var type = model.GetDeclaredSymbol(method)!.ReturnType; Assert.Equal("Error", type.ToTestDisplayString()); Assert.IsType<ExtendedErrorTypeSymbol>(((Symbols.PublicModel.ErrorTypeSymbol)type).UnderlyingNamedTypeSymbol); Assert.False(type.IsRecord); } [Fact] public void IsRecord_Pointer() { var src = @" class C { int* M() => throw null; } "; var comp = CreateCompilation(src, options: TestOptions.UnsafeReleaseDll); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var method = tree.GetRoot().DescendantNodes().OfType<MethodDeclarationSyntax>().Single(); var type = model.GetDeclaredSymbol(method)!.ReturnType; Assert.Equal("System.Int32*", type.ToTestDisplayString()); Assert.IsType<PointerTypeSymbol>(((Symbols.PublicModel.PointerTypeSymbol)type).UnderlyingTypeSymbol); Assert.False(type.IsRecord); } [Fact] public void IsRecord_Dynamic() { var src = @" class C { void M(dynamic d) { } } "; var comp = CreateCompilation(src); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var method = tree.GetRoot().DescendantNodes().OfType<MethodDeclarationSyntax>().Single(); var type = model.GetDeclaredSymbol(method)!.GetParameterType(0); Assert.Equal("dynamic", type.ToTestDisplayString()); Assert.IsType<DynamicTypeSymbol>(((Symbols.PublicModel.DynamicTypeSymbol)type).UnderlyingTypeSymbol); Assert.False(type.IsRecord); } [Fact] public void TypeDeclaration_MayNotHaveBaseType() { var src = @" record struct Point(int x, int y) : object; record struct Point2(int x, int y) : System.ValueType; "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,37): error CS0527: Type 'object' in interface list is not an interface // record struct Point(int x, int y) : object; Diagnostic(ErrorCode.ERR_NonInterfaceInInterfaceList, "object").WithArguments("object").WithLocation(2, 37), // (3,38): error CS0527: Type 'ValueType' in interface list is not an interface // record struct Point2(int x, int y) : System.ValueType; Diagnostic(ErrorCode.ERR_NonInterfaceInInterfaceList, "System.ValueType").WithArguments("System.ValueType").WithLocation(3, 38) ); } [Fact] public void TypeDeclaration_MayNotHaveTypeConstraintsWithoutTypeParameters() { var src = @" record struct Point(int x, int y) where T : struct; "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,35): error CS0080: Constraints are not allowed on non-generic declarations // record struct Point(int x, int y) where T : struct; Diagnostic(ErrorCode.ERR_ConstraintOnlyAllowedOnGenericDecl, "where").WithLocation(2, 35) ); } [Fact] public void TypeDeclaration_AllowedModifiers() { var src = @" readonly partial record struct S1; public record struct S2; internal record struct S3; public class Base { public int S6; } public class C : Base { private protected record struct S4; protected internal record struct S5; new record struct S6; } unsafe record struct S7; "; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview, options: TestOptions.UnsafeDebugDll); comp.VerifyDiagnostics(); Assert.Equal(Accessibility.Internal, comp.GlobalNamespace.GetTypeMember("S1").DeclaredAccessibility); Assert.Equal(Accessibility.Public, comp.GlobalNamespace.GetTypeMember("S2").DeclaredAccessibility); Assert.Equal(Accessibility.Internal, comp.GlobalNamespace.GetTypeMember("S3").DeclaredAccessibility); Assert.Equal(Accessibility.ProtectedAndInternal, comp.GlobalNamespace.GetTypeMember("C").GetTypeMember("S4").DeclaredAccessibility); Assert.Equal(Accessibility.ProtectedOrInternal, comp.GlobalNamespace.GetTypeMember("C").GetTypeMember("S5").DeclaredAccessibility); } [Fact] public void TypeDeclaration_DisallowedModifiers() { var src = @" abstract record struct S1; volatile record struct S2; extern record struct S3; virtual record struct S4; override record struct S5; async record struct S6; ref record struct S7; unsafe record struct S8; static record struct S9; sealed record struct S10; "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,24): error CS0106: The modifier 'abstract' is not valid for this item // abstract record struct S1; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S1").WithArguments("abstract").WithLocation(2, 24), // (3,24): error CS0106: The modifier 'volatile' is not valid for this item // volatile record struct S2; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S2").WithArguments("volatile").WithLocation(3, 24), // (4,22): error CS0106: The modifier 'extern' is not valid for this item // extern record struct S3; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S3").WithArguments("extern").WithLocation(4, 22), // (5,23): error CS0106: The modifier 'virtual' is not valid for this item // virtual record struct S4; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S4").WithArguments("virtual").WithLocation(5, 23), // (6,24): error CS0106: The modifier 'override' is not valid for this item // override record struct S5; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S5").WithArguments("override").WithLocation(6, 24), // (7,21): error CS0106: The modifier 'async' is not valid for this item // async record struct S6; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S6").WithArguments("async").WithLocation(7, 21), // (8,19): error CS0106: The modifier 'ref' is not valid for this item // ref record struct S7; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S7").WithArguments("ref").WithLocation(8, 19), // (9,22): error CS0227: Unsafe code may only appear if compiling with /unsafe // unsafe record struct S8; Diagnostic(ErrorCode.ERR_IllegalUnsafe, "S8").WithLocation(9, 22), // (10,22): error CS0106: The modifier 'static' is not valid for this item // static record struct S9; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S9").WithArguments("static").WithLocation(10, 22), // (11,22): error CS0106: The modifier 'sealed' is not valid for this item // sealed record struct S10; Diagnostic(ErrorCode.ERR_BadMemberFlag, "S10").WithArguments("sealed").WithLocation(11, 22) ); } [Fact] public void TypeDeclaration_DuplicatesModifiers() { var src = @" public public record struct S2; "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,8): error CS1004: Duplicate 'public' modifier // public public record struct S2; Diagnostic(ErrorCode.ERR_DuplicateModifier, "public").WithArguments("public").WithLocation(2, 8) ); } [Fact] public void TypeDeclaration_BeforeTopLevelStatement() { var src = @" record struct S; System.Console.WriteLine(); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (3,1): error CS8803: Top-level statements must precede namespace and type declarations. // System.Console.WriteLine(); Diagnostic(ErrorCode.ERR_TopLevelStatementAfterNamespaceOrType, "System.Console.WriteLine();").WithLocation(3, 1) ); } [Fact] public void TypeDeclaration_WithTypeParameters() { var src = @" S<string> local = default; local.ToString(); record struct S<T>; "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); Assert.Equal(new[] { "T" }, comp.GlobalNamespace.GetTypeMember("S").TypeParameters.ToTestDisplayStrings()); } [Fact] public void TypeDeclaration_AllowedModifiersForMembers() { var src = @" record struct S { protected int Property { get; set; } // 1 internal protected string field; // 2, 3 abstract void M(); // 4 virtual void M2() { } // 5 }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (4,19): error CS0666: 'S.Property': new protected member declared in struct // protected int Property { get; set; } // 1 Diagnostic(ErrorCode.ERR_ProtectedInStruct, "Property").WithArguments("S.Property").WithLocation(4, 19), // (5,31): error CS0666: 'S.field': new protected member declared in struct // internal protected string field; // 2, 3 Diagnostic(ErrorCode.ERR_ProtectedInStruct, "field").WithArguments("S.field").WithLocation(5, 31), // (5,31): warning CS0649: Field 'S.field' is never assigned to, and will always have its default value null // internal protected string field; // 2, 3 Diagnostic(ErrorCode.WRN_UnassignedInternalField, "field").WithArguments("S.field", "null").WithLocation(5, 31), // (6,19): error CS0621: 'S.M()': virtual or abstract members cannot be private // abstract void M(); // 4 Diagnostic(ErrorCode.ERR_VirtualPrivate, "M").WithArguments("S.M()").WithLocation(6, 19), // (7,18): error CS0621: 'S.M2()': virtual or abstract members cannot be private // virtual void M2() { } // 5 Diagnostic(ErrorCode.ERR_VirtualPrivate, "M2").WithArguments("S.M2()").WithLocation(7, 18) ); } [Fact] public void TypeDeclaration_ImplementInterface() { var src = @" I i = (I)default(S); System.Console.Write(i.M(""four"")); I i2 = (I)default(S2); System.Console.Write(i2.M(""four"")); interface I { int M(string s); } public record struct S : I { public int M(string s) => s.Length; } public record struct S2 : I { int I.M(string s) => s.Length + 1; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "45"); AssertEx.Equal(new[] { "System.Int32 S.M(System.String s)", "readonly System.String S.ToString()", "readonly System.Boolean S.PrintMembers(System.Text.StringBuilder builder)", "System.Boolean S.op_Inequality(S left, S right)", "System.Boolean S.op_Equality(S left, S right)", "readonly System.Int32 S.GetHashCode()", "readonly System.Boolean S.Equals(System.Object obj)", "readonly System.Boolean S.Equals(S other)", "S..ctor()" }, comp.GetMember<NamedTypeSymbol>("S").GetMembers().ToTestDisplayStrings()); } [Fact] public void TypeDeclaration_SatisfiesStructConstraint() { var src = @" S s = default; System.Console.Write(M(s)); static int M<T>(T t) where T : struct, I => t.Property; public interface I { int Property { get; } } public record struct S : I { public int Property => 42; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "42"); } [Fact] public void TypeDeclaration_AccessingThis() { var src = @" S s = new S(); System.Console.Write(s.M()); public record struct S { public int Property => 42; public int M() => this.Property; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42"); verifier.VerifyIL("S.M", @" { // Code size 7 (0x7) .maxstack 1 IL_0000: ldarg.0 IL_0001: call ""int S.Property.get"" IL_0006: ret } "); } [Fact] public void TypeDeclaration_NoBaseInitializer() { var src = @" public record struct S { public S(int i) : base() { } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (4,12): error CS0522: 'S': structs cannot call base class constructors // public S(int i) : base() { } Diagnostic(ErrorCode.ERR_StructWithBaseConstructorCall, "S").WithArguments("S").WithLocation(4, 12) ); } [Fact] public void TypeDeclaration_ParameterlessConstructor_01() { var src = @"record struct S0(); record struct S1; record struct S2 { public S2() { } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (1,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct S0(); Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(1, 8), // (2,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct S1; Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(2, 8), // (3,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct S2 Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(3, 8), // (5,12): error CS8773: Feature 'parameterless struct constructors' is not available in C# 9.0. Please use language version 10.0 or greater. // public S2() { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "S2").WithArguments("parameterless struct constructors", "10.0").WithLocation(5, 12)); var verifier = CompileAndVerify(src); verifier.VerifyIL("S0..ctor()", @"{ // Code size 1 (0x1) .maxstack 0 IL_0000: ret }"); verifier.VerifyMissing("S1..ctor()"); verifier.VerifyIL("S2..ctor()", @"{ // Code size 1 (0x1) .maxstack 0 IL_0000: ret }"); } [Fact] public void TypeDeclaration_ParameterlessConstructor_02() { var src = @"record struct S1 { S1() { } } record struct S2 { internal S2() { } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (1,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct S1 Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(1, 8), // (3,5): error CS8773: Feature 'parameterless struct constructors' is not available in C# 9.0. Please use language version 10.0 or greater. // S1() { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "S1").WithArguments("parameterless struct constructors", "10.0").WithLocation(3, 5), // (3,5): error CS8938: The parameterless struct constructor must be 'public'. // S1() { } Diagnostic(ErrorCode.ERR_NonPublicParameterlessStructConstructor, "S1").WithLocation(3, 5), // (5,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct S2 Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(5, 8), // (7,14): error CS8773: Feature 'parameterless struct constructors' is not available in C# 9.0. Please use language version 10.0 or greater. // internal S2() { } Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "S2").WithArguments("parameterless struct constructors", "10.0").WithLocation(7, 14), // (7,14): error CS8938: The parameterless struct constructor must be 'public'. // internal S2() { } Diagnostic(ErrorCode.ERR_NonPublicParameterlessStructConstructor, "S2").WithLocation(7, 14)); comp = CreateCompilation(src); comp.VerifyDiagnostics( // (3,5): error CS8918: The parameterless struct constructor must be 'public'. // S1() { } Diagnostic(ErrorCode.ERR_NonPublicParameterlessStructConstructor, "S1").WithLocation(3, 5), // (7,14): error CS8918: The parameterless struct constructor must be 'public'. // internal S2() { } Diagnostic(ErrorCode.ERR_NonPublicParameterlessStructConstructor, "S2").WithLocation(7, 14)); } [Fact] public void TypeDeclaration_ParameterlessConstructor_OtherConstructors() { var src = @" record struct S1 { public S1() { } S1(object o) { } // ok because no record parameter list } record struct S2 { S2(object o) { } } record struct S3() { S3(object o) { } // 1 } record struct S4() { S4(object o) : this() { } } record struct S5(object o) { public S5() { } // 2 } record struct S6(object o) { public S6() : this(null) { } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (13,5): error CS8862: A constructor declared in a record with parameter list must have 'this' constructor initializer. // S3(object o) { } // 1 Diagnostic(ErrorCode.ERR_UnexpectedOrMissingConstructorInitializerInRecord, "S3").WithLocation(13, 5), // (21,12): error CS8862: A constructor declared in a record with parameter list must have 'this' constructor initializer. // public S5() { } // 2 Diagnostic(ErrorCode.ERR_UnexpectedOrMissingConstructorInitializerInRecord, "S5").WithLocation(21, 12) ); } [Fact] public void TypeDeclaration_ParameterlessConstructor_Initializers() { var src = @" var s1 = new S1(); var s2 = new S2(null); var s2b = new S2(); var s3 = new S3(); var s4 = new S4(new object()); var s5 = new S5(); var s6 = new S6(""s6.other""); System.Console.Write((s1.field, s2.field, s2b.field is null, s3.field, s4.field, s5.field, s6.field, s6.other)); record struct S1 { public string field = ""s1""; public S1() { } } record struct S2 { public string field = ""s2""; public S2(object o) { } } record struct S3() { public string field = ""s3""; } record struct S4 { public string field = ""s4""; public S4(object o) : this() { } } record struct S5() { public string field = ""s5""; public S5(object o) : this() { } } record struct S6(string other) { public string field = ""s6.field""; public S6() : this(""ignored"") { } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "(s1, s2, True, s3, s4, s5, s6.field, s6.other)"); } [Fact] public void TypeDeclaration_InstanceInitializers() { var src = @" public record struct S { public int field = 42; public int Property { get; set; } = 43; } "; var comp = CreateCompilation(src, parseOptions: TestOptions.Regular9); comp.VerifyDiagnostics( // (2,15): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // public record struct S Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(2, 15), // (4,16): error CS8773: Feature 'struct field initializers' is not available in C# 9.0. Please use language version 10.0 or greater. // public int field = 42; Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "field").WithArguments("struct field initializers", "10.0").WithLocation(4, 16), // (5,16): error CS8773: Feature 'struct field initializers' is not available in C# 9.0. Please use language version 10.0 or greater. // public int Property { get; set; } = 43; Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "Property").WithArguments("struct field initializers", "10.0").WithLocation(5, 16)); comp = CreateCompilation(src); comp.VerifyDiagnostics(); } [Fact] public void TypeDeclaration_NoDestructor() { var src = @" public record struct S { ~S() { } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (4,6): error CS0575: Only class types can contain destructors // ~S() { } Diagnostic(ErrorCode.ERR_OnlyClassesCanContainDestructors, "S").WithArguments("S.~S()").WithLocation(4, 6) ); } [Fact] public void TypeDeclaration_DifferentPartials() { var src = @" partial record struct S1; partial struct S1 { } partial struct S2 { } partial record struct S2; partial record struct S3; partial record S3 { } partial record struct S4; partial record class S4 { } partial record struct S5; partial class S5 { } partial record struct S6; partial interface S6 { } partial record class C1; partial struct C1 { } partial record class C2; partial record struct C2 { } partial record class C3 { } partial record C3; partial record class C4; partial class C4 { } partial record class C5; partial interface C5 { } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (3,16): error CS0261: Partial declarations of 'S1' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial struct S1 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "S1").WithArguments("S1").WithLocation(3, 16), // (6,23): error CS0261: Partial declarations of 'S2' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial record struct S2; Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "S2").WithArguments("S2").WithLocation(6, 23), // (9,16): error CS0261: Partial declarations of 'S3' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial record S3 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "S3").WithArguments("S3").WithLocation(9, 16), // (12,22): error CS0261: Partial declarations of 'S4' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial record class S4 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "S4").WithArguments("S4").WithLocation(12, 22), // (15,15): error CS0261: Partial declarations of 'S5' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial class S5 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "S5").WithArguments("S5").WithLocation(15, 15), // (18,19): error CS0261: Partial declarations of 'S6' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial interface S6 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "S6").WithArguments("S6").WithLocation(18, 19), // (21,16): error CS0261: Partial declarations of 'C1' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial struct C1 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "C1").WithArguments("C1").WithLocation(21, 16), // (24,23): error CS0261: Partial declarations of 'C2' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial record struct C2 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "C2").WithArguments("C2").WithLocation(24, 23), // (30,15): error CS0261: Partial declarations of 'C4' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial class C4 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "C4").WithArguments("C4").WithLocation(30, 15), // (33,19): error CS0261: Partial declarations of 'C5' must be all classes, all record classes, all structs, all record structs, or all interfaces // partial interface C5 { } Diagnostic(ErrorCode.ERR_PartialTypeKindConflict, "C5").WithArguments("C5").WithLocation(33, 19) ); } [Fact] public void PartialRecord_OnlyOnePartialHasParameterList() { var src = @" partial record struct S(int i); partial record struct S(int i); partial record struct S2(int i); partial record struct S2(); partial record struct S3(); partial record struct S3(); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (3,24): error CS8863: Only a single record partial declaration may have a parameter list // partial record struct S(int i); Diagnostic(ErrorCode.ERR_MultipleRecordParameterLists, "(int i)").WithLocation(3, 24), // (6,25): error CS8863: Only a single record partial declaration may have a parameter list // partial record struct S2(); Diagnostic(ErrorCode.ERR_MultipleRecordParameterLists, "()").WithLocation(6, 25), // (9,25): error CS8863: Only a single record partial declaration may have a parameter list // partial record struct S3(); Diagnostic(ErrorCode.ERR_MultipleRecordParameterLists, "()").WithLocation(9, 25) ); } [Fact] public void PartialRecord_ParametersInScopeOfBothParts() { var src = @" var c = new C(2); System.Console.Write((c.P1, c.P2)); public partial record struct C(int X) { public int P1 { get; set; } = X; } public partial record struct C { public int P2 { get; set; } = X; } "; var comp = CreateCompilation(src); CompileAndVerify(comp, expectedOutput: "(2, 2)", verify: Verification.Skipped /* init-only */) .VerifyDiagnostics( // (5,30): warning CS0282: There is no defined ordering between fields in multiple declarations of partial struct 'C'. To specify an ordering, all instance fields must be in the same declaration. // public partial record struct C(int X) Diagnostic(ErrorCode.WRN_SequentialOnPartialClass, "C").WithArguments("C").WithLocation(5, 30) ); } [Fact] public void PartialRecord_DuplicateMemberNames() { var src = @" public partial record struct C(int X) { public void M(int i) { } } public partial record struct C { public void M(string s) { } } "; var comp = CreateCompilation(src); var expectedMemberNames = new string[] { ".ctor", "<X>k__BackingField", "get_X", "set_X", "X", "M", "M", "ToString", "PrintMembers", "op_Inequality", "op_Equality", "GetHashCode", "Equals", "Equals", "Deconstruct", ".ctor", }; AssertEx.Equal(expectedMemberNames, comp.GetMember<NamedTypeSymbol>("C").GetPublicSymbol().MemberNames); } [Fact] public void RecordInsideGenericType() { var src = @" var c = new C<int>.Nested(2); System.Console.Write(c.T); public class C<T> { public record struct Nested(T T); } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "2"); } [Fact] public void PositionalMemberModifiers_RefOrOut() { var src = @" record struct R(ref int P1, out int P2); "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (2,15): error CS0177: The out parameter 'P2' must be assigned to before control leaves the current method // record struct R(ref int P1, out int P2); Diagnostic(ErrorCode.ERR_ParamUnassigned, "R").WithArguments("P2").WithLocation(2, 15), // (2,17): error CS0631: ref and out are not valid in this context // record struct R(ref int P1, out int P2); Diagnostic(ErrorCode.ERR_IllegalRefParam, "ref").WithLocation(2, 17), // (2,29): error CS0631: ref and out are not valid in this context // record struct R(ref int P1, out int P2); Diagnostic(ErrorCode.ERR_IllegalRefParam, "out").WithLocation(2, 29) ); } [Fact, WorkItem(45008, "https://github.com/dotnet/roslyn/issues/45008")] public void PositionalMemberModifiers_This() { var src = @" record struct R(this int i); "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (2,17): error CS0027: Keyword 'this' is not available in the current context // record struct R(this int i); Diagnostic(ErrorCode.ERR_ThisInBadContext, "this").WithLocation(2, 17) ); } [Fact, WorkItem(45591, "https://github.com/dotnet/roslyn/issues/45591")] public void Clone_DisallowedInSource() { var src = @" record struct C1(string Clone); // 1 record struct C2 { string Clone; // 2 } record struct C3 { string Clone { get; set; } // 3 } record struct C5 { void Clone() { } // 4 void Clone(int i) { } // 5 } record struct C6 { class Clone { } // 6 } record struct C7 { delegate void Clone(); // 7 } record struct C8 { event System.Action Clone; // 8 } record struct Clone { Clone(int i) => throw null; } record struct C9 : System.ICloneable { object System.ICloneable.Clone() => throw null; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,25): error CS8859: Members named 'Clone' are disallowed in records. // record struct C1(string Clone); // 1 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(2, 25), // (5,12): error CS8859: Members named 'Clone' are disallowed in records. // string Clone; // 2 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(5, 12), // (5,12): warning CS0169: The field 'C2.Clone' is never used // string Clone; // 2 Diagnostic(ErrorCode.WRN_UnreferencedField, "Clone").WithArguments("C2.Clone").WithLocation(5, 12), // (9,12): error CS8859: Members named 'Clone' are disallowed in records. // string Clone { get; set; } // 3 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(9, 12), // (13,10): error CS8859: Members named 'Clone' are disallowed in records. // void Clone() { } // 4 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(13, 10), // (14,10): error CS8859: Members named 'Clone' are disallowed in records. // void Clone(int i) { } // 5 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(14, 10), // (18,11): error CS8859: Members named 'Clone' are disallowed in records. // class Clone { } // 6 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(18, 11), // (22,19): error CS8859: Members named 'Clone' are disallowed in records. // delegate void Clone(); // 7 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(22, 19), // (26,25): error CS8859: Members named 'Clone' are disallowed in records. // event System.Action Clone; // 8 Diagnostic(ErrorCode.ERR_CloneDisallowedInRecord, "Clone").WithLocation(26, 25), // (26,25): warning CS0067: The event 'C8.Clone' is never used // event System.Action Clone; // 8 Diagnostic(ErrorCode.WRN_UnreferencedEvent, "Clone").WithArguments("C8.Clone").WithLocation(26, 25) ); } [ConditionalFact(typeof(DesktopOnly), Reason = ConditionalSkipReason.RestrictedTypesNeedDesktop)] [WorkItem(48115, "https://github.com/dotnet/roslyn/issues/48115")] public void RestrictedTypesAndPointerTypes() { var src = @" class C<T> { } static class C2 { } ref struct RefLike{} unsafe record struct C( // 1 int* P1, // 2 int*[] P2, // 3 C<int*[]> P3, delegate*<int, int> P4, // 4 void P5, // 5 C2 P6, // 6, 7 System.ArgIterator P7, // 8 System.TypedReference P8, // 9 RefLike P9); // 10 "; var comp = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.UnsafeDebugDll); comp.VerifyEmitDiagnostics( // (6,22): error CS0721: 'C2': static types cannot be used as parameters // unsafe record struct C( // 1 Diagnostic(ErrorCode.ERR_ParameterIsStaticClass, "C").WithArguments("C2").WithLocation(6, 22), // (7,10): error CS8908: The type 'int*' may not be used for a field of a record. // int* P1, // 2 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "P1").WithArguments("int*").WithLocation(7, 10), // (8,12): error CS8908: The type 'int*[]' may not be used for a field of a record. // int*[] P2, // 3 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "P2").WithArguments("int*[]").WithLocation(8, 12), // (10,25): error CS8908: The type 'delegate*<int, int>' may not be used for a field of a record. // delegate*<int, int> P4, // 4 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "P4").WithArguments("delegate*<int, int>").WithLocation(10, 25), // (11,5): error CS1536: Invalid parameter type 'void' // void P5, // 5 Diagnostic(ErrorCode.ERR_NoVoidParameter, "void").WithLocation(11, 5), // (12,8): error CS0722: 'C2': static types cannot be used as return types // C2 P6, // 6, 7 Diagnostic(ErrorCode.ERR_ReturnTypeIsStaticClass, "P6").WithArguments("C2").WithLocation(12, 8), // (12,8): error CS0721: 'C2': static types cannot be used as parameters // C2 P6, // 6, 7 Diagnostic(ErrorCode.ERR_ParameterIsStaticClass, "P6").WithArguments("C2").WithLocation(12, 8), // (13,5): error CS0610: Field or property cannot be of type 'ArgIterator' // System.ArgIterator P7, // 8 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.ArgIterator").WithArguments("System.ArgIterator").WithLocation(13, 5), // (14,5): error CS0610: Field or property cannot be of type 'TypedReference' // System.TypedReference P8, // 9 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.TypedReference").WithArguments("System.TypedReference").WithLocation(14, 5), // (15,5): error CS8345: Field or auto-implemented property cannot be of type 'RefLike' unless it is an instance member of a ref struct. // RefLike P9); // 10 Diagnostic(ErrorCode.ERR_FieldAutoPropCantBeByRefLike, "RefLike").WithArguments("RefLike").WithLocation(15, 5) ); } [ConditionalFact(typeof(DesktopOnly), Reason = ConditionalSkipReason.RestrictedTypesNeedDesktop)] [WorkItem(48115, "https://github.com/dotnet/roslyn/issues/48115")] public void RestrictedTypesAndPointerTypes_NominalMembers() { var src = @" public class C<T> { } public static class C2 { } public ref struct RefLike{} public unsafe record struct C { public int* f1; // 1 public int*[] f2; // 2 public C<int*[]> f3; public delegate*<int, int> f4; // 3 public void f5; // 4 public C2 f6; // 5 public System.ArgIterator f7; // 6 public System.TypedReference f8; // 7 public RefLike f9; // 8 } "; var comp = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.UnsafeDebugDll); comp.VerifyEmitDiagnostics( // (8,17): error CS8908: The type 'int*' may not be used for a field of a record. // public int* f1; // 1 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "f1").WithArguments("int*").WithLocation(8, 17), // (9,19): error CS8908: The type 'int*[]' may not be used for a field of a record. // public int*[] f2; // 2 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "f2").WithArguments("int*[]").WithLocation(9, 19), // (11,32): error CS8908: The type 'delegate*<int, int>' may not be used for a field of a record. // public delegate*<int, int> f4; // 3 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "f4").WithArguments("delegate*<int, int>").WithLocation(11, 32), // (12,12): error CS0670: Field cannot have void type // public void f5; // 4 Diagnostic(ErrorCode.ERR_FieldCantHaveVoidType, "void").WithLocation(12, 12), // (13,15): error CS0723: Cannot declare a variable of static type 'C2' // public C2 f6; // 5 Diagnostic(ErrorCode.ERR_VarDeclIsStaticClass, "f6").WithArguments("C2").WithLocation(13, 15), // (14,12): error CS0610: Field or property cannot be of type 'ArgIterator' // public System.ArgIterator f7; // 6 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.ArgIterator").WithArguments("System.ArgIterator").WithLocation(14, 12), // (15,12): error CS0610: Field or property cannot be of type 'TypedReference' // public System.TypedReference f8; // 7 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.TypedReference").WithArguments("System.TypedReference").WithLocation(15, 12), // (16,12): error CS8345: Field or auto-implemented property cannot be of type 'RefLike' unless it is an instance member of a ref struct. // public RefLike f9; // 8 Diagnostic(ErrorCode.ERR_FieldAutoPropCantBeByRefLike, "RefLike").WithArguments("RefLike").WithLocation(16, 12) ); } [ConditionalFact(typeof(DesktopOnly), Reason = ConditionalSkipReason.RestrictedTypesNeedDesktop)] [WorkItem(48115, "https://github.com/dotnet/roslyn/issues/48115")] public void RestrictedTypesAndPointerTypes_NominalMembers_AutoProperties() { var src = @" public class C<T> { } public static class C2 { } public ref struct RefLike{} public unsafe record struct C { public int* f1 { get; set; } // 1 public int*[] f2 { get; set; } // 2 public C<int*[]> f3 { get; set; } public delegate*<int, int> f4 { get; set; } // 3 public void f5 { get; set; } // 4 public C2 f6 { get; set; } // 5, 6 public System.ArgIterator f7 { get; set; } // 6 public System.TypedReference f8 { get; set; } // 7 public RefLike f9 { get; set; } // 8 } "; var comp = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.UnsafeDebugDll); comp.VerifyEmitDiagnostics( // (8,17): error CS8908: The type 'int*' may not be used for a field of a record. // public int* f1 { get; set; } // 1 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "f1").WithArguments("int*").WithLocation(8, 17), // (9,19): error CS8908: The type 'int*[]' may not be used for a field of a record. // public int*[] f2 { get; set; } // 2 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "f2").WithArguments("int*[]").WithLocation(9, 19), // (11,32): error CS8908: The type 'delegate*<int, int>' may not be used for a field of a record. // public delegate*<int, int> f4 { get; set; } // 3 Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "f4").WithArguments("delegate*<int, int>").WithLocation(11, 32), // (12,17): error CS0547: 'C.f5': property or indexer cannot have void type // public void f5 { get; set; } // 4 Diagnostic(ErrorCode.ERR_PropertyCantHaveVoidType, "f5").WithArguments("C.f5").WithLocation(12, 17), // (13,20): error CS0722: 'C2': static types cannot be used as return types // public C2 f6 { get; set; } // 5, 6 Diagnostic(ErrorCode.ERR_ReturnTypeIsStaticClass, "get").WithArguments("C2").WithLocation(13, 20), // (13,25): error CS0721: 'C2': static types cannot be used as parameters // public C2 f6 { get; set; } // 5, 6 Diagnostic(ErrorCode.ERR_ParameterIsStaticClass, "set").WithArguments("C2").WithLocation(13, 25), // (14,12): error CS0610: Field or property cannot be of type 'ArgIterator' // public System.ArgIterator f7 { get; set; } // 6 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.ArgIterator").WithArguments("System.ArgIterator").WithLocation(14, 12), // (15,12): error CS0610: Field or property cannot be of type 'TypedReference' // public System.TypedReference f8 { get; set; } // 7 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.TypedReference").WithArguments("System.TypedReference").WithLocation(15, 12), // (16,12): error CS8345: Field or auto-implemented property cannot be of type 'RefLike' unless it is an instance member of a ref struct. // public RefLike f9 { get; set; } // 8 Diagnostic(ErrorCode.ERR_FieldAutoPropCantBeByRefLike, "RefLike").WithArguments("RefLike").WithLocation(16, 12) ); } [Fact] [WorkItem(48115, "https://github.com/dotnet/roslyn/issues/48115")] public void RestrictedTypesAndPointerTypes_PointerTypeAllowedForParameterAndProperty() { var src = @" class C<T> { } unsafe record struct C(int* P1, int*[] P2, C<int*[]> P3) { int* P1 { get { System.Console.Write(""P1 ""); return null; } init { } } int*[] P2 { get { System.Console.Write(""P2 ""); return null; } init { } } C<int*[]> P3 { get { System.Console.Write(""P3 ""); return null; } init { } } public unsafe static void Main() { var x = new C(null, null, null); var (x1, x2, x3) = x; System.Console.Write(""RAN""); } } "; var comp = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.UnsafeDebugExe); comp.VerifyEmitDiagnostics( // (4,29): warning CS8907: Parameter 'P1' is unread. Did you forget to use it to initialize the property with that name? // unsafe record struct C(int* P1, int*[] P2, C<int*[]> P3) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P1").WithArguments("P1").WithLocation(4, 29), // (4,40): warning CS8907: Parameter 'P2' is unread. Did you forget to use it to initialize the property with that name? // unsafe record struct C(int* P1, int*[] P2, C<int*[]> P3) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P2").WithArguments("P2").WithLocation(4, 40), // (4,54): warning CS8907: Parameter 'P3' is unread. Did you forget to use it to initialize the property with that name? // unsafe record struct C(int* P1, int*[] P2, C<int*[]> P3) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P3").WithArguments("P3").WithLocation(4, 54) ); CompileAndVerify(comp, expectedOutput: "P1 P2 P3 RAN", verify: Verification.Skipped /* pointers */); } [ConditionalFact(typeof(DesktopOnly), Reason = ConditionalSkipReason.RestrictedTypesNeedDesktop)] [WorkItem(48115, "https://github.com/dotnet/roslyn/issues/48115")] public void RestrictedTypesAndPointerTypes_StaticFields() { var src = @" public class C<T> { } public static class C2 { } public ref struct RefLike{} public unsafe record C { public static int* f1; public static int*[] f2; public static C<int*[]> f3; public static delegate*<int, int> f4; public static C2 f6; // 1 public static System.ArgIterator f7; // 2 public static System.TypedReference f8; // 3 public static RefLike f9; // 4 } "; var comp = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, options: TestOptions.UnsafeDebugDll); comp.VerifyEmitDiagnostics( // (12,22): error CS0723: Cannot declare a variable of static type 'C2' // public static C2 f6; // 1 Diagnostic(ErrorCode.ERR_VarDeclIsStaticClass, "f6").WithArguments("C2").WithLocation(12, 22), // (13,19): error CS0610: Field or property cannot be of type 'ArgIterator' // public static System.ArgIterator f7; // 2 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.ArgIterator").WithArguments("System.ArgIterator").WithLocation(13, 19), // (14,19): error CS0610: Field or property cannot be of type 'TypedReference' // public static System.TypedReference f8; // 3 Diagnostic(ErrorCode.ERR_FieldCantBeRefAny, "System.TypedReference").WithArguments("System.TypedReference").WithLocation(14, 19), // (15,19): error CS8345: Field or auto-implemented property cannot be of type 'RefLike' unless it is an instance member of a ref struct. // public static RefLike f9; // 4 Diagnostic(ErrorCode.ERR_FieldAutoPropCantBeByRefLike, "RefLike").WithArguments("RefLike").WithLocation(15, 19) ); } [Fact] public void RecordProperties_01() { var src = @" using System; record struct C(int X, int Y) { int Z = 345; public static void Main() { var c = new C(1, 2); Console.Write(c.X); Console.Write(c.Y); Console.Write(c.Z); } }"; var verifier = CompileAndVerify(src, expectedOutput: @"12345").VerifyDiagnostics(); verifier.VerifyIL("C..ctor(int, int)", @" { // Code size 26 (0x1a) .maxstack 2 IL_0000: ldarg.0 IL_0001: ldarg.1 IL_0002: stfld ""int C.<X>k__BackingField"" IL_0007: ldarg.0 IL_0008: ldarg.2 IL_0009: stfld ""int C.<Y>k__BackingField"" IL_000e: ldarg.0 IL_000f: ldc.i4 0x159 IL_0014: stfld ""int C.Z"" IL_0019: ret } "); var c = verifier.Compilation.GlobalNamespace.GetTypeMember("C"); Assert.False(c.IsReadOnly); var x = (IPropertySymbol)c.GetMember("X"); Assert.Equal("readonly System.Int32 C.X.get", x.GetMethod.ToTestDisplayString()); Assert.Equal("void C.X.set", x.SetMethod.ToTestDisplayString()); Assert.False(x.SetMethod!.IsInitOnly); var xBackingField = (IFieldSymbol)c.GetMember("<X>k__BackingField"); Assert.Equal("System.Int32 C.<X>k__BackingField", xBackingField.ToTestDisplayString()); Assert.False(xBackingField.IsReadOnly); } [Fact] public void RecordProperties_01_EmptyParameterList() { var src = @" using System; record struct C() { int Z = 345; public static void Main() { var c = new C(); Console.Write(c.Z); } }"; CreateCompilation(src).VerifyEmitDiagnostics(); } [Fact] public void RecordProperties_01_Readonly() { var src = @" using System; readonly record struct C(int X, int Y) { readonly int Z = 345; public static void Main() { var c = new C(1, 2); Console.Write(c.X); Console.Write(c.Y); Console.Write(c.Z); } }"; var verifier = CompileAndVerify(src, expectedOutput: @"12345").VerifyDiagnostics(); var c = verifier.Compilation.GlobalNamespace.GetTypeMember("C"); Assert.True(c.IsReadOnly); var x = (IPropertySymbol)c.GetMember("X"); Assert.Equal("System.Int32 C.X.get", x.GetMethod.ToTestDisplayString()); Assert.Equal("void modreq(System.Runtime.CompilerServices.IsExternalInit) C.X.init", x.SetMethod.ToTestDisplayString()); Assert.True(x.SetMethod!.IsInitOnly); var xBackingField = (IFieldSymbol)c.GetMember("<X>k__BackingField"); Assert.Equal("System.Int32 C.<X>k__BackingField", xBackingField.ToTestDisplayString()); Assert.True(xBackingField.IsReadOnly); } [Fact] public void RecordProperties_01_ReadonlyMismatch() { var src = @" readonly record struct C(int X) { public int X { get; set; } = X; // 1 } record struct C2(int X) { public int X { get; init; } = X; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,16): error CS8341: Auto-implemented instance properties in readonly structs must be readonly. // public int X { get; set; } = X; // 1 Diagnostic(ErrorCode.ERR_AutoPropsInRoStruct, "X").WithLocation(4, 16) ); } [Fact] public void RecordProperties_02() { var src = @" using System; record struct C(int X, int Y) { public C(int a, int b) { } public static void Main() { var c = new C(1, 2); Console.WriteLine(c.X); Console.WriteLine(c.Y); } private int X1 = X; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (5,12): error CS0111: Type 'C' already defines a member called 'C' with the same parameter types // public C(int a, int b) Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "C").WithArguments("C", "C").WithLocation(5, 12), // (5,12): error CS8862: A constructor declared in a record with parameter list must have 'this' constructor initializer. // public C(int a, int b) Diagnostic(ErrorCode.ERR_UnexpectedOrMissingConstructorInitializerInRecord, "C").WithLocation(5, 12), // (11,21): error CS0121: The call is ambiguous between the following methods or properties: 'C.C(int, int)' and 'C.C(int, int)' // var c = new C(1, 2); Diagnostic(ErrorCode.ERR_AmbigCall, "C").WithArguments("C.C(int, int)", "C.C(int, int)").WithLocation(11, 21) ); } [Fact] public void RecordProperties_03() { var src = @" using System; record struct C(int X, int Y) { public int X { get; } public static void Main() { var c = new C(1, 2); Console.WriteLine(c.X); Console.WriteLine(c.Y); } }"; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (3,15): error CS0843: Auto-implemented property 'C.X' must be fully assigned before control is returned to the caller. // record struct C(int X, int Y) Diagnostic(ErrorCode.ERR_UnassignedThisAutoProperty, "C").WithArguments("C.X").WithLocation(3, 15), // (3,21): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(int X, int Y) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(3, 21) ); } [Fact] public void RecordProperties_03_InitializedWithY() { var src = @" using System; record struct C(int X, int Y) { public int X { get; } = Y; public static void Main() { var c = new C(1, 2); Console.Write(c.X); Console.Write(c.Y); } }"; CompileAndVerify(src, expectedOutput: "22") .VerifyDiagnostics( // (3,21): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(int X, int Y) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(3, 21) ); } [Fact] public void RecordProperties_04() { var src = @" using System; record struct C(int X, int Y) { public int X { get; } = 3; public static void Main() { var c = new C(1, 2); Console.Write(c.X); Console.Write(c.Y); } }"; CompileAndVerify(src, expectedOutput: "32") .VerifyDiagnostics( // (3,21): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(int X, int Y) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(3, 21) ); } [Fact] public void RecordProperties_05() { var src = @" record struct C(int X, int X) { }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,28): error CS0100: The parameter name 'X' is a duplicate // record struct C(int X, int X) Diagnostic(ErrorCode.ERR_DuplicateParamName, "X").WithArguments("X").WithLocation(2, 28), // (2,28): error CS0102: The type 'C' already contains a definition for 'X' // record struct C(int X, int X) Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "X").WithArguments("C", "X").WithLocation(2, 28) ); var expectedMembers = new[] { "System.Int32 C.X { get; set; }", "System.Int32 C.X { get; set; }" }; AssertEx.Equal(expectedMembers, comp.GetMember<NamedTypeSymbol>("C").GetMembers().OfType<PropertySymbol>().ToTestDisplayStrings()); var expectedMemberNames = new[] { ".ctor", "<X>k__BackingField", "get_X", "set_X", "X", "<X>k__BackingField", "get_X", "set_X", "X", "ToString", "PrintMembers", "op_Inequality", "op_Equality", "GetHashCode", "Equals", "Equals", "Deconstruct", ".ctor" }; AssertEx.Equal(expectedMemberNames, comp.GetMember<NamedTypeSymbol>("C").GetPublicSymbol().MemberNames); } [Fact] public void RecordProperties_06() { var src = @" record struct C(int X, int Y) { public void get_X() { } public void set_X() { } int get_Y(int value) => value; int set_Y(int value) => value; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,21): error CS0082: Type 'C' already reserves a member called 'get_X' with the same parameter types // record struct C(int X, int Y) Diagnostic(ErrorCode.ERR_MemberReserved, "X").WithArguments("get_X", "C").WithLocation(2, 21), // (2,28): error CS0082: Type 'C' already reserves a member called 'set_Y' with the same parameter types // record struct C(int X, int Y) Diagnostic(ErrorCode.ERR_MemberReserved, "Y").WithArguments("set_Y", "C").WithLocation(2, 28) ); var actualMembers = comp.GetMember<NamedTypeSymbol>("C").GetMembers().ToTestDisplayStrings(); var expectedMembers = new[] { "C..ctor(System.Int32 X, System.Int32 Y)", "System.Int32 C.<X>k__BackingField", "readonly System.Int32 C.X.get", "void C.X.set", "System.Int32 C.X { get; set; }", "System.Int32 C.<Y>k__BackingField", "readonly System.Int32 C.Y.get", "void C.Y.set", "System.Int32 C.Y { get; set; }", "void C.get_X()", "void C.set_X()", "System.Int32 C.get_Y(System.Int32 value)", "System.Int32 C.set_Y(System.Int32 value)", "readonly System.String C.ToString()", "readonly System.Boolean C.PrintMembers(System.Text.StringBuilder builder)", "System.Boolean C.op_Inequality(C left, C right)", "System.Boolean C.op_Equality(C left, C right)", "readonly System.Int32 C.GetHashCode()", "readonly System.Boolean C.Equals(System.Object obj)", "readonly System.Boolean C.Equals(C other)", "readonly void C.Deconstruct(out System.Int32 X, out System.Int32 Y)", "C..ctor()", }; AssertEx.Equal(expectedMembers, actualMembers); } [Fact] public void RecordProperties_07() { var comp = CreateCompilation(@" record struct C1(object P, object get_P); record struct C2(object get_P, object P);"); comp.VerifyDiagnostics( // (2,25): error CS0102: The type 'C1' already contains a definition for 'get_P' // record struct C1(object P, object get_P); Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "P").WithArguments("C1", "get_P").WithLocation(2, 25), // (3,39): error CS0102: The type 'C2' already contains a definition for 'get_P' // record struct C2(object get_P, object P); Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "P").WithArguments("C2", "get_P").WithLocation(3, 39) ); } [Fact] public void RecordProperties_08() { var comp = CreateCompilation(@" record struct C1(object O1) { public object O1 { get; } = O1; public object O2 { get; } = O1; }"); comp.VerifyDiagnostics(); } [Fact] public void RecordProperties_09() { var src = @" record struct C(object P1, object P2, object P3, object P4) { class P1 { } object P2 = 2; int P3(object o) => 3; int P4<T>(T t) => 4; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,24): error CS0102: The type 'C' already contains a definition for 'P1' // record struct C(object P1, object P2, object P3, object P4) Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "P1").WithArguments("C", "P1").WithLocation(2, 24), // (2,35): warning CS8907: Parameter 'P2' is unread. Did you forget to use it to initialize the property with that name? // record struct C(object P1, object P2, object P3, object P4) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P2").WithArguments("P2").WithLocation(2, 35), // (6,9): error CS0102: The type 'C' already contains a definition for 'P3' // int P3(object o) => 3; Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "P3").WithArguments("C", "P3").WithLocation(6, 9), // (7,9): error CS0102: The type 'C' already contains a definition for 'P4' // int P4<T>(T t) => 4; Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "P4").WithArguments("C", "P4").WithLocation(7, 9) ); } [Fact] public void RecordProperties_10() { var src = @" record struct C(object P) { const int P = 4; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,24): error CS8866: Record member 'C.P' must be a readable instance property or field of type 'object' to match positional parameter 'P'. // record struct C(object P) Diagnostic(ErrorCode.ERR_BadRecordMemberForPositionalParameter, "P").WithArguments("C.P", "object", "P").WithLocation(2, 24), // (2,24): warning CS8907: Parameter 'P' is unread. Did you forget to use it to initialize the property with that name? // record struct C(object P) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P").WithArguments("P").WithLocation(2, 24) ); } [Fact] public void RecordProperties_11_UnreadPositionalParameter() { var comp = CreateCompilation(@" record struct C1(object O1, object O2, object O3) // 1, 2 { public object O1 { get; init; } public object O2 { get; init; } = M(O2); public object O3 { get; init; } = M(O3 = null); private static object M(object o) => o; } "); comp.VerifyDiagnostics( // (2,15): error CS0843: Auto-implemented property 'C1.O1' must be fully assigned before control is returned to the caller. // record struct C1(object O1, object O2, object O3) // 1, 2 Diagnostic(ErrorCode.ERR_UnassignedThisAutoProperty, "C1").WithArguments("C1.O1").WithLocation(2, 15), // (2,25): warning CS8907: Parameter 'O1' is unread. Did you forget to use it to initialize the property with that name? // record struct C1(object O1, object O2, object O3) // 1, 2 Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "O1").WithArguments("O1").WithLocation(2, 25), // (2,47): warning CS8907: Parameter 'O3' is unread. Did you forget to use it to initialize the property with that name? // record struct C1(object O1, object O2, object O3) // 1, 2 Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "O3").WithArguments("O3").WithLocation(2, 47) ); } [Fact] public void RecordProperties_11_UnreadPositionalParameter_InRefOut() { var comp = CreateCompilation(@" record struct C1(object O1, object O2, object O3) // 1 { public object O1 { get; init; } = MIn(in O1); public object O2 { get; init; } = MRef(ref O2); public object O3 { get; init; } = MOut(out O3); static object MIn(in object o) => o; static object MRef(ref object o) => o; static object MOut(out object o) => throw null; } "); comp.VerifyDiagnostics( // (2,47): warning CS8907: Parameter 'O3' is unread. Did you forget to use it to initialize the property with that name? // record struct C1(object O1, object O2, object O3) // 1 Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "O3").WithArguments("O3").WithLocation(2, 47) ); } [Fact] public void RecordProperties_SelfContainedStruct() { var comp = CreateCompilation(@" record struct C(C c); "); comp.VerifyDiagnostics( // (2,19): error CS0523: Struct member 'C.c' of type 'C' causes a cycle in the struct layout // record struct C(C c); Diagnostic(ErrorCode.ERR_StructLayoutCycle, "c").WithArguments("C.c", "C").WithLocation(2, 19) ); } [Fact] public void RecordProperties_PropertyInValueType() { var corlib_cs = @" namespace System { public class Object { public virtual bool Equals(object x) => throw null; public virtual int GetHashCode() => throw null; public virtual string ToString() => throw null; } public class Exception { } public class ValueType { public bool X { get; set; } } public class Attribute { } public class String { } public struct Void { } public struct Boolean { } public struct Char { } public struct Int32 { } public interface IEquatable<T> { } } namespace System.Collections.Generic { public abstract class EqualityComparer<T> { public static EqualityComparer<T> Default => throw null; public abstract int GetHashCode(T t); } } namespace System.Text { public class StringBuilder { public StringBuilder Append(string s) => null; public StringBuilder Append(char c) => null; public StringBuilder Append(object o) => null; } } "; var corlibRef = CreateEmptyCompilation(corlib_cs).EmitToImageReference(); { var src = @" record struct C(bool X) { bool M() { return X; } } "; var comp = CreateEmptyCompilation(src, parseOptions: TestOptions.RegularPreview, references: new[] { corlibRef }); comp.VerifyEmitDiagnostics( // (2,22): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(bool X) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(2, 22) ); Assert.Null(comp.GlobalNamespace.GetTypeMember("C").GetMember("X")); var tree = comp.SyntaxTrees.Single(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var x = tree.GetRoot().DescendantNodes().OfType<ReturnStatementSyntax>().Single().Expression; Assert.Equal("System.Boolean System.ValueType.X { get; set; }", model.GetSymbolInfo(x!).Symbol.ToTestDisplayString()); } { var src = @" readonly record struct C(bool X) { bool M() { return X; } } "; var comp = CreateEmptyCompilation(src, parseOptions: TestOptions.RegularPreview, references: new[] { corlibRef }); comp.VerifyEmitDiagnostics( // (2,31): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // readonly record struct C(bool X) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(2, 31) ); Assert.Null(comp.GlobalNamespace.GetTypeMember("C").GetMember("X")); var tree = comp.SyntaxTrees.Single(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var x = tree.GetRoot().DescendantNodes().OfType<ReturnStatementSyntax>().Single().Expression; Assert.Equal("System.Boolean System.ValueType.X { get; set; }", model.GetSymbolInfo(x!).Symbol.ToTestDisplayString()); } } [Fact] public void RecordProperties_PropertyInValueType_Static() { var corlib_cs = @" namespace System { public class Object { public virtual bool Equals(object x) => throw null; public virtual int GetHashCode() => throw null; public virtual string ToString() => throw null; } public class Exception { } public class ValueType { public static bool X { get; set; } } public class Attribute { } public class String { } public struct Void { } public struct Boolean { } public struct Char { } public struct Int32 { } public interface IEquatable<T> { } } namespace System.Collections.Generic { public abstract class EqualityComparer<T> { public static EqualityComparer<T> Default => throw null; public abstract int GetHashCode(T t); } } namespace System.Text { public class StringBuilder { public StringBuilder Append(string s) => null; public StringBuilder Append(char c) => null; public StringBuilder Append(object o) => null; } } "; var corlibRef = CreateEmptyCompilation(corlib_cs).EmitToImageReference(); var src = @" record struct C(bool X) { bool M() { return X; } } "; var comp = CreateEmptyCompilation(src, parseOptions: TestOptions.RegularPreview, references: new[] { corlibRef }); comp.VerifyEmitDiagnostics( // (2,22): error CS8866: Record member 'System.ValueType.X' must be a readable instance property or field of type 'bool' to match positional parameter 'X'. // record struct C(bool X) Diagnostic(ErrorCode.ERR_BadRecordMemberForPositionalParameter, "X").WithArguments("System.ValueType.X", "bool", "X").WithLocation(2, 22), // (2,22): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(bool X) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(2, 22) ); } [Fact] public void StaticCtor() { var src = @" record R(int x) { static void Main() { } static R() { System.Console.Write(""static ctor""); } } "; var comp = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.DebugExe); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "static ctor", verify: Verification.Skipped /* init-only */); } [Fact] public void StaticCtor_ParameterlessPrimaryCtor() { var src = @" record struct R(int I) { static R() { } } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); } [Fact] public void StaticCtor_CopyCtor() { var src = @" record struct R(int I) { static R(R r) { } } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,12): error CS0132: 'R.R(R)': a static constructor must be parameterless // static R(R r) { } Diagnostic(ErrorCode.ERR_StaticConstParam, "R").WithArguments("R.R(R)").WithLocation(4, 12) ); } [Fact] public void InterfaceImplementation_NotReadonly() { var source = @" I r = new R(42); r.P2 = 43; r.P3 = 44; System.Console.Write((r.P1, r.P2, r.P3)); interface I { int P1 { get; set; } int P2 { get; set; } int P3 { get; set; } } record struct R(int P1) : I { public int P2 { get; set; } = 0; int I.P3 { get; set; } = 0; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "(42, 43, 44)"); } [Fact] public void InterfaceImplementation_NotReadonly_InitOnlyInterface() { var source = @" interface I { int P1 { get; init; } } record struct R(int P1) : I; "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (6,27): error CS8854: 'R' does not implement interface member 'I.P1.init'. 'R.P1.set' cannot implement 'I.P1.init'. // record struct R(int P1) : I; Diagnostic(ErrorCode.ERR_CloseUnimplementedInterfaceMemberWrongInitOnly, "I").WithArguments("R", "I.P1.init", "R.P1.set").WithLocation(6, 27) ); } [Fact] public void InterfaceImplementation_Readonly() { var source = @" I r = new R(42) { P2 = 43 }; System.Console.Write((r.P1, r.P2)); interface I { int P1 { get; init; } int P2 { get; init; } } readonly record struct R(int P1) : I { public int P2 { get; init; } = 0; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "(42, 43)", verify: Verification.Skipped /* init-only */); } [Fact] public void InterfaceImplementation_Readonly_SetInterface() { var source = @" interface I { int P1 { get; set; } } readonly record struct R(int P1) : I; "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (6,36): error CS8854: 'R' does not implement interface member 'I.P1.set'. 'R.P1.init' cannot implement 'I.P1.set'. // readonly record struct R(int P1) : I; Diagnostic(ErrorCode.ERR_CloseUnimplementedInterfaceMemberWrongInitOnly, "I").WithArguments("R", "I.P1.set", "R.P1.init").WithLocation(6, 36) ); } [Fact] public void InterfaceImplementation_Readonly_PrivateImplementation() { var source = @" I r = new R(42) { P2 = 43, P3 = 44 }; System.Console.Write((r.P1, r.P2, r.P3)); interface I { int P1 { get; init; } int P2 { get; init; } int P3 { get; init; } } readonly record struct R(int P1) : I { public int P2 { get; init; } = 0; int I.P3 { get; init; } = 0; // not practically initializable } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (2,28): error CS0117: 'R' does not contain a definition for 'P3' // I r = new R(42) { P2 = 43, P3 = 44 }; Diagnostic(ErrorCode.ERR_NoSuchMember, "P3").WithArguments("R", "P3").WithLocation(2, 28) ); } [Fact] public void Initializers_01() { var src = @" using System; record struct C(int X) { int Z = X + 1; public static void Main() { var c = new C(1); Console.WriteLine(c.Z); } }"; var verifier = CompileAndVerify(src, expectedOutput: @"2").VerifyDiagnostics(); var comp = CreateCompilation(src); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree); var x = tree.GetRoot().DescendantNodes().OfType<IdentifierNameSyntax>().Where(id => id.Identifier.ValueText == "X").First(); Assert.Equal("= X + 1", x.Parent!.Parent!.ToString()); var symbol = model.GetSymbolInfo(x).Symbol; Assert.Equal(SymbolKind.Parameter, symbol!.Kind); Assert.Equal("System.Int32 X", symbol.ToTestDisplayString()); Assert.Equal("C..ctor(System.Int32 X)", symbol.ContainingSymbol.ToTestDisplayString()); Assert.Equal("System.Int32 C.Z", model.GetEnclosingSymbol(x.SpanStart).ToTestDisplayString()); Assert.Contains(symbol, model.LookupSymbols(x.SpanStart, name: "X")); Assert.Contains("X", model.LookupNames(x.SpanStart)); var recordDeclaration = tree.GetRoot().DescendantNodes().OfType<RecordDeclarationSyntax>().Single(); Assert.Equal("C", recordDeclaration.Identifier.ValueText); Assert.Null(model.GetOperation(recordDeclaration)); } [Fact] public void Initializers_02() { var src = @" record struct C(int X) { static int Z = X + 1; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (4,20): error CS0236: A field initializer cannot reference the non-static field, method, or property 'C.X' // static int Z = X + 1; Diagnostic(ErrorCode.ERR_FieldInitRefNonstatic, "X").WithArguments("C.X").WithLocation(4, 20) ); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree); var x = tree.GetRoot().DescendantNodes().OfType<IdentifierNameSyntax>().Where(id => id.Identifier.ValueText == "X").First(); Assert.Equal("= X + 1", x.Parent!.Parent!.ToString()); var symbol = model.GetSymbolInfo(x).Symbol; Assert.Equal(SymbolKind.Property, symbol!.Kind); Assert.Equal("System.Int32 C.X { get; set; }", symbol.ToTestDisplayString()); Assert.Equal("C", symbol.ContainingSymbol.ToTestDisplayString()); Assert.Equal("System.Int32 C.Z", model.GetEnclosingSymbol(x.SpanStart).ToTestDisplayString()); Assert.Contains(symbol, model.LookupSymbols(x.SpanStart, name: "X")); Assert.Contains("X", model.LookupNames(x.SpanStart)); } [Fact] public void Initializers_03() { var src = @" record struct C(int X) { const int Z = X + 1; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (4,19): error CS0236: A field initializer cannot reference the non-static field, method, or property 'C.X' // const int Z = X + 1; Diagnostic(ErrorCode.ERR_FieldInitRefNonstatic, "X").WithArguments("C.X").WithLocation(4, 19) ); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree); var x = tree.GetRoot().DescendantNodes().OfType<IdentifierNameSyntax>().Where(id => id.Identifier.ValueText == "X").First(); Assert.Equal("= X + 1", x.Parent!.Parent!.ToString()); var symbol = model.GetSymbolInfo(x).Symbol; Assert.Equal(SymbolKind.Property, symbol!.Kind); Assert.Equal("System.Int32 C.X { get; set; }", symbol.ToTestDisplayString()); Assert.Equal("C", symbol.ContainingSymbol.ToTestDisplayString()); Assert.Equal("System.Int32 C.Z", model.GetEnclosingSymbol(x.SpanStart).ToTestDisplayString()); Assert.Contains(symbol, model.LookupSymbols(x.SpanStart, name: "X")); Assert.Contains("X", model.LookupNames(x.SpanStart)); } [Fact] public void Initializers_04() { var src = @" using System; record struct C(int X) { Func<int> Z = () => X + 1; public static void Main() { var c = new C(1); Console.WriteLine(c.Z()); } }"; var verifier = CompileAndVerify(src, expectedOutput: @"2").VerifyDiagnostics(); var comp = CreateCompilation(src); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree); var x = tree.GetRoot().DescendantNodes().OfType<IdentifierNameSyntax>().Where(id => id.Identifier.ValueText == "X").First(); Assert.Equal("() => X + 1", x.Parent!.Parent!.ToString()); var symbol = model.GetSymbolInfo(x).Symbol; Assert.Equal(SymbolKind.Parameter, symbol!.Kind); Assert.Equal("System.Int32 X", symbol.ToTestDisplayString()); Assert.Equal("C..ctor(System.Int32 X)", symbol.ContainingSymbol.ToTestDisplayString()); Assert.Equal("lambda expression", model.GetEnclosingSymbol(x.SpanStart).ToTestDisplayString()); Assert.Contains(symbol, model.LookupSymbols(x.SpanStart, name: "X")); Assert.Contains("X", model.LookupNames(x.SpanStart)); } [Fact] public void SynthesizedRecordPointerProperty() { var src = @" record struct R(int P1, int* P2, delegate*<int> P3);"; var comp = CreateCompilation(src); var p = comp.GlobalNamespace.GetTypeMember("R").GetMember<SourcePropertySymbolBase>("P1"); Assert.False(p.HasPointerType); p = comp.GlobalNamespace.GetTypeMember("R").GetMember<SourcePropertySymbolBase>("P2"); Assert.True(p.HasPointerType); p = comp.GlobalNamespace.GetTypeMember("R").GetMember<SourcePropertySymbolBase>("P3"); Assert.True(p.HasPointerType); } [Fact] public void PositionalMemberModifiers_In() { var src = @" var r = new R(42); int i = 43; var r2 = new R(in i); System.Console.Write((r.P1, r2.P1)); record struct R(in int P1); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "(42, 43)"); var actualMembers = comp.GetMember<NamedTypeSymbol>("R").Constructors.ToTestDisplayStrings(); var expectedMembers = new[] { "R..ctor(in System.Int32 P1)", "R..ctor()" }; AssertEx.Equal(expectedMembers, actualMembers); } [Fact] public void PositionalMemberModifiers_Params() { var src = @" var r = new R(42, 43); var r2 = new R(new[] { 44, 45 }); System.Console.Write((r.Array[0], r.Array[1], r2.Array[0], r2.Array[1])); record struct R(params int[] Array); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "(42, 43, 44, 45)"); var actualMembers = comp.GetMember<NamedTypeSymbol>("R").Constructors.ToTestDisplayStrings(); var expectedMembers = new[] { "R..ctor(params System.Int32[] Array)", "R..ctor()" }; AssertEx.Equal(expectedMembers, actualMembers); } [Fact] public void PositionalMemberDefaultValue() { var src = @" var r = new R(); // This uses the parameterless constructor System.Console.Write(r.P); record struct R(int P = 42); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "0"); } [Fact] public void PositionalMemberDefaultValue_PassingOneArgument() { var src = @" var r = new R(41); System.Console.Write(r.O); System.Console.Write("" ""); System.Console.Write(r.P); record struct R(int O, int P = 42); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "41 42"); } [Fact] public void PositionalMemberDefaultValue_AndPropertyWithInitializer() { var src = @" var r = new R(0); System.Console.Write(r.P); record struct R(int O, int P = 1) { public int P { get; init; } = 42; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (5,28): warning CS8907: Parameter 'P' is unread. Did you forget to use it to initialize the property with that name? // record struct R(int O, int P = 1) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P").WithArguments("P").WithLocation(5, 28) ); var verifier = CompileAndVerify(comp, expectedOutput: "42", verify: Verification.Skipped /* init-only */); verifier.VerifyIL("R..ctor(int, int)", @" { // Code size 16 (0x10) .maxstack 2 IL_0000: ldarg.0 IL_0001: ldarg.1 IL_0002: stfld ""int R.<O>k__BackingField"" IL_0007: ldarg.0 IL_0008: ldc.i4.s 42 IL_000a: stfld ""int R.<P>k__BackingField"" IL_000f: ret }"); } [Fact] public void PositionalMemberDefaultValue_AndPropertyWithoutInitializer() { var src = @" record struct R(int P = 42) { public int P { get; init; } public static void Main() { var r = new R(); System.Console.Write(r.P); } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,15): error CS0843: Auto-implemented property 'R.P' must be fully assigned before control is returned to the caller. // record struct R(int P = 42) Diagnostic(ErrorCode.ERR_UnassignedThisAutoProperty, "R").WithArguments("R.P").WithLocation(2, 15), // (2,21): warning CS8907: Parameter 'P' is unread. Did you forget to use it to initialize the property with that name? // record struct R(int P = 42) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "P").WithArguments("P").WithLocation(2, 21) ); } [Fact] public void PositionalMemberDefaultValue_AndPropertyWithInitializer_CopyingParameter() { var src = @" var r = new R(0); System.Console.Write(r.P); record struct R(int O, int P = 42) { public int P { get; init; } = P; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42", verify: Verification.Skipped /* init-only */); verifier.VerifyIL("R..ctor(int, int)", @" { // Code size 15 (0xf) .maxstack 2 IL_0000: ldarg.0 IL_0001: ldarg.1 IL_0002: stfld ""int R.<O>k__BackingField"" IL_0007: ldarg.0 IL_0008: ldarg.2 IL_0009: stfld ""int R.<P>k__BackingField"" IL_000e: ret }"); } [Fact] public void RecordWithConstraints_NullableWarning() { var src = @" #nullable enable var r = new R<string?>(""R""); var r2 = new R2<string?>(""R2""); System.Console.Write((r.P, r2.P)); record struct R<T>(T P) where T : class; record struct R2<T>(T P) where T : class { } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (3,15): warning CS8634: The type 'string?' cannot be used as type parameter 'T' in the generic type or method 'R<T>'. Nullability of type argument 'string?' doesn't match 'class' constraint. // var r = new R<string?>("R"); Diagnostic(ErrorCode.WRN_NullabilityMismatchInTypeParameterReferenceTypeConstraint, "string?").WithArguments("R<T>", "T", "string?").WithLocation(3, 15), // (4,17): warning CS8634: The type 'string?' cannot be used as type parameter 'T' in the generic type or method 'R2<T>'. Nullability of type argument 'string?' doesn't match 'class' constraint. // var r2 = new R2<string?>("R2"); Diagnostic(ErrorCode.WRN_NullabilityMismatchInTypeParameterReferenceTypeConstraint, "string?").WithArguments("R2<T>", "T", "string?").WithLocation(4, 17) ); CompileAndVerify(comp, expectedOutput: "(R, R2)"); } [Fact] public void RecordWithConstraints_ConstraintError() { var src = @" record struct R<T>(T P) where T : class; record struct R2<T>(T P) where T : class { } public class C { public static void Main() { _ = new R<int>(1); _ = new R2<int>(2); } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (9,19): error CS0452: The type 'int' must be a reference type in order to use it as parameter 'T' in the generic type or method 'R<T>' // _ = new R<int>(1); Diagnostic(ErrorCode.ERR_RefConstraintNotSatisfied, "int").WithArguments("R<T>", "T", "int").WithLocation(9, 19), // (10,20): error CS0452: The type 'int' must be a reference type in order to use it as parameter 'T' in the generic type or method 'R2<T>' // _ = new R2<int>(2); Diagnostic(ErrorCode.ERR_RefConstraintNotSatisfied, "int").WithArguments("R2<T>", "T", "int").WithLocation(10, 20) ); } [Fact] public void CyclicBases4() { var text = @" record struct A<T> : B<A<T>> { } record struct B<T> : A<B<T>> { A<T> F() { return null; } } "; var comp = CreateCompilation(text); comp.GetDeclarationDiagnostics().Verify( // (3,22): error CS0527: Type 'A<B<T>>' in interface list is not an interface // record struct B<T> : A<B<T>> Diagnostic(ErrorCode.ERR_NonInterfaceInInterfaceList, "A<B<T>>").WithArguments("A<B<T>>").WithLocation(3, 22), // (2,22): error CS0527: Type 'B<A<T>>' in interface list is not an interface // record struct A<T> : B<A<T>> { } Diagnostic(ErrorCode.ERR_NonInterfaceInInterfaceList, "B<A<T>>").WithArguments("B<A<T>>").WithLocation(2, 22) ); } [Fact] public void PartialClassWithDifferentTupleNamesInImplementedInterfaces() { var source = @" public interface I<T> { } public partial record C1 : I<(int a, int b)> { } public partial record C1 : I<(int notA, int notB)> { } public partial record C2 : I<(int a, int b)> { } public partial record C2 : I<(int, int)> { } public partial record C3 : I<(int a, int b)> { } public partial record C3 : I<(int a, int b)> { } public partial record C4 : I<(int a, int b)> { } public partial record C4 : I<(int b, int a)> { } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (3,23): error CS8140: 'I<(int notA, int notB)>' is already listed in the interface list on type 'C1' with different tuple element names, as 'I<(int a, int b)>'. // public partial record C1 : I<(int a, int b)> { } Diagnostic(ErrorCode.ERR_DuplicateInterfaceWithTupleNamesInBaseList, "C1").WithArguments("I<(int notA, int notB)>", "I<(int a, int b)>", "C1").WithLocation(3, 23), // (6,23): error CS8140: 'I<(int, int)>' is already listed in the interface list on type 'C2' with different tuple element names, as 'I<(int a, int b)>'. // public partial record C2 : I<(int a, int b)> { } Diagnostic(ErrorCode.ERR_DuplicateInterfaceWithTupleNamesInBaseList, "C2").WithArguments("I<(int, int)>", "I<(int a, int b)>", "C2").WithLocation(6, 23), // (12,23): error CS8140: 'I<(int b, int a)>' is already listed in the interface list on type 'C4' with different tuple element names, as 'I<(int a, int b)>'. // public partial record C4 : I<(int a, int b)> { } Diagnostic(ErrorCode.ERR_DuplicateInterfaceWithTupleNamesInBaseList, "C4").WithArguments("I<(int b, int a)>", "I<(int a, int b)>", "C4").WithLocation(12, 23) ); } [Fact] public void CS0267ERR_PartialMisplaced() { var test = @" partial public record struct C // CS0267 { } "; CreateCompilation(test).VerifyDiagnostics( // (2,1): error CS0267: The 'partial' modifier can only appear immediately before 'class', 'record', 'struct', 'interface', or a method return type. // partial public record struct C // CS0267 Diagnostic(ErrorCode.ERR_PartialMisplaced, "partial").WithLocation(2, 1) ); } [Fact] public void SealedStaticRecord() { var source = @" sealed static record struct R; "; CreateCompilation(source).VerifyDiagnostics( // (2,29): error CS0106: The modifier 'sealed' is not valid for this item // sealed static record struct R; Diagnostic(ErrorCode.ERR_BadMemberFlag, "R").WithArguments("sealed").WithLocation(2, 29), // (2,29): error CS0106: The modifier 'static' is not valid for this item // sealed static record struct R; Diagnostic(ErrorCode.ERR_BadMemberFlag, "R").WithArguments("static").WithLocation(2, 29) ); } [Fact] public void CS0513ERR_AbstractInConcreteClass02() { var text = @" record struct C { public abstract event System.Action E; public abstract int this[int x] { get; set; } } "; CreateCompilation(text).VerifyDiagnostics( // (5,25): error CS0106: The modifier 'abstract' is not valid for this item // public abstract int this[int x] { get; set; } Diagnostic(ErrorCode.ERR_BadMemberFlag, "this").WithArguments("abstract").WithLocation(5, 25), // (4,41): error CS0106: The modifier 'abstract' is not valid for this item // public abstract event System.Action E; Diagnostic(ErrorCode.ERR_BadMemberFlag, "E").WithArguments("abstract").WithLocation(4, 41) ); } [Fact] public void CS0574ERR_BadDestructorName() { var test = @" public record struct iii { ~iiii(){} } "; CreateCompilation(test).VerifyDiagnostics( // (4,6): error CS0574: Name of destructor must match name of type // ~iiii(){} Diagnostic(ErrorCode.ERR_BadDestructorName, "iiii").WithLocation(4, 6), // (4,6): error CS0575: Only class types can contain destructors // ~iiii(){} Diagnostic(ErrorCode.ERR_OnlyClassesCanContainDestructors, "iiii").WithArguments("iii.~iii()").WithLocation(4, 6) ); } [Fact] public void StaticRecordWithConstructorAndDestructor() { var text = @" static record struct R(int I) { public R() : this(0) { } ~R() { } } "; var comp = CreateCompilation(text); comp.VerifyDiagnostics( // (2,22): error CS0106: The modifier 'static' is not valid for this item // static record struct R(int I) Diagnostic(ErrorCode.ERR_BadMemberFlag, "R").WithArguments("static").WithLocation(2, 22), // (5,6): error CS0575: Only class types can contain destructors // ~R() { } Diagnostic(ErrorCode.ERR_OnlyClassesCanContainDestructors, "R").WithArguments("R.~R()").WithLocation(5, 6) ); } [Fact] public void RecordWithPartialMethodExplicitImplementation() { var source = @"record struct R { partial void M(); }"; CreateCompilation(source).VerifyDiagnostics( // (3,18): error CS0751: A partial method must be declared within a partial type // partial void M(); Diagnostic(ErrorCode.ERR_PartialMethodOnlyInPartialClass, "M").WithLocation(3, 18) ); } [Fact] public void RecordWithPartialMethodRequiringBody() { var source = @"partial record struct R { public partial int M(); }"; CreateCompilation(source).VerifyDiagnostics( // (3,24): error CS8795: Partial method 'R.M()' must have an implementation part because it has accessibility modifiers. // public partial int M(); Diagnostic(ErrorCode.ERR_PartialMethodWithAccessibilityModsMustHaveImplementation, "M").WithArguments("R.M()").WithLocation(3, 24) ); } [Fact] public void CanDeclareIteratorInRecord() { var source = @" using System.Collections.Generic; foreach(var i in new X(42).GetItems()) { System.Console.Write(i); } public record struct X(int a) { public IEnumerable<int> GetItems() { yield return a; yield return a + 1; } }"; var comp = CreateCompilation(source).VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "4243"); } [Fact] public void ParameterlessConstructor() { var src = @" System.Console.Write(new C().Property); record struct C() { public int Property { get; set; } = 42; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "42"); } [Fact] public void XmlDoc() { var src = @" /// <summary>Summary</summary> /// <param name=""I1"">Description for I1</param> public record struct C(int I1); namespace System.Runtime.CompilerServices { /// <summary>Ignored</summary> public static class IsExternalInit { } } "; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularWithDocumentationComments); comp.VerifyDiagnostics(); var cMember = comp.GetMember<NamedTypeSymbol>("C"); Assert.Equal( @"<member name=""T:C""> <summary>Summary</summary> <param name=""I1"">Description for I1</param> </member> ", cMember.GetDocumentationCommentXml()); var constructor = cMember.GetMembers(".ctor").OfType<SynthesizedRecordConstructor>().Single(); Assert.Equal( @"<member name=""M:C.#ctor(System.Int32)""> <summary>Summary</summary> <param name=""I1"">Description for I1</param> </member> ", constructor.GetDocumentationCommentXml()); Assert.Equal("", constructor.GetParameters()[0].GetDocumentationCommentXml()); var property = cMember.GetMembers("I1").Single(); Assert.Equal("", property.GetDocumentationCommentXml()); } [Fact] public void XmlDoc_Cref() { var src = @" /// <summary>Summary</summary> /// <param name=""I1"">Description for <see cref=""I1""/></param> public record struct C(int I1) { /// <summary>Summary</summary> /// <param name=""x"">Description for <see cref=""x""/></param> public void M(int x) { } } namespace System.Runtime.CompilerServices { /// <summary>Ignored</summary> public static class IsExternalInit { } } "; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularWithDocumentationComments); comp.VerifyDiagnostics( // (7,52): warning CS1574: XML comment has cref attribute 'x' that could not be resolved // /// <param name="x">Description for <see cref="x"/></param> Diagnostic(ErrorCode.WRN_BadXMLRef, "x").WithArguments("x").WithLocation(7, 52) ); var tree = comp.SyntaxTrees.Single(); var docComments = tree.GetCompilationUnitRoot().DescendantTrivia().Select(trivia => trivia.GetStructure()).OfType<DocumentationCommentTriviaSyntax>(); var cref = docComments.First().DescendantNodes().OfType<XmlCrefAttributeSyntax>().First().Cref; Assert.Equal("I1", cref.ToString()); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); Assert.Equal(SymbolKind.Property, model.GetSymbolInfo(cref).Symbol!.Kind); } [Fact] public void Deconstruct_Simple() { var source = @"using System; record struct B(int X, int Y) { public static void Main() { M(new B(1, 2)); } static void M(B b) { switch (b) { case B(int x, int y): Console.Write(x); Console.Write(y); break; } } }"; var verifier = CompileAndVerify(source, expectedOutput: "12"); verifier.VerifyDiagnostics(); verifier.VerifyIL("B.Deconstruct", @" { // Code size 17 (0x11) .maxstack 2 IL_0000: ldarg.1 IL_0001: ldarg.0 IL_0002: call ""readonly int B.X.get"" IL_0007: stind.i4 IL_0008: ldarg.2 IL_0009: ldarg.0 IL_000a: call ""readonly int B.Y.get"" IL_000f: stind.i4 IL_0010: ret }"); var deconstruct = ((CSharpCompilation)verifier.Compilation).GetMember<MethodSymbol>("B.Deconstruct"); Assert.Equal(2, deconstruct.ParameterCount); Assert.Equal(RefKind.Out, deconstruct.Parameters[0].RefKind); Assert.Equal("X", deconstruct.Parameters[0].Name); Assert.Equal(RefKind.Out, deconstruct.Parameters[1].RefKind); Assert.Equal("Y", deconstruct.Parameters[1].Name); Assert.True(deconstruct.ReturnsVoid); Assert.False(deconstruct.IsVirtual); Assert.False(deconstruct.IsStatic); Assert.Equal(Accessibility.Public, deconstruct.DeclaredAccessibility); } [Fact] public void Deconstruct_PositionalAndNominalProperty() { var source = @"using System; record struct B(int X) { public int Y { get; init; } = 0; public static void Main() { M(new B(1)); } static void M(B b) { switch (b) { case B(int x): Console.Write(x); break; } } }"; var verifier = CompileAndVerify(source, expectedOutput: "1"); verifier.VerifyDiagnostics(); Assert.Equal( "readonly void B.Deconstruct(out System.Int32 X)", verifier.Compilation.GetMember("B.Deconstruct").ToTestDisplayString(includeNonNullable: false)); } [Fact] public void Deconstruct_Nested() { var source = @"using System; record struct B(int X, int Y); record struct C(B B, int Z) { public static void Main() { M(new C(new B(1, 2), 3)); } static void M(C c) { switch (c) { case C(B(int x, int y), int z): Console.Write(x); Console.Write(y); Console.Write(z); break; } } } "; var verifier = CompileAndVerify(source, expectedOutput: "123"); verifier.VerifyDiagnostics(); verifier.VerifyIL("B.Deconstruct", @" { // Code size 17 (0x11) .maxstack 2 IL_0000: ldarg.1 IL_0001: ldarg.0 IL_0002: call ""readonly int B.X.get"" IL_0007: stind.i4 IL_0008: ldarg.2 IL_0009: ldarg.0 IL_000a: call ""readonly int B.Y.get"" IL_000f: stind.i4 IL_0010: ret }"); verifier.VerifyIL("C.Deconstruct", @" { // Code size 21 (0x15) .maxstack 2 IL_0000: ldarg.1 IL_0001: ldarg.0 IL_0002: call ""readonly B C.B.get"" IL_0007: stobj ""B"" IL_000c: ldarg.2 IL_000d: ldarg.0 IL_000e: call ""readonly int C.Z.get"" IL_0013: stind.i4 IL_0014: ret }"); } [Fact] public void Deconstruct_PropertyCollision() { var source = @"using System; record struct B(int X, int Y) { public int X => 3; static void M(B b) { switch (b) { case B(int x, int y): Console.Write(x); Console.Write(y); break; } } static void Main() { M(new B(1, 2)); } } "; var verifier = CompileAndVerify(source, expectedOutput: "32"); verifier.VerifyDiagnostics( // (3,21): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct B(int X, int Y) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(3, 21) ); Assert.Equal( "void B.Deconstruct(out System.Int32 X, out System.Int32 Y)", verifier.Compilation.GetMember("B.Deconstruct").ToTestDisplayString(includeNonNullable: false)); } [Fact] public void Deconstruct_MethodCollision_01() { var source = @" record struct B(int X, int Y) { public int X() => 3; static void M(B b) { switch (b) { case B(int x, int y): break; } } static void Main() { M(new B(1, 2)); } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (4,16): error CS0102: The type 'B' already contains a definition for 'X' // public int X() => 3; Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "X").WithArguments("B", "X").WithLocation(4, 16) ); Assert.Equal( "readonly void B.Deconstruct(out System.Int32 X, out System.Int32 Y)", comp.GetMember("B.Deconstruct").ToTestDisplayString(includeNonNullable: false)); } [Fact] public void Deconstruct_FieldCollision() { var source = @" using System; record struct C(int X) { int X = 0; static void M(C c) { switch (c) { case C(int x): Console.Write(x); break; } } static void Main() { M(new C(0)); } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (4,21): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(int X) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(4, 21), // (6,9): warning CS0414: The field 'C.X' is assigned but its value is never used // int X = 0; Diagnostic(ErrorCode.WRN_UnreferencedFieldAssg, "X").WithArguments("C.X").WithLocation(6, 9)); Assert.Equal( "readonly void C.Deconstruct(out System.Int32 X)", comp.GetMember("C.Deconstruct").ToTestDisplayString(includeNonNullable: false)); } [Fact] public void Deconstruct_Empty() { var source = @" record struct C { static void M(C c) { switch (c) { case C(): break; } } static void Main() { M(new C()); } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (8,19): error CS1061: 'C' does not contain a definition for 'Deconstruct' and no accessible extension method 'Deconstruct' accepting a first argument of type 'C' could be found (are you missing a using directive or an assembly reference?) // case C(): Diagnostic(ErrorCode.ERR_NoSuchMemberOrExtension, "()").WithArguments("C", "Deconstruct").WithLocation(8, 19), // (8,19): error CS8129: No suitable 'Deconstruct' instance or extension method was found for type 'C', with 0 out parameters and a void return type. // case C(): Diagnostic(ErrorCode.ERR_MissingDeconstruct, "()").WithArguments("C", "0").WithLocation(8, 19)); Assert.Null(comp.GetMember("C.Deconstruct")); } [Fact] public void Deconstruct_Conversion_02() { var source = @" #nullable enable using System; record struct C(string? X, string Y) { public string X { get; init; } = null!; public string? Y { get; init; } = string.Empty; static void M(C c) { switch (c) { case C(var x, string y): Console.Write(x); Console.Write(y); break; } } static void Main() { M(new C(""a"", ""b"")); } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (5,25): warning CS8907: Parameter 'X' is unread. Did you forget to use it to initialize the property with that name? // record struct C(string? X, string Y) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "X").WithArguments("X").WithLocation(5, 25), // (5,35): warning CS8907: Parameter 'Y' is unread. Did you forget to use it to initialize the property with that name? // record struct C(string? X, string Y) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "Y").WithArguments("Y").WithLocation(5, 35) ); Assert.Equal( "readonly void C.Deconstruct(out System.String? X, out System.String Y)", comp.GetMember("C.Deconstruct").ToTestDisplayString(includeNonNullable: false)); } [Fact] public void Deconstruct_Empty_WithParameterList() { var source = @" record struct C() { static void M(C c) { switch (c) { case C(): break; } } static void Main() { M(new C()); } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (8,19): error CS1061: 'C' does not contain a definition for 'Deconstruct' and no accessible extension method 'Deconstruct' accepting a first argument of type 'C' could be found (are you missing a using directive or an assembly reference?) // case C(): Diagnostic(ErrorCode.ERR_NoSuchMemberOrExtension, "()").WithArguments("C", "Deconstruct").WithLocation(8, 19), // (8,19): error CS8129: No suitable 'Deconstruct' instance or extension method was found for type 'C', with 0 out parameters and a void return type. // case C(): Diagnostic(ErrorCode.ERR_MissingDeconstruct, "()").WithArguments("C", "0").WithLocation(8, 19)); AssertEx.Equal(new[] { "C..ctor()", "void C.M(C c)", "void C.Main()", "readonly System.String C.ToString()", "readonly System.Boolean C.PrintMembers(System.Text.StringBuilder builder)", "System.Boolean C.op_Inequality(C left, C right)", "System.Boolean C.op_Equality(C left, C right)", "readonly System.Int32 C.GetHashCode()", "readonly System.Boolean C.Equals(System.Object obj)", "readonly System.Boolean C.Equals(C other)" }, comp.GetMember<NamedTypeSymbol>("C").GetMembers().ToTestDisplayStrings()); } [Fact] public void Deconstruct_Empty_WithParameterList_UserDefined_01() { var source = @"using System; record struct C(int I) { public void Deconstruct() { } static void M(C c) { switch (c) { case C(): Console.Write(12); break; } } public static void Main() { M(new C(42)); } } "; var verifier = CompileAndVerify(source, expectedOutput: "12"); verifier.VerifyDiagnostics(); } [Fact] public void Deconstruct_GeneratedAsReadOnly() { var src = @" record struct A(int I, string S); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var method = comp.GetMember<SynthesizedRecordDeconstruct>("A.Deconstruct"); Assert.True(method.IsDeclaredReadOnly); } [Fact] public void Deconstruct_WihtNonReadOnlyGetter_GeneratedAsNonReadOnly() { var src = @" record struct A(int I, string S) { public int I { get => 0; } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,21): warning CS8907: Parameter 'I' is unread. Did you forget to use it to initialize the property with that name? // record struct A(int I, string S) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "I").WithArguments("I").WithLocation(2, 21)); var method = comp.GetMember<SynthesizedRecordDeconstruct>("A.Deconstruct"); Assert.False(method.IsDeclaredReadOnly); } [Fact] public void Deconstruct_UserDefined() { var source = @"using System; record struct B(int X, int Y) { public void Deconstruct(out int X, out int Y) { X = this.X + 1; Y = this.Y + 2; } static void M(B b) { switch (b) { case B(int x, int y): Console.Write(x); Console.Write(y); break; } } public static void Main() { M(new B(0, 0)); } } "; var verifier = CompileAndVerify(source, expectedOutput: "12"); verifier.VerifyDiagnostics(); } [Fact] public void Deconstruct_UserDefined_DifferentSignature_02() { var source = @"using System; record struct B(int X) { public int Deconstruct(out int a) => throw null; static void M(B b) { switch (b) { case B(int x): Console.Write(x); break; } } public static void Main() { M(new B(1)); } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (5,16): error CS8874: Record member 'B.Deconstruct(out int)' must return 'void'. // public int Deconstruct(out int a) => throw null; Diagnostic(ErrorCode.ERR_SignatureMismatchInRecord, "Deconstruct").WithArguments("B.Deconstruct(out int)", "void").WithLocation(5, 16), // (11,19): error CS8129: No suitable 'Deconstruct' instance or extension method was found for type 'B', with 1 out parameters and a void return type. // case B(int x): Diagnostic(ErrorCode.ERR_MissingDeconstruct, "(int x)").WithArguments("B", "1").WithLocation(11, 19)); Assert.Equal("System.Int32 B.Deconstruct(out System.Int32 a)", comp.GetMember("B.Deconstruct").ToTestDisplayString(includeNonNullable: false)); } [Theory] [InlineData("")] [InlineData("private")] [InlineData("internal")] public void Deconstruct_UserDefined_Accessibility_07(string accessibility) { var source = $@" record struct A(int X) {{ { accessibility } void Deconstruct(out int a) => throw null; }} "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,11): error CS8873: Record member 'A.Deconstruct(out int)' must be public. // void Deconstruct(out int a) Diagnostic(ErrorCode.ERR_NonPublicAPIInRecord, "Deconstruct").WithArguments("A.Deconstruct(out int)").WithLocation(4, 11 + accessibility.Length) ); } [Fact] public void Deconstruct_UserDefined_Static_08() { var source = @" record struct A(int X) { public static void Deconstruct(out int a) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,24): error CS8877: Record member 'A.Deconstruct(out int)' may not be static. // public static void Deconstruct(out int a) Diagnostic(ErrorCode.ERR_StaticAPIInRecord, "Deconstruct").WithArguments("A.Deconstruct(out int)").WithLocation(4, 24) ); } [Fact] public void OutVarInPositionalParameterDefaultValue() { var source = @" record struct A(int X = A.M(out int a) + a) { public static int M(out int a) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (2,25): error CS1736: Default parameter value for 'X' must be a compile-time constant // record struct A(int X = A.M(out int a) + a) Diagnostic(ErrorCode.ERR_DefaultValueMustBeConstant, "A.M(out int a) + a").WithArguments("X").WithLocation(2, 25) ); } [Fact] public void FieldConsideredUnassignedIfInitializationViaProperty() { var source = @" record struct Pos(int X) { private int x; public int X { get { return x; } set { x = value; } } = X; } record struct Pos2(int X) { private int x = X; // value isn't validated by setter public int X { get { return x; } set { x = value; } } } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (2,15): error CS0171: Field 'Pos.x' must be fully assigned before control is returned to the caller // record struct Pos(int X) Diagnostic(ErrorCode.ERR_UnassignedThis, "Pos").WithArguments("Pos.x").WithLocation(2, 15), // (5,16): error CS8050: Only auto-implemented properties can have initializers. // public int X { get { return x; } set { x = value; } } = X; Diagnostic(ErrorCode.ERR_InitializerOnNonAutoProperty, "X").WithArguments("Pos.X").WithLocation(5, 16) ); } [Fact] public void IEquatableT_01() { var source = @"record struct A<T>; class Program { static void F<T>(System.IEquatable<T> t) { } static void M<T>() { F(new A<T>()); } }"; var comp = CreateCompilation(source); comp.VerifyDiagnostics( ); } [Fact] public void IEquatableT_02() { var source = @"using System; record struct A; record struct B<T>; class Program { static bool F<T>(IEquatable<T> t, T t2) { return t.Equals(t2); } static void Main() { Console.Write(F(new A(), new A())); Console.Write(F(new B<int>(), new B<int>())); } }"; var comp = CreateCompilation(new[] { source, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.ReleaseExe); CompileAndVerify(comp, expectedOutput: "TrueTrue").VerifyDiagnostics(); } [Fact] public void IEquatableT_02_ImplicitImplementation() { var source = @"using System; record struct A { public bool Equals(A other) { System.Console.Write(""A.Equals(A) ""); return false; } } record struct B<T> { public bool Equals(B<T> other) { System.Console.Write(""B.Equals(B) ""); return true; } } class Program { static bool F<T>(IEquatable<T> t, T t2) { return t.Equals(t2); } static void Main() { Console.Write(F(new A(), new A())); Console.Write("" ""); Console.Write(F(new B<int>(), new B<int>())); } }"; var comp = CreateCompilation(new[] { source, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.ReleaseExe); CompileAndVerify(comp, expectedOutput: "A.Equals(A) False B.Equals(B) True").VerifyDiagnostics( // (4,17): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // public bool Equals(A other) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 17), // (12,17): warning CS8851: 'B' defines 'Equals' but not 'GetHashCode' // public bool Equals(B<T> other) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("B").WithLocation(12, 17) ); } [Fact] public void IEquatableT_02_ExplicitImplementation() { var source = @"using System; record struct A { bool IEquatable<A>.Equals(A other) { System.Console.Write(""A.Equals(A) ""); return false; } } record struct B<T> { bool IEquatable<B<T>>.Equals(B<T> other) { System.Console.Write(""B.Equals(B) ""); return true; } } class Program { static bool F<T>(IEquatable<T> t, T t2) { return t.Equals(t2); } static void Main() { Console.Write(F(new A(), new A())); Console.Write("" ""); Console.Write(F(new B<int>(), new B<int>())); } }"; var comp = CreateCompilation(new[] { source, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.ReleaseExe); CompileAndVerify(comp, expectedOutput: "A.Equals(A) False B.Equals(B) True").VerifyDiagnostics(); } [Fact] public void IEquatableT_03() { var source = @" record struct A<T> : System.IEquatable<A<T>>; "; var comp = CreateCompilation(source); comp.VerifyDiagnostics(); var type = comp.GetMember<NamedTypeSymbol>("A"); AssertEx.Equal(new[] { "System.IEquatable<A<T>>" }, type.InterfacesNoUseSiteDiagnostics().ToTestDisplayStrings()); AssertEx.Equal(new[] { "System.IEquatable<A<T>>" }, type.AllInterfacesNoUseSiteDiagnostics.ToTestDisplayStrings()); } [Fact] public void IEquatableT_MissingIEquatable() { var source = @" record struct A<T>; "; var comp = CreateCompilation(source); comp.MakeTypeMissing(WellKnownType.System_IEquatable_T); comp.VerifyEmitDiagnostics( // (2,15): error CS0518: Predefined type 'System.IEquatable`1' is not defined or imported // record struct A<T>; Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "A").WithArguments("System.IEquatable`1").WithLocation(2, 15), // (2,15): error CS0518: Predefined type 'System.IEquatable`1' is not defined or imported // record struct A<T>; Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "A").WithArguments("System.IEquatable`1").WithLocation(2, 15) ); var type = comp.GetMember<NamedTypeSymbol>("A"); AssertEx.Equal(new[] { "System.IEquatable<A<T>>[missing]" }, type.InterfacesNoUseSiteDiagnostics().ToTestDisplayStrings()); AssertEx.Equal(new[] { "System.IEquatable<A<T>>[missing]" }, type.AllInterfacesNoUseSiteDiagnostics.ToTestDisplayStrings()); } [Fact] public void RecordEquals_01() { var source = @" var a1 = new B(); var a2 = new B(); System.Console.WriteLine(a1.Equals(a2)); record struct B { public bool Equals(B other) { System.Console.WriteLine(""B.Equals(B)""); return false; } } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (8,17): warning CS8851: 'B' defines 'Equals' but not 'GetHashCode' // public bool Equals(B other) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("B").WithLocation(8, 17) ); CompileAndVerify(comp, expectedOutput: @" B.Equals(B) False "); } [Fact] public void RecordEquals_01_NoInParameters() { var source = @" var a1 = new B(); var a2 = new B(); System.Console.WriteLine(a1.Equals(in a2)); record struct B; "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,39): error CS1615: Argument 1 may not be passed with the 'in' keyword // System.Console.WriteLine(a1.Equals(in a2)); Diagnostic(ErrorCode.ERR_BadArgExtraRef, "a2").WithArguments("1", "in").WithLocation(4, 39) ); } [Theory] [InlineData("protected")] [InlineData("private protected")] [InlineData("internal protected")] public void RecordEquals_10(string accessibility) { var source = $@" record struct A {{ { accessibility } bool Equals(A x) => throw null; bool System.IEquatable<A>.Equals(A x) => throw null; }} "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,29): error CS0666: 'A.Equals(A)': new protected member declared in struct // internal protected bool Equals(A x) Diagnostic(ErrorCode.ERR_ProtectedInStruct, "Equals").WithArguments("A.Equals(A)").WithLocation(4, 11 + accessibility.Length), // (4,29): error CS8873: Record member 'A.Equals(A)' must be public. // internal protected bool Equals(A x) Diagnostic(ErrorCode.ERR_NonPublicAPIInRecord, "Equals").WithArguments("A.Equals(A)").WithLocation(4, 11 + accessibility.Length), // (4,29): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // internal protected bool Equals(A x) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 11 + accessibility.Length) ); } [Theory] [InlineData("")] [InlineData("private")] [InlineData("internal")] public void RecordEquals_11(string accessibility) { var source = $@" record struct A {{ { accessibility } bool Equals(A x) => throw null; bool System.IEquatable<A>.Equals(A x) => throw null; }} "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,...): error CS8873: Record member 'A.Equals(A)' must be public. // { accessibility } bool Equals(A x) Diagnostic(ErrorCode.ERR_NonPublicAPIInRecord, "Equals").WithArguments("A.Equals(A)").WithLocation(4, 11 + accessibility.Length), // (4,11): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // bool Equals(A x) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 11 + accessibility.Length) ); } [Fact] public void RecordEquals_12() { var source = @" A a1 = new A(); A a2 = new A(); System.Console.Write(a1.Equals(a2)); System.Console.Write(a1.Equals((object)a2)); record struct A { public bool Equals(B other) => throw null; } class B { } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "TrueTrue"); verifier.VerifyIL("A.Equals(A)", @" { // Code size 2 (0x2) .maxstack 1 IL_0000: ldc.i4.1 IL_0001: ret }"); verifier.VerifyIL("A.Equals(object)", @" { // Code size 23 (0x17) .maxstack 2 IL_0000: ldarg.1 IL_0001: isinst ""A"" IL_0006: brfalse.s IL_0015 IL_0008: ldarg.0 IL_0009: ldarg.1 IL_000a: unbox.any ""A"" IL_000f: call ""readonly bool A.Equals(A)"" IL_0014: ret IL_0015: ldc.i4.0 IL_0016: ret }"); verifier.VerifyIL("A.GetHashCode()", @" { // Code size 2 (0x2) .maxstack 1 IL_0000: ldc.i4.0 IL_0001: ret }"); var recordEquals = comp.GetMembers("A.Equals").OfType<SynthesizedRecordEquals>().Single(); Assert.Equal("readonly System.Boolean A.Equals(A other)", recordEquals.ToTestDisplayString()); Assert.Equal(Accessibility.Public, recordEquals.DeclaredAccessibility); Assert.False(recordEquals.IsAbstract); Assert.False(recordEquals.IsVirtual); Assert.False(recordEquals.IsOverride); Assert.False(recordEquals.IsSealed); Assert.True(recordEquals.IsImplicitlyDeclared); var objectEquals = comp.GetMembers("A.Equals").OfType<SynthesizedRecordObjEquals>().Single(); Assert.Equal("readonly System.Boolean A.Equals(System.Object obj)", objectEquals.ToTestDisplayString()); Assert.Equal(Accessibility.Public, objectEquals.DeclaredAccessibility); Assert.False(objectEquals.IsAbstract); Assert.False(objectEquals.IsVirtual); Assert.True(objectEquals.IsOverride); Assert.False(objectEquals.IsSealed); Assert.True(objectEquals.IsImplicitlyDeclared); MethodSymbol gethashCode = comp.GetMembers("A." + WellKnownMemberNames.ObjectGetHashCode).OfType<SynthesizedRecordGetHashCode>().Single(); Assert.Equal("readonly System.Int32 A.GetHashCode()", gethashCode.ToTestDisplayString()); Assert.Equal(Accessibility.Public, gethashCode.DeclaredAccessibility); Assert.False(gethashCode.IsStatic); Assert.False(gethashCode.IsAbstract); Assert.False(gethashCode.IsVirtual); Assert.True(gethashCode.IsOverride); Assert.False(gethashCode.IsSealed); Assert.True(gethashCode.IsImplicitlyDeclared); } [Fact] public void RecordEquals_13() { var source = @" record struct A { public int Equals(A other) => throw null; bool System.IEquatable<A>.Equals(A x) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,16): error CS8874: Record member 'A.Equals(A)' must return 'bool'. // public int Equals(A other) Diagnostic(ErrorCode.ERR_SignatureMismatchInRecord, "Equals").WithArguments("A.Equals(A)", "bool").WithLocation(4, 16), // (4,16): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // public int Equals(A other) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 16) ); } [Fact] public void RecordEquals_14() { var source = @" record struct A { public bool Equals(A other) => throw null; System.Boolean System.IEquatable<A>.Equals(A x) => throw null; } "; var comp = CreateCompilation(source); comp.MakeTypeMissing(SpecialType.System_Boolean); comp.VerifyEmitDiagnostics( // (2,1): error CS0518: Predefined type 'System.Boolean' is not defined or imported // record struct A Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, @"record struct A { public bool Equals(A other) => throw null; System.Boolean System.IEquatable<A>.Equals(A x) => throw null; }").WithArguments("System.Boolean").WithLocation(2, 1), // (2,1): error CS0518: Predefined type 'System.Boolean' is not defined or imported // record struct A Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, @"record struct A { public bool Equals(A other) => throw null; System.Boolean System.IEquatable<A>.Equals(A x) => throw null; }").WithArguments("System.Boolean").WithLocation(2, 1), // (2,15): error CS0518: Predefined type 'System.Boolean' is not defined or imported // record struct A Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "A").WithArguments("System.Boolean").WithLocation(2, 15), // (2,15): error CS0518: Predefined type 'System.Boolean' is not defined or imported // record struct A Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "A").WithArguments("System.Boolean").WithLocation(2, 15), // (2,15): error CS0518: Predefined type 'System.Boolean' is not defined or imported // record struct A Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "A").WithArguments("System.Boolean").WithLocation(2, 15), // (2,15): error CS0518: Predefined type 'System.Boolean' is not defined or imported // record struct A Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "A").WithArguments("System.Boolean").WithLocation(2, 15), // (4,12): error CS0518: Predefined type 'System.Boolean' is not defined or imported // public bool Equals(A other) Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "bool").WithArguments("System.Boolean").WithLocation(4, 12), // (4,17): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // public bool Equals(A other) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 17) ); } [Fact] public void RecordEquals_19() { var source = @" record struct A { public static bool Equals(A x) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (2,15): error CS0736: 'A' does not implement interface member 'IEquatable<A>.Equals(A)'. 'A.Equals(A)' cannot implement an interface member because it is static. // record struct A Diagnostic(ErrorCode.ERR_CloseUnimplementedInterfaceMemberStatic, "A").WithArguments("A", "System.IEquatable<A>.Equals(A)", "A.Equals(A)").WithLocation(2, 15), // (4,24): error CS8877: Record member 'A.Equals(A)' may not be static. // public static bool Equals(A x) => throw null; Diagnostic(ErrorCode.ERR_StaticAPIInRecord, "Equals").WithArguments("A.Equals(A)").WithLocation(4, 24), // (4,24): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // public static bool Equals(A x) => throw null; Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 24) ); } [Fact] public void RecordEquals_RecordEqualsInValueType() { var src = @" public record struct A; namespace System { public class Object { public virtual bool Equals(object x) => throw null; public virtual int GetHashCode() => throw null; public virtual string ToString() => throw null; } public class Exception { } public class ValueType { public bool Equals(A x) => throw null; } public class Attribute { } public class String { } public struct Void { } public struct Boolean { } public struct Char { } public struct Int32 { } public interface IEquatable<T> { } } namespace System.Collections.Generic { public abstract class EqualityComparer<T> { public static EqualityComparer<T> Default => throw null; public abstract int GetHashCode(T t); } } namespace System.Text { public class StringBuilder { public StringBuilder Append(string s) => null; public StringBuilder Append(char c) => null; public StringBuilder Append(object o) => null; } } "; var comp = CreateEmptyCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics( // warning CS8021: No value for RuntimeMetadataVersion found. No assembly containing System.Object was found nor was a value for RuntimeMetadataVersion specified through options. Diagnostic(ErrorCode.WRN_NoRuntimeMetadataVersion).WithLocation(1, 1) ); var recordEquals = comp.GetMembers("A.Equals").OfType<SynthesizedRecordEquals>().Single(); Assert.Equal("readonly System.Boolean A.Equals(A other)", recordEquals.ToTestDisplayString()); } [Fact] public void RecordEquals_FourFields() { var source = @" A a1 = new A(1, ""hello""); System.Console.Write(a1.Equals(a1)); System.Console.Write(a1.Equals((object)a1)); System.Console.Write("" - ""); A a2 = new A(1, ""hello"") { fieldI = 100 }; System.Console.Write(a1.Equals(a2)); System.Console.Write(a1.Equals((object)a2)); System.Console.Write(a2.Equals(a1)); System.Console.Write(a2.Equals((object)a1)); System.Console.Write("" - ""); A a3 = new A(1, ""world""); System.Console.Write(a1.Equals(a3)); System.Console.Write(a1.Equals((object)a3)); System.Console.Write(a3.Equals(a1)); System.Console.Write(a3.Equals((object)a1)); record struct A(int I, string S) { public int fieldI = 42; public string fieldS = ""hello""; } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "TrueTrue - FalseFalseFalseFalse - FalseFalseFalseFalse"); verifier.VerifyIL("A.Equals(A)", @" { // Code size 97 (0x61) .maxstack 3 IL_0000: call ""System.Collections.Generic.EqualityComparer<int> System.Collections.Generic.EqualityComparer<int>.Default.get"" IL_0005: ldarg.0 IL_0006: ldfld ""int A.<I>k__BackingField"" IL_000b: ldarg.1 IL_000c: ldfld ""int A.<I>k__BackingField"" IL_0011: callvirt ""bool System.Collections.Generic.EqualityComparer<int>.Equals(int, int)"" IL_0016: brfalse.s IL_005f IL_0018: call ""System.Collections.Generic.EqualityComparer<string> System.Collections.Generic.EqualityComparer<string>.Default.get"" IL_001d: ldarg.0 IL_001e: ldfld ""string A.<S>k__BackingField"" IL_0023: ldarg.1 IL_0024: ldfld ""string A.<S>k__BackingField"" IL_0029: callvirt ""bool System.Collections.Generic.EqualityComparer<string>.Equals(string, string)"" IL_002e: brfalse.s IL_005f IL_0030: call ""System.Collections.Generic.EqualityComparer<int> System.Collections.Generic.EqualityComparer<int>.Default.get"" IL_0035: ldarg.0 IL_0036: ldfld ""int A.fieldI"" IL_003b: ldarg.1 IL_003c: ldfld ""int A.fieldI"" IL_0041: callvirt ""bool System.Collections.Generic.EqualityComparer<int>.Equals(int, int)"" IL_0046: brfalse.s IL_005f IL_0048: call ""System.Collections.Generic.EqualityComparer<string> System.Collections.Generic.EqualityComparer<string>.Default.get"" IL_004d: ldarg.0 IL_004e: ldfld ""string A.fieldS"" IL_0053: ldarg.1 IL_0054: ldfld ""string A.fieldS"" IL_0059: callvirt ""bool System.Collections.Generic.EqualityComparer<string>.Equals(string, string)"" IL_005e: ret IL_005f: ldc.i4.0 IL_0060: ret }"); verifier.VerifyIL("A.Equals(object)", @" { // Code size 23 (0x17) .maxstack 2 IL_0000: ldarg.1 IL_0001: isinst ""A"" IL_0006: brfalse.s IL_0015 IL_0008: ldarg.0 IL_0009: ldarg.1 IL_000a: unbox.any ""A"" IL_000f: call ""readonly bool A.Equals(A)"" IL_0014: ret IL_0015: ldc.i4.0 IL_0016: ret }"); verifier.VerifyIL("A.GetHashCode()", @" { // Code size 86 (0x56) .maxstack 3 IL_0000: call ""System.Collections.Generic.EqualityComparer<int> System.Collections.Generic.EqualityComparer<int>.Default.get"" IL_0005: ldarg.0 IL_0006: ldfld ""int A.<I>k__BackingField"" IL_000b: callvirt ""int System.Collections.Generic.EqualityComparer<int>.GetHashCode(int)"" IL_0010: ldc.i4 0xa5555529 IL_0015: mul IL_0016: call ""System.Collections.Generic.EqualityComparer<string> System.Collections.Generic.EqualityComparer<string>.Default.get"" IL_001b: ldarg.0 IL_001c: ldfld ""string A.<S>k__BackingField"" IL_0021: callvirt ""int System.Collections.Generic.EqualityComparer<string>.GetHashCode(string)"" IL_0026: add IL_0027: ldc.i4 0xa5555529 IL_002c: mul IL_002d: call ""System.Collections.Generic.EqualityComparer<int> System.Collections.Generic.EqualityComparer<int>.Default.get"" IL_0032: ldarg.0 IL_0033: ldfld ""int A.fieldI"" IL_0038: callvirt ""int System.Collections.Generic.EqualityComparer<int>.GetHashCode(int)"" IL_003d: add IL_003e: ldc.i4 0xa5555529 IL_0043: mul IL_0044: call ""System.Collections.Generic.EqualityComparer<string> System.Collections.Generic.EqualityComparer<string>.Default.get"" IL_0049: ldarg.0 IL_004a: ldfld ""string A.fieldS"" IL_004f: callvirt ""int System.Collections.Generic.EqualityComparer<string>.GetHashCode(string)"" IL_0054: add IL_0055: ret }"); } [Fact] public void RecordEquals_StaticField() { var source = @" record struct A { public static int field = 42; } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp); verifier.VerifyIL("A.Equals(A)", @" { // Code size 2 (0x2) .maxstack 1 IL_0000: ldc.i4.1 IL_0001: ret }"); verifier.VerifyIL("A.GetHashCode()", @" { // Code size 2 (0x2) .maxstack 1 IL_0000: ldc.i4.0 IL_0001: ret }"); } [Fact] public void RecordEquals_GeneratedAsReadOnly() { var src = @" record struct A(int I, string S); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var recordEquals = comp.GetMembers("A.Equals").OfType<SynthesizedRecordEquals>().Single(); Assert.True(recordEquals.IsDeclaredReadOnly); } [Fact] public void ObjectEquals_06() { var source = @" record struct A { public static new bool Equals(object obj) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,28): error CS0111: Type 'A' already defines a member called 'Equals' with the same parameter types // public static new bool Equals(object obj) => throw null; Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "Equals").WithArguments("Equals", "A").WithLocation(4, 28) ); } [Fact] public void ObjectEquals_UserDefined() { var source = @" record struct A { public override bool Equals(object obj) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,26): error CS0111: Type 'A' already defines a member called 'Equals' with the same parameter types // public override bool Equals(object obj) => throw null; Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "Equals").WithArguments("Equals", "A").WithLocation(4, 26) ); } [Fact] public void ObjectEquals_GeneratedAsReadOnly() { var src = @" record struct A(int I, string S); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var objectEquals = comp.GetMembers("A.Equals").OfType<SynthesizedRecordObjEquals>().Single(); Assert.True(objectEquals.IsDeclaredReadOnly); } [Fact] public void GetHashCode_UserDefined() { var source = @" System.Console.Write(new A().GetHashCode()); record struct A { public override int GetHashCode() => 42; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "42"); } [Fact] public void GetHashCode_GetHashCodeInValueType() { var src = @" public record struct A; namespace System { public class Object { public virtual bool Equals(object x) => throw null; public virtual string ToString() => throw null; } public class Exception { } public class ValueType { public virtual int GetHashCode() => throw null; } public class Attribute { } public class String { } public struct Void { } public struct Boolean { } public struct Char { } public struct Int32 { } public interface IEquatable<T> { } } namespace System.Collections.Generic { public abstract class EqualityComparer<T> { public static EqualityComparer<T> Default => throw null; public abstract int GetHashCode(T t); } } namespace System.Text { public class StringBuilder { public StringBuilder Append(string s) => null; public StringBuilder Append(char c) => null; public StringBuilder Append(object o) => null; } } "; var comp = CreateEmptyCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics( // warning CS8021: No value for RuntimeMetadataVersion found. No assembly containing System.Object was found nor was a value for RuntimeMetadataVersion specified through options. Diagnostic(ErrorCode.WRN_NoRuntimeMetadataVersion).WithLocation(1, 1), // (2,22): error CS8869: 'A.GetHashCode()' does not override expected method from 'object'. // public record struct A; Diagnostic(ErrorCode.ERR_DoesNotOverrideMethodFromObject, "A").WithArguments("A.GetHashCode()").WithLocation(2, 22) ); } [Fact] public void GetHashCode_MissingEqualityComparer_EmptyRecord() { var src = @" public record struct A; "; var comp = CreateCompilation(src); comp.MakeTypeMissing(WellKnownType.System_Collections_Generic_EqualityComparer_T); comp.VerifyEmitDiagnostics(); } [Fact] public void GetHashCode_MissingEqualityComparer_NonEmptyRecord() { var src = @" public record struct A(int I); "; var comp = CreateCompilation(src); comp.MakeTypeMissing(WellKnownType.System_Collections_Generic_EqualityComparer_T); comp.VerifyEmitDiagnostics( // (2,1): error CS0656: Missing compiler required member 'System.Collections.Generic.EqualityComparer`1.GetHashCode' // public record struct A(int I); Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "public record struct A(int I);").WithArguments("System.Collections.Generic.EqualityComparer`1", "GetHashCode").WithLocation(2, 1), // (2,1): error CS0656: Missing compiler required member 'System.Collections.Generic.EqualityComparer`1.get_Default' // public record struct A(int I); Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "public record struct A(int I);").WithArguments("System.Collections.Generic.EqualityComparer`1", "get_Default").WithLocation(2, 1) ); } [Fact] public void GetHashCode_GeneratedAsReadOnly() { var src = @" record struct A(int I, string S); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var method = comp.GetMember<SynthesizedRecordGetHashCode>("A.GetHashCode"); Assert.True(method.IsDeclaredReadOnly); } [Fact] public void GetHashCodeIsDefinedButEqualsIsNot() { var src = @" public record struct C { public object Data; public override int GetHashCode() { return 0; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); } [Fact] public void EqualsIsDefinedButGetHashCodeIsNot() { var src = @" public record struct C { public object Data; public bool Equals(C c) { return false; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (5,17): warning CS8851: 'C' defines 'Equals' but not 'GetHashCode' // public bool Equals(C c) { return false; } Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("C").WithLocation(5, 17)); } [Fact] public void EqualityOperators_01() { var source = @" record struct A(int X) { public bool Equals(ref A other) => throw null; static void Main() { Test(default, default); Test(default, new A(0)); Test(new A(1), new A(1)); Test(new A(2), new A(3)); var a = new A(11); Test(a, a); } static void Test(A a1, A a2) { System.Console.WriteLine(""{0} {1} {2} {3}"", a1 == a2, a2 == a1, a1 != a2, a2 != a1); } } "; var verifier = CompileAndVerify(source, expectedOutput: @" True True False False True True False False True True False False False False True True True True False False ").VerifyDiagnostics(); var comp = (CSharpCompilation)verifier.Compilation; MethodSymbol op = comp.GetMembers("A." + WellKnownMemberNames.EqualityOperatorName).OfType<SynthesizedRecordEqualityOperator>().Single(); Assert.Equal("System.Boolean A.op_Equality(A left, A right)", op.ToTestDisplayString()); Assert.Equal(Accessibility.Public, op.DeclaredAccessibility); Assert.True(op.IsStatic); Assert.False(op.IsAbstract); Assert.False(op.IsVirtual); Assert.False(op.IsOverride); Assert.False(op.IsSealed); Assert.True(op.IsImplicitlyDeclared); op = comp.GetMembers("A." + WellKnownMemberNames.InequalityOperatorName).OfType<SynthesizedRecordInequalityOperator>().Single(); Assert.Equal("System.Boolean A.op_Inequality(A left, A right)", op.ToTestDisplayString()); Assert.Equal(Accessibility.Public, op.DeclaredAccessibility); Assert.True(op.IsStatic); Assert.False(op.IsAbstract); Assert.False(op.IsVirtual); Assert.False(op.IsOverride); Assert.False(op.IsSealed); Assert.True(op.IsImplicitlyDeclared); verifier.VerifyIL("bool A.op_Equality(A, A)", @" { // Code size 9 (0x9) .maxstack 2 IL_0000: ldarga.s V_0 IL_0002: ldarg.1 IL_0003: call ""readonly bool A.Equals(A)"" IL_0008: ret } "); verifier.VerifyIL("bool A.op_Inequality(A, A)", @" { // Code size 11 (0xb) .maxstack 2 IL_0000: ldarg.0 IL_0001: ldarg.1 IL_0002: call ""bool A.op_Equality(A, A)"" IL_0007: ldc.i4.0 IL_0008: ceq IL_000a: ret } "); } [Fact] public void EqualityOperators_03() { var source = @" record struct A { public static bool operator==(A r1, A r2) => throw null; public static bool operator==(A r1, string r2) => throw null; public static bool operator!=(A r1, string r2) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,32): error CS0111: Type 'A' already defines a member called 'op_Equality' with the same parameter types // public static bool operator==(A r1, A r2) Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "==").WithArguments("op_Equality", "A").WithLocation(4, 32) ); } [Fact] public void EqualityOperators_04() { var source = @" record struct A { public static bool operator!=(A r1, A r2) => throw null; public static bool operator!=(string r1, A r2) => throw null; public static bool operator==(string r1, A r2) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,32): error CS0111: Type 'A' already defines a member called 'op_Inequality' with the same parameter types // public static bool operator!=(A r1, A r2) Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "!=").WithArguments("op_Inequality", "A").WithLocation(4, 32) ); } [Fact] public void EqualityOperators_05() { var source = @" record struct A { public static bool op_Equality(A r1, A r2) => throw null; public static bool op_Equality(string r1, A r2) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,24): error CS0111: Type 'A' already defines a member called 'op_Equality' with the same parameter types // public static bool op_Equality(A r1, A r2) Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "op_Equality").WithArguments("op_Equality", "A").WithLocation(4, 24) ); } [Fact] public void EqualityOperators_06() { var source = @" record struct A { public static bool op_Inequality(A r1, A r2) => throw null; public static bool op_Inequality(A r1, string r2) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (4,24): error CS0111: Type 'A' already defines a member called 'op_Inequality' with the same parameter types // public static bool op_Inequality(A r1, A r2) Diagnostic(ErrorCode.ERR_MemberAlreadyExists, "op_Inequality").WithArguments("op_Inequality", "A").WithLocation(4, 24) ); } [Fact] public void EqualityOperators_07() { var source = @" record struct A { public static bool Equals(A other) => throw null; } "; var comp = CreateCompilation(source); comp.VerifyEmitDiagnostics( // (2,15): error CS0736: 'A' does not implement interface member 'IEquatable<A>.Equals(A)'. 'A.Equals(A)' cannot implement an interface member because it is static. // record struct A Diagnostic(ErrorCode.ERR_CloseUnimplementedInterfaceMemberStatic, "A").WithArguments("A", "System.IEquatable<A>.Equals(A)", "A.Equals(A)").WithLocation(2, 15), // (4,24): error CS8877: Record member 'A.Equals(A)' may not be static. // public static bool Equals(A other) Diagnostic(ErrorCode.ERR_StaticAPIInRecord, "Equals").WithArguments("A.Equals(A)").WithLocation(4, 24), // (4,24): warning CS8851: 'A' defines 'Equals' but not 'GetHashCode' // public static bool Equals(A other) Diagnostic(ErrorCode.WRN_RecordEqualsWithoutGetHashCode, "Equals").WithArguments("A").WithLocation(4, 24) ); } [Theory] [CombinatorialData] public void EqualityOperators_09(bool useImageReference) { var source1 = @" public record struct A(int X); "; var comp1 = CreateCompilation(source1); var source2 = @" class Program { static void Main() { Test(default, default); Test(default, new A(0)); Test(new A(1), new A(1)); Test(new A(2), new A(3)); } static void Test(A a1, A a2) { System.Console.WriteLine(""{0} {1} {2} {3}"", a1 == a2, a2 == a1, a1 != a2, a2 != a1); } } "; CompileAndVerify(source2, references: new[] { useImageReference ? comp1.EmitToImageReference() : comp1.ToMetadataReference() }, expectedOutput: @" True True False False True True False False True True False False False False True True ").VerifyDiagnostics(); } [Fact] public void GetSimpleNonTypeMembers_DirectApiCheck() { var src = @" public record struct RecordB(); "; var comp = CreateCompilation(src); var b = comp.GlobalNamespace.GetTypeMember("RecordB"); AssertEx.SetEqual(new[] { "System.Boolean RecordB.op_Equality(RecordB left, RecordB right)" }, b.GetSimpleNonTypeMembers("op_Equality").ToTestDisplayStrings()); } [Fact] public void ToString_NestedRecord() { var src = @" var c1 = new Outer.C1(42); System.Console.Write(c1.ToString()); public class Outer { public record struct C1(int I1); } "; var compDebug = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.DebugExe); var compRelease = CreateCompilation(new[] { src, IsExternalInitTypeDefinition }, parseOptions: TestOptions.RegularPreview, options: TestOptions.ReleaseExe); CompileAndVerify(compDebug, expectedOutput: "C1 { I1 = 42 }"); compDebug.VerifyEmitDiagnostics(); CompileAndVerify(compRelease, expectedOutput: "C1 { I1 = 42 }"); compRelease.VerifyEmitDiagnostics(); } [Fact] public void ToString_TopLevelRecord_Empty() { var src = @" var c1 = new C1(); System.Console.Write(c1.ToString()); record struct C1; "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); var v = CompileAndVerify(comp, expectedOutput: "C1 { }"); var print = comp.GetMember<MethodSymbol>("C1." + WellKnownMemberNames.PrintMembersMethodName); Assert.Equal(Accessibility.Private, print.DeclaredAccessibility); Assert.False(print.IsOverride); Assert.False(print.IsVirtual); Assert.False(print.IsAbstract); Assert.False(print.IsSealed); Assert.True(print.IsImplicitlyDeclared); var toString = comp.GetMember<MethodSymbol>("C1." + WellKnownMemberNames.ObjectToString); Assert.Equal(Accessibility.Public, toString.DeclaredAccessibility); Assert.True(toString.IsOverride); Assert.False(toString.IsVirtual); Assert.False(toString.IsAbstract); Assert.False(toString.IsSealed); Assert.True(toString.IsImplicitlyDeclared); v.VerifyIL("C1." + WellKnownMemberNames.PrintMembersMethodName, @" { // Code size 2 (0x2) .maxstack 1 IL_0000: ldc.i4.0 IL_0001: ret } "); v.VerifyIL("C1." + WellKnownMemberNames.ObjectToString, @" { // Code size 64 (0x40) .maxstack 2 .locals init (System.Text.StringBuilder V_0) IL_0000: newobj ""System.Text.StringBuilder..ctor()"" IL_0005: stloc.0 IL_0006: ldloc.0 IL_0007: ldstr ""C1"" IL_000c: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0011: pop IL_0012: ldloc.0 IL_0013: ldstr "" { "" IL_0018: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_001d: pop IL_001e: ldarg.0 IL_001f: ldloc.0 IL_0020: call ""readonly bool C1.PrintMembers(System.Text.StringBuilder)"" IL_0025: brfalse.s IL_0030 IL_0027: ldloc.0 IL_0028: ldc.i4.s 32 IL_002a: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(char)"" IL_002f: pop IL_0030: ldloc.0 IL_0031: ldc.i4.s 125 IL_0033: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(char)"" IL_0038: pop IL_0039: ldloc.0 IL_003a: callvirt ""string object.ToString()"" IL_003f: ret } "); } [Fact] public void ToString_TopLevelRecord_MissingStringBuilder() { var src = @" record struct C1; "; var comp = CreateCompilation(src); comp.MakeTypeMissing(WellKnownType.System_Text_StringBuilder); comp.VerifyEmitDiagnostics( // (2,1): error CS0518: Predefined type 'System.Text.StringBuilder' is not defined or imported // record struct C1; Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "record struct C1;").WithArguments("System.Text.StringBuilder").WithLocation(2, 1), // (2,1): error CS0656: Missing compiler required member 'System.Text.StringBuilder..ctor' // record struct C1; Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "record struct C1;").WithArguments("System.Text.StringBuilder", ".ctor").WithLocation(2, 1), // (2,15): error CS0518: Predefined type 'System.Text.StringBuilder' is not defined or imported // record struct C1; Diagnostic(ErrorCode.ERR_PredefinedTypeNotFound, "C1").WithArguments("System.Text.StringBuilder").WithLocation(2, 15) ); } [Fact] public void ToString_TopLevelRecord_MissingStringBuilderCtor() { var src = @" record struct C1; "; var comp = CreateCompilation(src); comp.MakeMemberMissing(WellKnownMember.System_Text_StringBuilder__ctor); comp.VerifyEmitDiagnostics( // (2,1): error CS0656: Missing compiler required member 'System.Text.StringBuilder..ctor' // record struct C1; Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "record struct C1;").WithArguments("System.Text.StringBuilder", ".ctor").WithLocation(2, 1) ); } [Fact] public void ToString_TopLevelRecord_MissingStringBuilderAppendString() { var src = @" record struct C1; "; var comp = CreateCompilation(src); comp.MakeMemberMissing(WellKnownMember.System_Text_StringBuilder__AppendString); comp.VerifyEmitDiagnostics( // (2,1): error CS0656: Missing compiler required member 'System.Text.StringBuilder.Append' // record struct C1; Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "record struct C1;").WithArguments("System.Text.StringBuilder", "Append").WithLocation(2, 1) ); } [Fact] public void ToString_TopLevelRecord_OneProperty_MissingStringBuilderAppendString() { var src = @" record struct C1(int P); "; var comp = CreateCompilation(src); comp.MakeMemberMissing(WellKnownMember.System_Text_StringBuilder__AppendString); comp.VerifyEmitDiagnostics( // (2,1): error CS0656: Missing compiler required member 'System.Text.StringBuilder.Append' // record struct C1(int P); Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "record struct C1(int P);").WithArguments("System.Text.StringBuilder", "Append").WithLocation(2, 1), // (2,1): error CS0656: Missing compiler required member 'System.Text.StringBuilder.Append' // record struct C1(int P); Diagnostic(ErrorCode.ERR_MissingPredefinedMember, "record struct C1(int P);").WithArguments("System.Text.StringBuilder", "Append").WithLocation(2, 1) ); } [Fact] public void ToString_RecordWithIndexer() { var src = @" var c1 = new C1(42); System.Console.Write(c1.ToString()); record struct C1(int I1) { private int field = 44; public int this[int i] => 0; public int PropertyWithoutGetter { set { } } public int P2 { get => 43; } public event System.Action a = null; private int field1 = 100; internal int field2 = 100; private int Property1 { get; set; } = 100; internal int Property2 { get; set; } = 100; } "; var comp = CreateCompilation(src); CompileAndVerify(comp, expectedOutput: "C1 { I1 = 42, P2 = 43 }"); comp.VerifyEmitDiagnostics( // (7,17): warning CS0414: The field 'C1.field' is assigned but its value is never used // private int field = 44; Diagnostic(ErrorCode.WRN_UnreferencedFieldAssg, "field").WithArguments("C1.field").WithLocation(7, 17), // (11,32): warning CS0414: The field 'C1.a' is assigned but its value is never used // public event System.Action a = null; Diagnostic(ErrorCode.WRN_UnreferencedFieldAssg, "a").WithArguments("C1.a").WithLocation(11, 32), // (13,17): warning CS0414: The field 'C1.field1' is assigned but its value is never used // private int field1 = 100; Diagnostic(ErrorCode.WRN_UnreferencedFieldAssg, "field1").WithArguments("C1.field1").WithLocation(13, 17) ); } [Fact] public void ToString_PrivateGetter() { var src = @" var c1 = new C1(); System.Console.Write(c1.ToString()); record struct C1 { public int P1 { private get => 43; set => throw null; } } "; var comp = CreateCompilation(src); CompileAndVerify(comp, expectedOutput: "C1 { P1 = 43 }"); comp.VerifyEmitDiagnostics(); } [Fact] public void ToString_TopLevelRecord_OneField_ValueType() { var src = @" var c1 = new C1() { field = 42 }; System.Console.Write(c1.ToString()); record struct C1 { public int field; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); var v = CompileAndVerify(comp, expectedOutput: "C1 { field = 42 }"); var print = comp.GetMember<MethodSymbol>("C1." + WellKnownMemberNames.PrintMembersMethodName); Assert.Equal(Accessibility.Private, print.DeclaredAccessibility); Assert.False(print.IsOverride); Assert.False(print.IsVirtual); Assert.False(print.IsAbstract); Assert.False(print.IsSealed); Assert.True(print.IsImplicitlyDeclared); var toString = comp.GetMember<MethodSymbol>("C1." + WellKnownMemberNames.ObjectToString); Assert.Equal(Accessibility.Public, toString.DeclaredAccessibility); Assert.True(toString.IsOverride); Assert.False(toString.IsVirtual); Assert.False(toString.IsAbstract); Assert.False(toString.IsSealed); Assert.True(toString.IsImplicitlyDeclared); v.VerifyIL("C1." + WellKnownMemberNames.PrintMembersMethodName, @" { // Code size 38 (0x26) .maxstack 2 IL_0000: ldarg.1 IL_0001: ldstr ""field = "" IL_0006: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_000b: pop IL_000c: ldarg.1 IL_000d: ldarg.0 IL_000e: ldflda ""int C1.field"" IL_0013: constrained. ""int"" IL_0019: callvirt ""string object.ToString()"" IL_001e: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0023: pop IL_0024: ldc.i4.1 IL_0025: ret } "); } [Fact] public void ToString_TopLevelRecord_OneField_ConstrainedValueType() { var src = @" var c1 = new C1<int>() { field = 42 }; System.Console.Write(c1.ToString()); record struct C1<T> where T : struct { public T field; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); var v = CompileAndVerify(comp, expectedOutput: "C1 { field = 42 }"); v.VerifyIL("C1<T>." + WellKnownMemberNames.PrintMembersMethodName, @" { // Code size 41 (0x29) .maxstack 2 .locals init (T V_0) IL_0000: ldarg.1 IL_0001: ldstr ""field = "" IL_0006: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_000b: pop IL_000c: ldarg.1 IL_000d: ldarg.0 IL_000e: ldfld ""T C1<T>.field"" IL_0013: stloc.0 IL_0014: ldloca.s V_0 IL_0016: constrained. ""T"" IL_001c: callvirt ""string object.ToString()"" IL_0021: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0026: pop IL_0027: ldc.i4.1 IL_0028: ret } "); } [Fact] public void ToString_TopLevelRecord_OneField_ReferenceType() { var src = @" var c1 = new C1() { field = ""hello"" }; System.Console.Write(c1.ToString()); record struct C1 { public string field; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); var v = CompileAndVerify(comp, expectedOutput: "C1 { field = hello }"); v.VerifyIL("C1." + WellKnownMemberNames.PrintMembersMethodName, @" { // Code size 27 (0x1b) .maxstack 2 IL_0000: ldarg.1 IL_0001: ldstr ""field = "" IL_0006: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_000b: pop IL_000c: ldarg.1 IL_000d: ldarg.0 IL_000e: ldfld ""string C1.field"" IL_0013: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(object)"" IL_0018: pop IL_0019: ldc.i4.1 IL_001a: ret } "); } [Fact] public void ToString_TopLevelRecord_TwoFields_ReferenceType() { var src = @" var c1 = new C1(42) { field1 = ""hi"", field2 = null }; System.Console.Write(c1.ToString()); record struct C1(int I) { public string field1 = null; public string field2 = null; private string field3 = null; internal string field4 = null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (10,20): warning CS0414: The field 'C1.field3' is assigned but its value is never used // private string field3 = null; Diagnostic(ErrorCode.WRN_UnreferencedFieldAssg, "field3").WithArguments("C1.field3").WithLocation(10, 20) ); var v = CompileAndVerify(comp, expectedOutput: "C1 { I = 42, field1 = hi, field2 = }"); v.VerifyIL("C1." + WellKnownMemberNames.PrintMembersMethodName, @" { // Code size 91 (0x5b) .maxstack 2 .locals init (int V_0) IL_0000: ldarg.1 IL_0001: ldstr ""I = "" IL_0006: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_000b: pop IL_000c: ldarg.1 IL_000d: ldarg.0 IL_000e: call ""readonly int C1.I.get"" IL_0013: stloc.0 IL_0014: ldloca.s V_0 IL_0016: constrained. ""int"" IL_001c: callvirt ""string object.ToString()"" IL_0021: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0026: pop IL_0027: ldarg.1 IL_0028: ldstr "", field1 = "" IL_002d: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0032: pop IL_0033: ldarg.1 IL_0034: ldarg.0 IL_0035: ldfld ""string C1.field1"" IL_003a: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(object)"" IL_003f: pop IL_0040: ldarg.1 IL_0041: ldstr "", field2 = "" IL_0046: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_004b: pop IL_004c: ldarg.1 IL_004d: ldarg.0 IL_004e: ldfld ""string C1.field2"" IL_0053: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(object)"" IL_0058: pop IL_0059: ldc.i4.1 IL_005a: ret } "); } [Fact] public void ToString_TopLevelRecord_Readonly() { var src = @" var c1 = new C1(42); System.Console.Write(c1.ToString()); readonly record struct C1(int I); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var v = CompileAndVerify(comp, expectedOutput: "C1 { I = 42 }", verify: Verification.Skipped /* init-only */); v.VerifyIL("C1." + WellKnownMemberNames.PrintMembersMethodName, @" { // Code size 41 (0x29) .maxstack 2 .locals init (int V_0) IL_0000: ldarg.1 IL_0001: ldstr ""I = "" IL_0006: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_000b: pop IL_000c: ldarg.1 IL_000d: ldarg.0 IL_000e: call ""int C1.I.get"" IL_0013: stloc.0 IL_0014: ldloca.s V_0 IL_0016: constrained. ""int"" IL_001c: callvirt ""string object.ToString()"" IL_0021: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0026: pop IL_0027: ldc.i4.1 IL_0028: ret } "); v.VerifyIL("C1." + WellKnownMemberNames.ObjectToString, @" { // Code size 64 (0x40) .maxstack 2 .locals init (System.Text.StringBuilder V_0) IL_0000: newobj ""System.Text.StringBuilder..ctor()"" IL_0005: stloc.0 IL_0006: ldloc.0 IL_0007: ldstr ""C1"" IL_000c: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_0011: pop IL_0012: ldloc.0 IL_0013: ldstr "" { "" IL_0018: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(string)"" IL_001d: pop IL_001e: ldarg.0 IL_001f: ldloc.0 IL_0020: call ""bool C1.PrintMembers(System.Text.StringBuilder)"" IL_0025: brfalse.s IL_0030 IL_0027: ldloc.0 IL_0028: ldc.i4.s 32 IL_002a: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(char)"" IL_002f: pop IL_0030: ldloc.0 IL_0031: ldc.i4.s 125 IL_0033: callvirt ""System.Text.StringBuilder System.Text.StringBuilder.Append(char)"" IL_0038: pop IL_0039: ldloc.0 IL_003a: callvirt ""string object.ToString()"" IL_003f: ret } "); } [Fact] public void ToString_TopLevelRecord_UserDefinedToString() { var src = @" var c1 = new C1(); System.Console.Write(c1.ToString()); record struct C1 { public override string ToString() => ""RAN""; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "RAN"); var print = comp.GetMember<MethodSymbol>("C1." + WellKnownMemberNames.PrintMembersMethodName); Assert.Equal("readonly System.Boolean C1." + WellKnownMemberNames.PrintMembersMethodName + "(System.Text.StringBuilder builder)", print.ToTestDisplayString()); } [Fact] public void ToString_TopLevelRecord_UserDefinedToString_New() { var src = @" record struct C1 { public new string ToString() => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,23): error CS8869: 'C1.ToString()' does not override expected method from 'object'. // public new string ToString() => throw null; Diagnostic(ErrorCode.ERR_DoesNotOverrideMethodFromObject, "ToString").WithArguments("C1.ToString()").WithLocation(4, 23) ); } [Fact] public void ToString_TopLevelRecord_UserDefinedToString_Sealed() { var src = @" record struct C1 { public sealed override string ToString() => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,35): error CS0106: The modifier 'sealed' is not valid for this item // public sealed override string ToString() => throw null; Diagnostic(ErrorCode.ERR_BadMemberFlag, "ToString").WithArguments("sealed").WithLocation(4, 35) ); } [Fact] public void ToString_UserDefinedPrintMembers_WithNullableStringBuilder() { var src = @" #nullable enable record struct C1 { private bool PrintMembers(System.Text.StringBuilder? builder) => throw null!; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); } [Fact] public void ToString_UserDefinedPrintMembers_ErrorReturnType() { var src = @" record struct C1 { private Error PrintMembers(System.Text.StringBuilder builder) => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,13): error CS0246: The type or namespace name 'Error' could not be found (are you missing a using directive or an assembly reference?) // private Error PrintMembers(System.Text.StringBuilder builder) => throw null; Diagnostic(ErrorCode.ERR_SingleTypeNameNotFound, "Error").WithArguments("Error").WithLocation(4, 13) ); } [Fact] public void ToString_UserDefinedPrintMembers_WrongReturnType() { var src = @" record struct C1 { private int PrintMembers(System.Text.StringBuilder builder) => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,17): error CS8874: Record member 'C1.PrintMembers(StringBuilder)' must return 'bool'. // private int PrintMembers(System.Text.StringBuilder builder) => throw null; Diagnostic(ErrorCode.ERR_SignatureMismatchInRecord, "PrintMembers").WithArguments("C1.PrintMembers(System.Text.StringBuilder)", "bool").WithLocation(4, 17) ); } [Fact] public void ToString_UserDefinedPrintMembers() { var src = @" var c1 = new C1(); System.Console.Write(c1.ToString()); System.Console.Write("" - ""); c1.M(); record struct C1 { private bool PrintMembers(System.Text.StringBuilder builder) { builder.Append(""RAN""); return true; } public void M() { var builder = new System.Text.StringBuilder(); if (PrintMembers(builder)) { System.Console.Write(builder.ToString()); } } } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "C1 { RAN } - RAN"); } [Fact] public void ToString_CallingSynthesizedPrintMembers() { var src = @" var c1 = new C1(1, 2, 3); System.Console.Write(c1.ToString()); System.Console.Write("" - ""); c1.M(); record struct C1(int I, int I2, int I3) { public void M() { var builder = new System.Text.StringBuilder(); if (PrintMembers(builder)) { System.Console.Write(builder.ToString()); } } } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "C1 { I = 1, I2 = 2, I3 = 3 } - I = 1, I2 = 2, I3 = 3"); } [Fact] public void ToString_UserDefinedPrintMembers_WrongAccessibility() { var src = @" var c = new C1(); System.Console.Write(c.ToString()); record struct C1 { internal bool PrintMembers(System.Text.StringBuilder builder) => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (7,19): error CS8879: Record member 'C1.PrintMembers(StringBuilder)' must be private. // internal bool PrintMembers(System.Text.StringBuilder builder) => throw null; Diagnostic(ErrorCode.ERR_NonPrivateAPIInRecord, "PrintMembers").WithArguments("C1.PrintMembers(System.Text.StringBuilder)").WithLocation(7, 19) ); } [Fact] public void ToString_UserDefinedPrintMembers_Static() { var src = @" record struct C1 { static private bool PrintMembers(System.Text.StringBuilder builder) => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,25): error CS8877: Record member 'C1.PrintMembers(StringBuilder)' may not be static. // static private bool PrintMembers(System.Text.StringBuilder builder) => throw null; Diagnostic(ErrorCode.ERR_StaticAPIInRecord, "PrintMembers").WithArguments("C1.PrintMembers(System.Text.StringBuilder)").WithLocation(4, 25) ); } [Fact] public void ToString_GeneratedAsReadOnly() { var src = @" record struct A(int I, string S); "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var method = comp.GetMember<SynthesizedRecordToString>("A.ToString"); Assert.True(method.IsDeclaredReadOnly); } [Fact] public void ToString_WihtNonReadOnlyGetter_GeneratedAsNonReadOnly() { var src = @" record struct A(int I, string S) { public double T => 0.1; } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var method = comp.GetMember<SynthesizedRecordToString>("A.ToString"); Assert.False(method.IsDeclaredReadOnly); } [Fact] public void AmbigCtor_WithPropertyInitializer() { // Scenario causes ambiguous ctor for record class, but not record struct var src = @" record struct R(R X) { public R X { get; init; } = X; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,14): error CS0523: Struct member 'R.X' of type 'R' causes a cycle in the struct layout // public R X { get; init; } = X; Diagnostic(ErrorCode.ERR_StructLayoutCycle, "X").WithArguments("R.X", "R").WithLocation(4, 14) ); var tree = comp.SyntaxTrees[0]; var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var parameterSyntax = tree.GetRoot().DescendantNodes().OfType<ParameterSyntax>().Single(); var parameter = model.GetDeclaredSymbol(parameterSyntax)!; Assert.Equal("R X", parameter.ToTestDisplayString()); Assert.Equal(SymbolKind.Parameter, parameter.Kind); Assert.Equal("R..ctor(R X)", parameter.ContainingSymbol.ToTestDisplayString()); var initializerSyntax = tree.GetRoot().DescendantNodes().OfType<EqualsValueClauseSyntax>().Single(); var initializer = model.GetSymbolInfo(initializerSyntax.Value).Symbol!; Assert.Equal("R X", initializer.ToTestDisplayString()); Assert.Equal(SymbolKind.Parameter, initializer.Kind); Assert.Equal("R..ctor(R X)", initializer.ContainingSymbol.ToTestDisplayString()); var src2 = @" record struct R(R X); "; var comp2 = CreateCompilation(src2); comp2.VerifyEmitDiagnostics( // (2,19): error CS0523: Struct member 'R.X' of type 'R' causes a cycle in the struct layout // record struct R(R X); Diagnostic(ErrorCode.ERR_StructLayoutCycle, "X").WithArguments("R.X", "R").WithLocation(2, 19) ); } [Fact] public void GetDeclaredSymbolOnAnOutLocalInPropertyInitializer() { var src = @" record struct R(int I) { public int I { get; init; } = M(out int i); static int M(out int i) => throw null; } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (2,21): warning CS8907: Parameter 'I' is unread. Did you forget to use it to initialize the property with that name? // record struct R(int I) Diagnostic(ErrorCode.WRN_UnreadRecordParameter, "I").WithArguments("I").WithLocation(2, 21) ); var tree = comp.SyntaxTrees[0]; var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var outVarSyntax = tree.GetRoot().DescendantNodes().OfType<SingleVariableDesignationSyntax>().Single(); var outVar = model.GetDeclaredSymbol(outVarSyntax)!; Assert.Equal("System.Int32 i", outVar.ToTestDisplayString()); Assert.Equal(SymbolKind.Local, outVar.Kind); Assert.Equal("System.Int32 R.<I>k__BackingField", outVar.ContainingSymbol.ToTestDisplayString()); } [Fact] public void AnalyzerActions_01() { // Test RegisterSyntaxNodeAction var text1 = @" record struct A([Attr1]int X = 0) : I1 { private int M() => 3; A(string S) : this(4) => throw null; } interface I1 {} class Attr1 : System.Attribute {} "; var analyzer = new AnalyzerActions_01_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount0); Assert.Equal(1, analyzer.FireCountRecordStructDeclarationA); Assert.Equal(1, analyzer.FireCountRecordStructDeclarationACtor); Assert.Equal(1, analyzer.FireCount3); Assert.Equal(1, analyzer.FireCountSimpleBaseTypeI1onA); Assert.Equal(1, analyzer.FireCount5); Assert.Equal(1, analyzer.FireCountParameterListAPrimaryCtor); Assert.Equal(1, analyzer.FireCount7); Assert.Equal(1, analyzer.FireCountConstructorDeclaration); Assert.Equal(1, analyzer.FireCountStringParameterList); Assert.Equal(1, analyzer.FireCountThisConstructorInitializer); Assert.Equal(1, analyzer.FireCount11); Assert.Equal(1, analyzer.FireCount12); } private class AnalyzerActions_01_Analyzer : DiagnosticAnalyzer { public int FireCount0; public int FireCountRecordStructDeclarationA; public int FireCountRecordStructDeclarationACtor; public int FireCount3; public int FireCountSimpleBaseTypeI1onA; public int FireCount5; public int FireCountParameterListAPrimaryCtor; public int FireCount7; public int FireCountConstructorDeclaration; public int FireCountStringParameterList; public int FireCountThisConstructorInitializer; public int FireCount11; public int FireCount12; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterSyntaxNodeAction(Handle1, SyntaxKind.NumericLiteralExpression); context.RegisterSyntaxNodeAction(Handle2, SyntaxKind.EqualsValueClause); context.RegisterSyntaxNodeAction(Fail, SyntaxKind.BaseConstructorInitializer); context.RegisterSyntaxNodeAction(Handle3, SyntaxKind.ThisConstructorInitializer); context.RegisterSyntaxNodeAction(Handle4, SyntaxKind.ConstructorDeclaration); context.RegisterSyntaxNodeAction(Fail, SyntaxKind.PrimaryConstructorBaseType); context.RegisterSyntaxNodeAction(Handle6, SyntaxKind.RecordStructDeclaration); context.RegisterSyntaxNodeAction(Handle7, SyntaxKind.IdentifierName); context.RegisterSyntaxNodeAction(Handle8, SyntaxKind.SimpleBaseType); context.RegisterSyntaxNodeAction(Handle9, SyntaxKind.ParameterList); context.RegisterSyntaxNodeAction(Handle10, SyntaxKind.ArgumentList); } protected void Handle1(SyntaxNodeAnalysisContext context) { var literal = (LiteralExpressionSyntax)context.Node; switch (literal.ToString()) { case "0": Interlocked.Increment(ref FireCount0); Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); break; case "3": Interlocked.Increment(ref FireCount7); Assert.Equal("System.Int32 A.M()", context.ContainingSymbol.ToTestDisplayString()); break; case "4": Interlocked.Increment(ref FireCount12); Assert.Equal("A..ctor(System.String S)", context.ContainingSymbol.ToTestDisplayString()); break; default: Assert.True(false); break; } Assert.Same(literal.SyntaxTree, context.ContainingSymbol!.DeclaringSyntaxReferences.Single().SyntaxTree); } protected void Handle2(SyntaxNodeAnalysisContext context) { var equalsValue = (EqualsValueClauseSyntax)context.Node; switch (equalsValue.ToString()) { case "= 0": Interlocked.Increment(ref FireCount3); Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); break; default: Assert.True(false); break; } Assert.Same(equalsValue.SyntaxTree, context.ContainingSymbol!.DeclaringSyntaxReferences.Single().SyntaxTree); } protected void Handle3(SyntaxNodeAnalysisContext context) { var initializer = (ConstructorInitializerSyntax)context.Node; switch (initializer.ToString()) { case ": this(4)": Interlocked.Increment(ref FireCountThisConstructorInitializer); Assert.Equal("A..ctor(System.String S)", context.ContainingSymbol.ToTestDisplayString()); break; default: Assert.True(false); break; } Assert.Same(initializer.SyntaxTree, context.ContainingSymbol!.DeclaringSyntaxReferences.Single().SyntaxTree); } protected void Handle4(SyntaxNodeAnalysisContext context) { Interlocked.Increment(ref FireCountConstructorDeclaration); Assert.Equal("A..ctor(System.String S)", context.ContainingSymbol.ToTestDisplayString()); } protected void Fail(SyntaxNodeAnalysisContext context) { Assert.True(false); } protected void Handle6(SyntaxNodeAnalysisContext context) { var record = (RecordDeclarationSyntax)context.Node; Assert.Equal(SyntaxKind.RecordStructDeclaration, record.Kind()); switch (context.ContainingSymbol.ToTestDisplayString()) { case "A": Interlocked.Increment(ref FireCountRecordStructDeclarationA); break; case "A..ctor([System.Int32 X = 0])": Interlocked.Increment(ref FireCountRecordStructDeclarationACtor); break; default: Assert.True(false); break; } Assert.Same(record.SyntaxTree, context.ContainingSymbol!.DeclaringSyntaxReferences.Single().SyntaxTree); } protected void Handle7(SyntaxNodeAnalysisContext context) { var identifier = (IdentifierNameSyntax)context.Node; switch (identifier.Identifier.ValueText) { case "Attr1": Interlocked.Increment(ref FireCount5); Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); break; } } protected void Handle8(SyntaxNodeAnalysisContext context) { var baseType = (SimpleBaseTypeSyntax)context.Node; switch (baseType.ToString()) { case "I1": switch (context.ContainingSymbol.ToTestDisplayString()) { case "A": Interlocked.Increment(ref FireCountSimpleBaseTypeI1onA); break; default: Assert.True(false); break; } break; case "System.Attribute": break; default: Assert.True(false); break; } } protected void Handle9(SyntaxNodeAnalysisContext context) { var parameterList = (ParameterListSyntax)context.Node; switch (parameterList.ToString()) { case "([Attr1]int X = 0)": Interlocked.Increment(ref FireCountParameterListAPrimaryCtor); Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); break; case "(string S)": Interlocked.Increment(ref FireCountStringParameterList); Assert.Equal("A..ctor(System.String S)", context.ContainingSymbol.ToTestDisplayString()); break; case "()": break; default: Assert.True(false); break; } } protected void Handle10(SyntaxNodeAnalysisContext context) { var argumentList = (ArgumentListSyntax)context.Node; switch (argumentList.ToString()) { case "(4)": Interlocked.Increment(ref FireCount11); Assert.Equal("A..ctor(System.String S)", context.ContainingSymbol.ToTestDisplayString()); break; default: Assert.True(false); break; } } } [Fact] public void AnalyzerActions_02() { // Test RegisterSymbolAction var text1 = @" record struct A(int X = 0) {} record struct C { C(int Z = 4) {} } "; var analyzer = new AnalyzerActions_02_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount1); Assert.Equal(1, analyzer.FireCount2); Assert.Equal(1, analyzer.FireCount3); Assert.Equal(1, analyzer.FireCount4); Assert.Equal(1, analyzer.FireCount5); Assert.Equal(1, analyzer.FireCount6); Assert.Equal(1, analyzer.FireCount7); } private class AnalyzerActions_02_Analyzer : DiagnosticAnalyzer { public int FireCount1; public int FireCount2; public int FireCount3; public int FireCount4; public int FireCount5; public int FireCount6; public int FireCount7; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterSymbolAction(Handle, SymbolKind.Method); context.RegisterSymbolAction(Handle, SymbolKind.Property); context.RegisterSymbolAction(Handle, SymbolKind.Parameter); context.RegisterSymbolAction(Handle, SymbolKind.NamedType); } private void Handle(SymbolAnalysisContext context) { switch (context.Symbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": Interlocked.Increment(ref FireCount1); break; case "System.Int32 A.X { get; set; }": Interlocked.Increment(ref FireCount2); break; case "[System.Int32 X = 0]": Interlocked.Increment(ref FireCount3); break; case "C..ctor([System.Int32 Z = 4])": Interlocked.Increment(ref FireCount4); break; case "[System.Int32 Z = 4]": Interlocked.Increment(ref FireCount5); break; case "A": Interlocked.Increment(ref FireCount6); break; case "C": Interlocked.Increment(ref FireCount7); break; case "System.Runtime.CompilerServices.IsExternalInit": break; default: Assert.True(false); break; } } } [Fact] public void AnalyzerActions_03() { // Test RegisterSymbolStartAction var text1 = @" readonly record struct A(int X = 0) {} readonly record struct C { C(int Z = 4) {} } "; var analyzer = new AnalyzerActions_03_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount1); Assert.Equal(1, analyzer.FireCount2); Assert.Equal(0, analyzer.FireCount3); Assert.Equal(1, analyzer.FireCount4); Assert.Equal(0, analyzer.FireCount5); Assert.Equal(1, analyzer.FireCount6); Assert.Equal(1, analyzer.FireCount7); Assert.Equal(1, analyzer.FireCount8); Assert.Equal(1, analyzer.FireCount9); Assert.Equal(1, analyzer.FireCount10); Assert.Equal(1, analyzer.FireCount11); Assert.Equal(1, analyzer.FireCount12); } private class AnalyzerActions_03_Analyzer : DiagnosticAnalyzer { public int FireCount1; public int FireCount2; public int FireCount3; public int FireCount4; public int FireCount5; public int FireCount6; public int FireCount7; public int FireCount8; public int FireCount9; public int FireCount10; public int FireCount11; public int FireCount12; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterSymbolStartAction(Handle1, SymbolKind.Method); context.RegisterSymbolStartAction(Handle1, SymbolKind.Property); context.RegisterSymbolStartAction(Handle1, SymbolKind.Parameter); context.RegisterSymbolStartAction(Handle1, SymbolKind.NamedType); } private void Handle1(SymbolStartAnalysisContext context) { switch (context.Symbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": Interlocked.Increment(ref FireCount1); context.RegisterSymbolEndAction(Handle2); break; case "System.Int32 A.X { get; init; }": Interlocked.Increment(ref FireCount2); context.RegisterSymbolEndAction(Handle3); break; case "[System.Int32 X = 0]": Interlocked.Increment(ref FireCount3); break; case "C..ctor([System.Int32 Z = 4])": Interlocked.Increment(ref FireCount4); context.RegisterSymbolEndAction(Handle4); break; case "[System.Int32 Z = 4]": Interlocked.Increment(ref FireCount5); break; case "A": Interlocked.Increment(ref FireCount9); Assert.Equal(0, FireCount1); Assert.Equal(0, FireCount2); Assert.Equal(0, FireCount6); Assert.Equal(0, FireCount7); context.RegisterSymbolEndAction(Handle5); break; case "C": Interlocked.Increment(ref FireCount10); Assert.Equal(0, FireCount4); Assert.Equal(0, FireCount8); context.RegisterSymbolEndAction(Handle6); break; case "System.Runtime.CompilerServices.IsExternalInit": break; default: Assert.True(false); break; } } private void Handle2(SymbolAnalysisContext context) { Assert.Equal("A..ctor([System.Int32 X = 0])", context.Symbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount6); } private void Handle3(SymbolAnalysisContext context) { Assert.Equal("System.Int32 A.X { get; init; }", context.Symbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount7); } private void Handle4(SymbolAnalysisContext context) { Assert.Equal("C..ctor([System.Int32 Z = 4])", context.Symbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount8); } private void Handle5(SymbolAnalysisContext context) { Assert.Equal("A", context.Symbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount11); Assert.Equal(1, FireCount1); Assert.Equal(1, FireCount2); Assert.Equal(1, FireCount6); Assert.Equal(1, FireCount7); } private void Handle6(SymbolAnalysisContext context) { Assert.Equal("C", context.Symbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount12); Assert.Equal(1, FireCount4); Assert.Equal(1, FireCount8); } } [Fact] public void AnalyzerActions_04() { // Test RegisterOperationAction var text1 = @" record struct A([Attr1(100)]int X = 0) : I1 {} interface I1 {} "; var analyzer = new AnalyzerActions_04_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(0, analyzer.FireCount1); Assert.Equal(1, analyzer.FireCount6); Assert.Equal(1, analyzer.FireCount7); Assert.Equal(1, analyzer.FireCount14); } private class AnalyzerActions_04_Analyzer : DiagnosticAnalyzer { public int FireCount1; public int FireCount6; public int FireCount7; public int FireCount14; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterOperationAction(HandleConstructorBody, OperationKind.ConstructorBody); context.RegisterOperationAction(HandleInvocation, OperationKind.Invocation); context.RegisterOperationAction(HandleLiteral, OperationKind.Literal); context.RegisterOperationAction(HandleParameterInitializer, OperationKind.ParameterInitializer); context.RegisterOperationAction(Fail, OperationKind.PropertyInitializer); context.RegisterOperationAction(Fail, OperationKind.FieldInitializer); } protected void HandleConstructorBody(OperationAnalysisContext context) { switch (context.ContainingSymbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": Interlocked.Increment(ref FireCount1); Assert.Equal(SyntaxKind.RecordDeclaration, context.Operation.Syntax.Kind()); VerifyOperationTree((CSharpCompilation)context.Compilation, context.Operation, @""); break; default: Assert.True(false); break; } } protected void HandleInvocation(OperationAnalysisContext context) { Assert.True(false); } protected void HandleLiteral(OperationAnalysisContext context) { switch (context.Operation.Syntax.ToString()) { case "100": Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount6); break; case "0": Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount7); break; default: Assert.True(false); break; } } protected void HandleParameterInitializer(OperationAnalysisContext context) { switch (context.Operation.Syntax.ToString()) { case "= 0": Assert.Equal("A..ctor([System.Int32 X = 0])", context.ContainingSymbol.ToTestDisplayString()); Interlocked.Increment(ref FireCount14); break; default: Assert.True(false); break; } } protected void Fail(OperationAnalysisContext context) { Assert.True(false); } } [Fact] public void AnalyzerActions_05() { // Test RegisterOperationBlockAction var text1 = @" record struct A([Attr1(100)]int X = 0) : I1 {} interface I1 {} "; var analyzer = new AnalyzerActions_05_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount1); } private class AnalyzerActions_05_Analyzer : DiagnosticAnalyzer { public int FireCount1; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterOperationBlockAction(Handle); } private void Handle(OperationBlockAnalysisContext context) { switch (context.OwningSymbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": Interlocked.Increment(ref FireCount1); Assert.Equal(2, context.OperationBlocks.Length); Assert.Equal(OperationKind.ParameterInitializer, context.OperationBlocks[0].Kind); Assert.Equal("= 0", context.OperationBlocks[0].Syntax.ToString()); Assert.Equal(OperationKind.None, context.OperationBlocks[1].Kind); Assert.Equal("Attr1(100)", context.OperationBlocks[1].Syntax.ToString()); break; default: Assert.True(false); break; } } } [Fact] public void AnalyzerActions_07() { // Test RegisterCodeBlockAction var text1 = @" record struct A([Attr1(100)]int X = 0) : I1 { int M() => 3; } interface I1 {} "; var analyzer = new AnalyzerActions_07_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount1); Assert.Equal(1, analyzer.FireCount4); } private class AnalyzerActions_07_Analyzer : DiagnosticAnalyzer { public int FireCount1; public int FireCount4; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterCodeBlockAction(Handle); } private void Handle(CodeBlockAnalysisContext context) { switch (context.OwningSymbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": switch (context.CodeBlock) { case RecordDeclarationSyntax { Identifier: { ValueText: "A" } }: Interlocked.Increment(ref FireCount1); break; default: Assert.True(false); break; } break; case "System.Int32 A.M()": switch (context.CodeBlock) { case MethodDeclarationSyntax { Identifier: { ValueText: "M" } }: Interlocked.Increment(ref FireCount4); break; default: Assert.True(false); break; } break; default: Assert.True(false); break; } } } [Fact] public void AnalyzerActions_08() { // Test RegisterCodeBlockStartAction var text1 = @" record struct A([Attr1]int X = 0) : I1 { private int M() => 3; A(string S) : this(4) => throw null; } interface I1 {} "; var analyzer = new AnalyzerActions_08_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount100); Assert.Equal(1, analyzer.FireCount400); Assert.Equal(1, analyzer.FireCount500); Assert.Equal(1, analyzer.FireCount0); Assert.Equal(0, analyzer.FireCountRecordStructDeclarationA); Assert.Equal(0, analyzer.FireCountRecordStructDeclarationACtor); Assert.Equal(1, analyzer.FireCount3); Assert.Equal(0, analyzer.FireCountSimpleBaseTypeI1onA); Assert.Equal(1, analyzer.FireCount5); Assert.Equal(0, analyzer.FireCountParameterListAPrimaryCtor); Assert.Equal(1, analyzer.FireCount7); Assert.Equal(0, analyzer.FireCountConstructorDeclaration); Assert.Equal(0, analyzer.FireCountStringParameterList); Assert.Equal(1, analyzer.FireCountThisConstructorInitializer); Assert.Equal(1, analyzer.FireCount11); Assert.Equal(1, analyzer.FireCount12); Assert.Equal(1, analyzer.FireCount1000); Assert.Equal(1, analyzer.FireCount4000); Assert.Equal(1, analyzer.FireCount5000); } private class AnalyzerActions_08_Analyzer : AnalyzerActions_01_Analyzer { public int FireCount100; public int FireCount400; public int FireCount500; public int FireCount1000; public int FireCount4000; public int FireCount5000; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterCodeBlockStartAction<SyntaxKind>(Handle); } private void Handle(CodeBlockStartAnalysisContext<SyntaxKind> context) { switch (context.OwningSymbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": switch (context.CodeBlock) { case RecordDeclarationSyntax { Identifier: { ValueText: "A" } }: Interlocked.Increment(ref FireCount100); break; default: Assert.True(false); break; } break; case "System.Int32 A.M()": switch (context.CodeBlock) { case MethodDeclarationSyntax { Identifier: { ValueText: "M" } }: Interlocked.Increment(ref FireCount400); break; default: Assert.True(false); break; } break; case "A..ctor(System.String S)": switch (context.CodeBlock) { case ConstructorDeclarationSyntax { Identifier: { ValueText: "A" } }: Interlocked.Increment(ref FireCount500); break; default: Assert.True(false); break; } break; default: Assert.True(false); break; } context.RegisterSyntaxNodeAction(Handle1, SyntaxKind.NumericLiteralExpression); context.RegisterSyntaxNodeAction(Handle2, SyntaxKind.EqualsValueClause); context.RegisterSyntaxNodeAction(Fail, SyntaxKind.BaseConstructorInitializer); context.RegisterSyntaxNodeAction(Handle3, SyntaxKind.ThisConstructorInitializer); context.RegisterSyntaxNodeAction(Handle4, SyntaxKind.ConstructorDeclaration); context.RegisterSyntaxNodeAction(Fail, SyntaxKind.PrimaryConstructorBaseType); context.RegisterSyntaxNodeAction(Handle6, SyntaxKind.RecordStructDeclaration); context.RegisterSyntaxNodeAction(Handle7, SyntaxKind.IdentifierName); context.RegisterSyntaxNodeAction(Handle8, SyntaxKind.SimpleBaseType); context.RegisterSyntaxNodeAction(Handle9, SyntaxKind.ParameterList); context.RegisterSyntaxNodeAction(Handle10, SyntaxKind.ArgumentList); context.RegisterCodeBlockEndAction(Handle11); } private void Handle11(CodeBlockAnalysisContext context) { switch (context.OwningSymbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": switch (context.CodeBlock) { case RecordDeclarationSyntax { Identifier: { ValueText: "A" } }: Interlocked.Increment(ref FireCount1000); break; default: Assert.True(false); break; } break; case "System.Int32 A.M()": switch (context.CodeBlock) { case MethodDeclarationSyntax { Identifier: { ValueText: "M" } }: Interlocked.Increment(ref FireCount4000); break; default: Assert.True(false); break; } break; case "A..ctor(System.String S)": switch (context.CodeBlock) { case ConstructorDeclarationSyntax { Identifier: { ValueText: "A" } }: Interlocked.Increment(ref FireCount5000); break; default: Assert.True(false); break; } break; default: Assert.True(false); break; } } } [Fact] public void AnalyzerActions_09() { var text1 = @" record A([Attr1(100)]int X = 0) : I1 {} record B([Attr2(200)]int Y = 1) : A(2), I1 { int M() => 3; } record C : A, I1 { C([Attr3(300)]int Z = 4) : base(5) {} } interface I1 {} "; var analyzer = new AnalyzerActions_09_Analyzer(); var comp = CreateCompilation(text1); comp.GetAnalyzerDiagnostics(new[] { analyzer }, null).Verify(); Assert.Equal(1, analyzer.FireCount1); Assert.Equal(1, analyzer.FireCount2); Assert.Equal(1, analyzer.FireCount3); Assert.Equal(1, analyzer.FireCount4); Assert.Equal(1, analyzer.FireCount5); Assert.Equal(1, analyzer.FireCount6); Assert.Equal(1, analyzer.FireCount7); Assert.Equal(1, analyzer.FireCount8); Assert.Equal(1, analyzer.FireCount9); } private class AnalyzerActions_09_Analyzer : DiagnosticAnalyzer { public int FireCount1; public int FireCount2; public int FireCount3; public int FireCount4; public int FireCount5; public int FireCount6; public int FireCount7; public int FireCount8; public int FireCount9; private static readonly DiagnosticDescriptor Descriptor = new DiagnosticDescriptor("XY0000", "Test", "Test", "Test", DiagnosticSeverity.Warning, true, "Test", "Test"); public override ImmutableArray<DiagnosticDescriptor> SupportedDiagnostics => ImmutableArray.Create(Descriptor); public override void Initialize(AnalysisContext context) { context.RegisterSymbolAction(Handle1, SymbolKind.Method); context.RegisterSymbolAction(Handle2, SymbolKind.Property); context.RegisterSymbolAction(Handle3, SymbolKind.Parameter); } private void Handle1(SymbolAnalysisContext context) { switch (context.Symbol.ToTestDisplayString()) { case "A..ctor([System.Int32 X = 0])": Interlocked.Increment(ref FireCount1); break; case "B..ctor([System.Int32 Y = 1])": Interlocked.Increment(ref FireCount2); break; case "C..ctor([System.Int32 Z = 4])": Interlocked.Increment(ref FireCount3); break; case "System.Int32 B.M()": Interlocked.Increment(ref FireCount4); break; default: Assert.True(false); break; } } private void Handle2(SymbolAnalysisContext context) { switch (context.Symbol.ToTestDisplayString()) { case "System.Int32 A.X { get; init; }": Interlocked.Increment(ref FireCount5); break; case "System.Int32 B.Y { get; init; }": Interlocked.Increment(ref FireCount6); break; default: Assert.True(false); break; } } private void Handle3(SymbolAnalysisContext context) { switch (context.Symbol.ToTestDisplayString()) { case "[System.Int32 X = 0]": Interlocked.Increment(ref FireCount7); break; case "[System.Int32 Y = 1]": Interlocked.Increment(ref FireCount8); break; case "[System.Int32 Z = 4]": Interlocked.Increment(ref FireCount9); break; default: Assert.True(false); break; } } } [Fact] public void WithExprOnStruct_LangVersion() { var src = @" var b = new B() { X = 1 }; var b2 = b.M(); System.Console.Write(b2.X); System.Console.Write("" ""); System.Console.Write(b.X); public struct B { public int X { get; set; } public B M() /*<bind>*/{ return this with { X = 42 }; }/*</bind>*/ }"; var comp = CreateCompilation(src, parseOptions: TestOptions.Regular9); comp.VerifyEmitDiagnostics( // (13,16): error CS8773: Feature 'with on structs' is not available in C# 9.0. Please use language version 10.0 or greater. // return this with { X = 42 }; Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "this with { X = 42 }").WithArguments("with on structs", "10.0").WithLocation(13, 16) ); comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42 1"); verifier.VerifyIL("B.M", @" { // Code size 18 (0x12) .maxstack 2 .locals init (B V_0) IL_0000: ldarg.0 IL_0001: ldobj ""B"" IL_0006: stloc.0 IL_0007: ldloca.s V_0 IL_0009: ldc.i4.s 42 IL_000b: call ""void B.X.set"" IL_0010: ldloc.0 IL_0011: ret }"); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var with = tree.GetRoot().DescendantNodes().OfType<WithExpressionSyntax>().Single(); var type = model.GetTypeInfo(with); Assert.Equal("B", type.Type.ToTestDisplayString()); var operation = model.GetOperation(with); VerifyOperationTree(comp, operation, @" IWithOperation (OperationKind.With, Type: B) (Syntax: 'this with { X = 42 }') Operand: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B) (Syntax: 'this') CloneMethod: null Initializer: IObjectOrCollectionInitializerOperation (OperationKind.ObjectOrCollectionInitializer, Type: B) (Syntax: '{ X = 42 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'X = 42') Left: IPropertyReferenceOperation: System.Int32 B.X { get; set; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'X') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: B, IsImplicit) (Syntax: 'X') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 42) (Syntax: '42') "); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'this') Value: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B) (Syntax: 'this') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'X = 42') Left: IPropertyReferenceOperation: System.Int32 B.X { get; set; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 42) (Syntax: '42') Next (Return) Block[B2] IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Leaving: {R1} } Block[B2] - Exit Predecessors: [B1] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExprOnStruct_ControlFlow_DuplicateInitialization() { var src = @" public struct B { public int X { get; set; } public B M() /*<bind>*/{ return this with { X = 42, X = 43 }; }/*</bind>*/ }"; var expectedDiagnostics = new[] { // (8,36): error CS1912: Duplicate initialization of member 'X' // return this with { X = 42, X = 43 }; Diagnostic(ErrorCode.ERR_MemberAlreadyInitialized, "X").WithArguments("X").WithLocation(8, 36) }; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'this') Value: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B) (Syntax: 'this') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'X = 42') Left: IPropertyReferenceOperation: System.Int32 B.X { get; set; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 42) (Syntax: '42') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsInvalid) (Syntax: 'X = 43') Left: IPropertyReferenceOperation: System.Int32 B.X { get; set; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 43) (Syntax: '43') Next (Return) Block[B2] IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Leaving: {R1} } Block[B2] - Exit Predecessors: [B1] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExprOnStruct_ControlFlow_NestedInitializer() { var src = @" public struct C { public int Y { get; set; } } public struct B { public C X { get; set; } public B M() /*<bind>*/{ return this with { X = { Y = 1 } }; }/*</bind>*/ }"; var expectedDiagnostics = new[] { // (12,32): error CS1525: Invalid expression term '{' // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.ERR_InvalidExprTerm, "{").WithArguments("{").WithLocation(12, 32), // (12,32): error CS1513: } expected // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.ERR_RbraceExpected, "{").WithLocation(12, 32), // (12,32): error CS1002: ; expected // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "{").WithLocation(12, 32), // (12,34): error CS0103: The name 'Y' does not exist in the current context // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.ERR_NameNotInContext, "Y").WithArguments("Y").WithLocation(12, 34), // (12,34): warning CS0162: Unreachable code detected // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.WRN_UnreachableCode, "Y").WithLocation(12, 34), // (12,40): error CS1002: ; expected // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "}").WithLocation(12, 40), // (12,43): error CS1597: Semicolon after method or accessor block is not valid // return this with { X = { Y = 1 } }; Diagnostic(ErrorCode.ERR_UnexpectedSemicolon, ";").WithLocation(12, 43), // (14,1): error CS1022: Type or namespace definition, or end-of-file expected // } Diagnostic(ErrorCode.ERR_EOFExpected, "}").WithLocation(14, 1) }; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'this') Value: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B) (Syntax: 'this') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: C, IsInvalid) (Syntax: 'X = ') Left: IPropertyReferenceOperation: C B.X { get; set; } (OperationKind.PropertyReference, Type: C) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Right: IInvalidOperation (OperationKind.Invalid, Type: null, IsInvalid) (Syntax: '') Children(0) Next (Return) Block[B3] IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Leaving: {R1} } Block[B2] - Block [UnReachable] Predecessors (0) Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null, IsInvalid) (Syntax: 'Y = 1 ') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: ?, IsInvalid) (Syntax: 'Y = 1') Left: IInvalidOperation (OperationKind.Invalid, Type: ?, IsInvalid) (Syntax: 'Y') Children(0) Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 1) (Syntax: '1') Next (Regular) Block[B3] Block[B3] - Exit Predecessors: [B1] [B2] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExprOnStruct_ControlFlow_NonAssignmentExpression() { var src = @" public struct B { public int X { get; set; } public B M(int i, int j) /*<bind>*/{ return this with { i, j++, M2(), X = 2}; }/*</bind>*/ static int M2() => 0; }"; var expectedDiagnostics = new[] { // (8,28): error CS0747: Invalid initializer member declarator // return this with { i, j++, M2(), X = 2}; Diagnostic(ErrorCode.ERR_InvalidInitializerElementInitializer, "i").WithLocation(8, 28), // (8,31): error CS0747: Invalid initializer member declarator // return this with { i, j++, M2(), X = 2}; Diagnostic(ErrorCode.ERR_InvalidInitializerElementInitializer, "j++").WithLocation(8, 31), // (8,36): error CS0747: Invalid initializer member declarator // return this with { i, j++, M2(), X = 2}; Diagnostic(ErrorCode.ERR_InvalidInitializerElementInitializer, "M2()").WithLocation(8, 36) }; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (5) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'this') Value: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B) (Syntax: 'this') IInvalidOperation (OperationKind.Invalid, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'i') Children(1): IParameterReferenceOperation: i (OperationKind.ParameterReference, Type: System.Int32, IsInvalid) (Syntax: 'i') IInvalidOperation (OperationKind.Invalid, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'j++') Children(1): IIncrementOrDecrementOperation (Postfix) (OperationKind.Increment, Type: System.Int32, IsInvalid) (Syntax: 'j++') Target: IParameterReferenceOperation: j (OperationKind.ParameterReference, Type: System.Int32, IsInvalid) (Syntax: 'j') IInvalidOperation (OperationKind.Invalid, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'M2()') Children(1): IInvocationOperation (System.Int32 B.M2()) (OperationKind.Invocation, Type: System.Int32, IsInvalid) (Syntax: 'M2()') Instance Receiver: null Arguments(0) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'X = 2') Left: IPropertyReferenceOperation: System.Int32 B.X { get; set; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 2) (Syntax: '2') Next (Return) Block[B2] IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'this') Leaving: {R1} } Block[B2] - Exit Predecessors: [B1] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void ObjectCreationInitializer_ControlFlow_WithCoalescingExpressionForValue() { var src = @" public struct B { public string X; public void M(string hello) /*<bind>*/{ var x = new B() { X = Identity((string)null) ?? Identity(hello) }; }/*</bind>*/ T Identity<T>(T t) => t; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { Locals: [B x] CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (1) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'new B() { X ... ty(hello) }') Value: IObjectCreationOperation (Constructor: B..ctor()) (OperationKind.ObjectCreation, Type: B) (Syntax: 'new B() { X ... ty(hello) }') Arguments(0) Initializer: null Next (Regular) Block[B2] Entering: {R2} {R3} .locals {R2} { CaptureIds: [2] .locals {R3} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity((string)null)') Value: IInvocationOperation ( System.String B.Identity<System.String>(System.String t)) (OperationKind.Invocation, Type: System.String) (Syntax: 'Identity((string)null)') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B, IsImplicit) (Syntax: 'Identity') Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '(string)null') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.String, Constant: null) (Syntax: '(string)null') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILiteralOperation (OperationKind.Literal, Type: null, Constant: null) (Syntax: 'null') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Jump if True (Regular) to Block[B4] IIsNullOperation (OperationKind.IsNull, Type: System.Boolean, IsImplicit) (Syntax: 'Identity((string)null)') Operand: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity((string)null)') Leaving: {R3} Next (Regular) Block[B3] Block[B3] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity((string)null)') Value: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity((string)null)') Next (Regular) Block[B5] Leaving: {R3} } Block[B4] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(hello)') Value: IInvocationOperation ( System.String B.Identity<System.String>(System.String t)) (OperationKind.Invocation, Type: System.String) (Syntax: 'Identity(hello)') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B, IsImplicit) (Syntax: 'Identity') Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'hello') IParameterReferenceOperation: hello (OperationKind.ParameterReference, Type: System.String) (Syntax: 'hello') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Block[B5] - Block Predecessors: [B3] [B4] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.String) (Syntax: 'X = Identit ... tity(hello)') Left: IFieldReferenceOperation: System.String B.X (OperationKind.FieldReference, Type: System.String) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'new B() { X ... ty(hello) }') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity((s ... tity(hello)') Next (Regular) Block[B6] Leaving: {R2} } Block[B6] - Block Predecessors: [B5] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: B, IsImplicit) (Syntax: 'x = new B() ... ty(hello) }') Left: ILocalReferenceOperation: x (IsDeclaration: True) (OperationKind.LocalReference, Type: B, IsImplicit) (Syntax: 'x = new B() ... ty(hello) }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'new B() { X ... ty(hello) }') Next (Regular) Block[B7] Leaving: {R1} } Block[B7] - Exit Predecessors: [B6] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics); } [Fact] public void WithExprOnStruct_ControlFlow_WithCoalescingExpressionForValue() { var src = @" var b = new B() { X = string.Empty }; var b2 = b.M(""hello""); System.Console.Write(b2.X); public struct B { public string X; public B M(string hello) /*<bind>*/{ return Identity(this) with { X = Identity((string)null) ?? Identity(hello) }; }/*</bind>*/ T Identity<T>(T t) => t; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); CompileAndVerify(comp, expectedOutput: "hello"); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} .locals {R1} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (1) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(this)') Value: IInvocationOperation ( B B.Identity<B>(B t)) (OperationKind.Invocation, Type: B) (Syntax: 'Identity(this)') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B, IsImplicit) (Syntax: 'Identity') Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'this') IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B) (Syntax: 'this') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B2] Entering: {R2} {R3} .locals {R2} { CaptureIds: [2] .locals {R3} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity((string)null)') Value: IInvocationOperation ( System.String B.Identity<System.String>(System.String t)) (OperationKind.Invocation, Type: System.String) (Syntax: 'Identity((string)null)') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B, IsImplicit) (Syntax: 'Identity') Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '(string)null') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.String, Constant: null) (Syntax: '(string)null') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILiteralOperation (OperationKind.Literal, Type: null, Constant: null) (Syntax: 'null') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Jump if True (Regular) to Block[B4] IIsNullOperation (OperationKind.IsNull, Type: System.Boolean, IsImplicit) (Syntax: 'Identity((string)null)') Operand: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity((string)null)') Leaving: {R3} Next (Regular) Block[B3] Block[B3] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity((string)null)') Value: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity((string)null)') Next (Regular) Block[B5] Leaving: {R3} } Block[B4] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(hello)') Value: IInvocationOperation ( System.String B.Identity<System.String>(System.String t)) (OperationKind.Invocation, Type: System.String) (Syntax: 'Identity(hello)') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ContainingTypeInstance) (OperationKind.InstanceReference, Type: B, IsImplicit) (Syntax: 'Identity') Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'hello') IParameterReferenceOperation: hello (OperationKind.ParameterReference, Type: System.String) (Syntax: 'hello') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Block[B5] - Block Predecessors: [B3] [B4] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.String) (Syntax: 'X = Identit ... tity(hello)') Left: IFieldReferenceOperation: System.String B.X (OperationKind.FieldReference, Type: System.String) (Syntax: 'X') Instance Receiver: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'Identity(this)') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity((s ... tity(hello)') Next (Regular) Block[B6] Leaving: {R2} } Block[B6] - Block Predecessors: [B5] Statements (0) Next (Return) Block[B7] IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: B, IsImplicit) (Syntax: 'Identity(this)') Leaving: {R1} } Block[B7] - Exit Predecessors: [B6] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExprOnStruct_OnParameter() { var src = @" var b = new B() { X = 1 }; var b2 = B.M(b); System.Console.Write(b2.X); public struct B { public int X { get; set; } public static B M(B b) { return b with { X = 42 }; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42"); verifier.VerifyIL("B.M", @" { // Code size 13 (0xd) .maxstack 2 .locals init (B V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: call ""void B.X.set"" IL_000b: ldloc.0 IL_000c: ret }"); } [Fact] public void WithExprOnStruct_OnThis() { var src = @" record struct C { public int X { get; set; } C(string ignored) { _ = this with { X = 42 }; // 1 this = default; } } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (8,13): error CS0188: The 'this' object cannot be used before all of its fields have been assigned // _ = this with { X = 42 }; // 1 Diagnostic(ErrorCode.ERR_UseDefViolationThis, "this").WithArguments("this").WithLocation(8, 13) ); } [Fact] public void WithExprOnStruct_OnTStructParameter() { var src = @" var b = new B() { X = 1 }; var b2 = B.M(b); System.Console.Write(b2.X); public interface I { int X { get; set; } } public struct B : I { public int X { get; set; } public static T M<T>(T b) where T : struct, I { return b with { X = 42 }; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42"); verifier.VerifyIL("B.M<T>(T)", @" { // Code size 19 (0x13) .maxstack 2 .locals init (T V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: constrained. ""T"" IL_000c: callvirt ""void I.X.set"" IL_0011: ldloc.0 IL_0012: ret }"); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var with = tree.GetRoot().DescendantNodes().OfType<WithExpressionSyntax>().Single(); var type = model.GetTypeInfo(with); Assert.Equal("T", type.Type.ToTestDisplayString()); } [Fact] public void WithExprOnStruct_OnRecordStructParameter() { var src = @" var b = new B(1); var b2 = B.M(b); System.Console.Write(b2.X); public record struct B(int X) { public static B M(B b) { return b with { X = 42 }; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42"); verifier.VerifyIL("B.M", @" { // Code size 13 (0xd) .maxstack 2 .locals init (B V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: call ""void B.X.set"" IL_000b: ldloc.0 IL_000c: ret }"); } [Fact] public void WithExprOnStruct_OnRecordStructParameter_Readonly() { var src = @" var b = new B(1, 2); var b2 = B.M(b); System.Console.Write(b2.X); System.Console.Write(b2.Y); public readonly record struct B(int X, int Y) { public static B M(B b) { return b with { X = 42, Y = 43 }; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "4243", verify: Verification.Skipped /* init-only */); verifier.VerifyIL("B.M", @" { // Code size 22 (0x16) .maxstack 2 .locals init (B V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: call ""void B.X.init"" IL_000b: ldloca.s V_0 IL_000d: ldc.i4.s 43 IL_000f: call ""void B.Y.init"" IL_0014: ldloc.0 IL_0015: ret }"); } [Fact] public void WithExprOnStruct_OnTuple() { var src = @" class C { static void Main() { var b = (1, 2); var b2 = M(b); System.Console.Write(b2.Item1); System.Console.Write(b2.Item2); } static (int, int) M((int, int) b) { return b with { Item1 = 42, Item2 = 43 }; } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview, options: TestOptions.ReleaseExe); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "4243"); verifier.VerifyIL("C.M", @" { // Code size 22 (0x16) .maxstack 2 .locals init (System.ValueTuple<int, int> V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: stfld ""int System.ValueTuple<int, int>.Item1"" IL_000b: ldloca.s V_0 IL_000d: ldc.i4.s 43 IL_000f: stfld ""int System.ValueTuple<int, int>.Item2"" IL_0014: ldloc.0 IL_0015: ret }"); } [Fact] public void WithExprOnStruct_OnTuple_WithNames() { var src = @" var b = (1, 2); var b2 = M(b); System.Console.Write(b2.Item1); System.Console.Write(b2.Item2); static (int, int) M((int X, int Y) b) { return b with { X = 42, Y = 43 }; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "4243"); verifier.VerifyIL("Program.<<Main>$>g__M|0_0(System.ValueTuple<int, int>)", @" { // Code size 22 (0x16) .maxstack 2 .locals init (System.ValueTuple<int, int> V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: stfld ""int System.ValueTuple<int, int>.Item1"" IL_000b: ldloca.s V_0 IL_000d: ldc.i4.s 43 IL_000f: stfld ""int System.ValueTuple<int, int>.Item2"" IL_0014: ldloc.0 IL_0015: ret }"); } [Fact] public void WithExprOnStruct_OnTuple_LongTuple() { var src = @" var b = (1, 2, 3, 4, 5, 6, 7, 8); var b2 = M(b); System.Console.Write(b2.Item7); System.Console.Write(b2.Item8); static (int, int, int, int, int, int, int, int) M((int, int, int, int, int, int, int, int) b) { return b with { Item7 = 42, Item8 = 43 }; }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "4243"); verifier.VerifyIL("Program.<<Main>$>g__M|0_0(System.ValueTuple<int, int, int, int, int, int, int, System.ValueTuple<int>>)", @" { // Code size 27 (0x1b) .maxstack 2 .locals init (System.ValueTuple<int, int, int, int, int, int, int, System.ValueTuple<int>> V_0) IL_0000: ldarg.0 IL_0001: stloc.0 IL_0002: ldloca.s V_0 IL_0004: ldc.i4.s 42 IL_0006: stfld ""int System.ValueTuple<int, int, int, int, int, int, int, System.ValueTuple<int>>.Item7"" IL_000b: ldloca.s V_0 IL_000d: ldflda ""System.ValueTuple<int> System.ValueTuple<int, int, int, int, int, int, int, System.ValueTuple<int>>.Rest"" IL_0012: ldc.i4.s 43 IL_0014: stfld ""int System.ValueTuple<int>.Item1"" IL_0019: ldloc.0 IL_001a: ret }"); } [Fact] public void WithExprOnStruct_OnReadonlyField() { var src = @" var b = new B { X = 1 }; // 1 public struct B { public readonly int X; public B M() { return this with { X = 42 }; // 2 } public static B M2(B b) { return b with { X = 42 }; // 3 } public B(int i) { this = default; _ = this with { X = 42 }; // 4 } }"; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (2,17): error CS0191: A readonly field cannot be assigned to (except in a constructor or init-only setter of the type in which the field is defined or a variable initializer) // var b = new B { X = 1 }; // 1 Diagnostic(ErrorCode.ERR_AssgReadonly, "X").WithLocation(2, 17), // (9,28): error CS0191: A readonly field cannot be assigned to (except in a constructor or init-only setter of the type in which the field is defined or a variable initializer) // return this with { X = 42 }; // 2 Diagnostic(ErrorCode.ERR_AssgReadonly, "X").WithLocation(9, 28), // (13,25): error CS0191: A readonly field cannot be assigned to (except in a constructor or init-only setter of the type in which the field is defined or a variable initializer) // return b with { X = 42 }; // 3 Diagnostic(ErrorCode.ERR_AssgReadonly, "X").WithLocation(13, 25), // (18,25): error CS0191: A readonly field cannot be assigned to (except in a constructor or init-only setter of the type in which the field is defined or a variable initializer) // _ = this with { X = 42 }; // 4 Diagnostic(ErrorCode.ERR_AssgReadonly, "X").WithLocation(18, 25) ); } [Fact] public void WithExprOnStruct_OnEnum() { var src = @" public enum E { } class C { static E M(E e) { return e with { }; } }"; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics(); } [Fact] public void WithExprOnStruct_OnPointer() { var src = @" unsafe class C { static int* M(int* i) { return i with { }; } }"; var comp = CreateCompilation(src, options: TestOptions.UnsafeReleaseDll, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics( // (6,16): error CS8858: The receiver type 'int*' is not a valid record type and is not a struct type. // return i with { }; Diagnostic(ErrorCode.ERR_CannotClone, "i").WithArguments("int*").WithLocation(6, 16) ); } [Fact] public void WithExprOnStruct_OnInterface() { var src = @" public interface I { int X { get; set; } } class C { static I M(I i) { return i with { X = 42 }; } }"; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (10,16): error CS8858: The receiver type 'I' is not a valid record type and is not a value type. // return i with { X = 42 }; Diagnostic(ErrorCode.ERR_CannotClone, "i").WithArguments("I").WithLocation(10, 16) ); } [Fact] public void WithExprOnStruct_OnRefStruct() { // Similar to test RefLikeObjInitializers but with `with` expressions var text = @" using System; class Program { static S2 Test1() { S1 outer = default; S1 inner = stackalloc int[1]; // error return new S2() with { Field1 = outer, Field2 = inner }; } static S2 Test2() { S1 outer = default; S1 inner = stackalloc int[1]; S2 result; // error result = new S2() with { Field1 = inner, Field2 = outer }; return result; } static S2 Test3() { S1 outer = default; S1 inner = stackalloc int[1]; return new S2() with { Field1 = outer, Field2 = outer }; } public ref struct S1 { public static implicit operator S1(Span<int> o) => default; } public ref struct S2 { public S1 Field1; public S1 Field2; } } "; CreateCompilationWithMscorlibAndSpan(text, parseOptions: TestOptions.RegularPreview).VerifyDiagnostics( // (12,48): error CS8352: Cannot use local 'inner' in this context because it may expose referenced variables outside of their declaration scope // return new S2() with { Field1 = outer, Field2 = inner }; Diagnostic(ErrorCode.ERR_EscapeLocal, "Field2 = inner").WithArguments("inner").WithLocation(12, 48), // (23,34): error CS8352: Cannot use local 'inner' in this context because it may expose referenced variables outside of their declaration scope // result = new S2() with { Field1 = inner, Field2 = outer }; Diagnostic(ErrorCode.ERR_EscapeLocal, "Field1 = inner").WithArguments("inner").WithLocation(23, 34) ); } [Fact] public void WithExprOnStruct_OnRefStruct_ReceiverMayWrap() { // Similar to test LocalWithNoInitializerEscape but wrapping method is used as receiver for `with` expression var text = @" using System; class Program { static void Main() { S1 sp; Span<int> local = stackalloc int[1]; sp = MayWrap(ref local) with { }; // 1, 2 } static S1 MayWrap(ref Span<int> arg) { return default; } ref struct S1 { public ref int this[int i] => throw null; } } "; CreateCompilationWithMscorlibAndSpan(text, parseOptions: TestOptions.RegularPreview).VerifyDiagnostics( // (9,26): error CS8352: Cannot use local 'local' in this context because it may expose referenced variables outside of their declaration scope // sp = MayWrap(ref local) with { }; // 1, 2 Diagnostic(ErrorCode.ERR_EscapeLocal, "local").WithArguments("local").WithLocation(9, 26), // (9,14): error CS8347: Cannot use a result of 'Program.MayWrap(ref Span<int>)' in this context because it may expose variables referenced by parameter 'arg' outside of their declaration scope // sp = MayWrap(ref local) with { }; // 1, 2 Diagnostic(ErrorCode.ERR_EscapeCall, "MayWrap(ref local)").WithArguments("Program.MayWrap(ref System.Span<int>)", "arg").WithLocation(9, 14) ); } [Fact] public void WithExprOnStruct_OnRefStruct_ReceiverMayWrap_02() { var text = @" using System; class Program { static void Main() { Span<int> local = stackalloc int[1]; S1 sp = MayWrap(ref local) with { }; } static S1 MayWrap(ref Span<int> arg) { return default; } ref struct S1 { public ref int this[int i] => throw null; } } "; CreateCompilationWithMscorlibAndSpan(text, parseOptions: TestOptions.RegularPreview).VerifyDiagnostics(); } [Fact] public void WithExpr_NullableAnalysis_01() { var src = @" #nullable enable record struct B(int X) { static void M(B b) { string? s = null; _ = b with { X = M(out s) }; s.ToString(); } static int M(out string s) { s = ""a""; return 42; } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics(); } [Fact] public void WithExpr_NullableAnalysis_02() { var src = @" #nullable enable record struct B(string X) { static void M(B b, string? s) { b.X.ToString(); _ = b with { X = s }; // 1 b.X.ToString(); // 2 } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (8,26): warning CS8601: Possible null reference assignment. // _ = b with { X = s }; // 1 Diagnostic(ErrorCode.WRN_NullReferenceAssignment, "s").WithLocation(8, 26)); } [Fact] public void WithExpr_NullableAnalysis_03() { var src = @" #nullable enable record struct B(string? X) { static void M1(B b, string s, bool flag) { if (flag) { b.X.ToString(); } // 1 _ = b with { X = s }; if (flag) { b.X.ToString(); } // 2 } static void M2(B b, string s, bool flag) { if (flag) { b.X.ToString(); } // 3 b = b with { X = s }; if (flag) { b.X.ToString(); } } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (7,21): warning CS8602: Dereference of a possibly null reference. // if (flag) { b.X.ToString(); } // 1 Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.X").WithLocation(7, 21), // (9,21): warning CS8602: Dereference of a possibly null reference. // if (flag) { b.X.ToString(); } // 2 Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.X").WithLocation(9, 21), // (14,21): warning CS8602: Dereference of a possibly null reference. // if (flag) { b.X.ToString(); } // 3 Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.X").WithLocation(14, 21)); } [Fact, WorkItem(44763, "https://github.com/dotnet/roslyn/issues/44763")] public void WithExpr_NullableAnalysis_05() { var src = @" #nullable enable record struct B(string? X, string? Y) { static void M1(bool flag) { B b = new B(""hello"", null); if (flag) { b.X.ToString(); // shouldn't warn b.Y.ToString(); // 1 } b = b with { Y = ""world"" }; b.X.ToString(); // shouldn't warn b.Y.ToString(); } }"; // records should propagate the nullability of the // constructor arguments to the corresponding properties. // https://github.com/dotnet/roslyn/issues/44763 var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (10,13): warning CS8602: Dereference of a possibly null reference. // b.X.ToString(); // shouldn't warn Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.X").WithLocation(10, 13), // (11,13): warning CS8602: Dereference of a possibly null reference. // b.Y.ToString(); // 1 Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.Y").WithLocation(11, 13), // (15,9): warning CS8602: Dereference of a possibly null reference. // b.X.ToString(); // shouldn't warn Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.X").WithLocation(15, 9)); } [Fact] public void WithExpr_NullableAnalysis_06() { var src = @" #nullable enable struct B { public string? X { get; init; } public string? Y { get; init; } static void M1(bool flag) { B b = new B { X = ""hello"", Y = null }; if (flag) { b.X.ToString(); b.Y.ToString(); // 1 } b = b with { Y = ""world"" }; b.X.ToString(); b.Y.ToString(); } }"; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (14,13): warning CS8602: Dereference of a possibly null reference. // b.Y.ToString(); // 1 Diagnostic(ErrorCode.WRN_NullReferenceReceiver, "b.Y").WithLocation(14, 13) ); } [Fact] public void WithExprAssignToRef1() { var src = @" using System; record struct C(int Y) { private readonly int[] _a = new[] { 0 }; public ref int X => ref _a[0]; public static void Main() { var c = new C(0) { X = 5 }; Console.WriteLine(c.X); c = c with { X = 1 }; Console.WriteLine(c.X); } }"; var verifier = CompileAndVerify(src, expectedOutput: @" 5 1").VerifyDiagnostics(); verifier.VerifyIL("C.Main", @" { // Code size 59 (0x3b) .maxstack 2 .locals init (C V_0, //c C V_1) IL_0000: ldloca.s V_1 IL_0002: ldc.i4.0 IL_0003: call ""C..ctor(int)"" IL_0008: ldloca.s V_1 IL_000a: call ""ref int C.X.get"" IL_000f: ldc.i4.5 IL_0010: stind.i4 IL_0011: ldloc.1 IL_0012: stloc.0 IL_0013: ldloca.s V_0 IL_0015: call ""ref int C.X.get"" IL_001a: ldind.i4 IL_001b: call ""void System.Console.WriteLine(int)"" IL_0020: ldloc.0 IL_0021: stloc.1 IL_0022: ldloca.s V_1 IL_0024: call ""ref int C.X.get"" IL_0029: ldc.i4.1 IL_002a: stind.i4 IL_002b: ldloc.1 IL_002c: stloc.0 IL_002d: ldloca.s V_0 IL_002f: call ""ref int C.X.get"" IL_0034: ldind.i4 IL_0035: call ""void System.Console.WriteLine(int)"" IL_003a: ret }"); } [Fact] public void WithExpressionSameLHS() { var comp = CreateCompilation(@" record struct C(int X) { public static void Main() { var c = new C(0); c = c with { X = 1, X = 2}; } }"); comp.VerifyDiagnostics( // (7,29): error CS1912: Duplicate initialization of member 'X' // c = c with { X = 1, X = 2}; Diagnostic(ErrorCode.ERR_MemberAlreadyInitialized, "X").WithArguments("X").WithLocation(7, 29) ); } [Fact] public void WithExpr_AnonymousType_ChangeAllProperties() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var a = new { A = 10, B = 20 }; var b = Identity(a) with { A = Identity(30), B = Identity(40) }; System.Console.Write(b); }/*</bind>*/ static T Identity<T>(T t) { System.Console.Write($""Identity({t}) ""); return t; } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.Regular9); comp.VerifyEmitDiagnostics( // (9,17): error CS8773: Feature 'with on anonymous types' is not available in C# 9.0. Please use language version 10.0 or greater. // var b = Identity(a) with { A = Identity(30), B = Identity(40) }; Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "Identity(a) with { A = Identity(30), B = Identity(40) }").WithArguments("with on anonymous types", "10.0").WithLocation(9, 17) ); comp = CreateCompilation(src, parseOptions: TestOptions.Regular10); comp.VerifyEmitDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "Identity({ A = 10, B = 20 }) Identity(30) Identity(40) { A = 30, B = 40 }"); verifier.VerifyIL("C.M", @" { // Code size 42 (0x2a) .maxstack 2 .locals init (int V_0) IL_0000: ldc.i4.s 10 IL_0002: ldc.i4.s 20 IL_0004: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0009: call ""<anonymous type: int A, int B> C.Identity<<anonymous type: int A, int B>>(<anonymous type: int A, int B>)"" IL_000e: pop IL_000f: ldc.i4.s 30 IL_0011: call ""int C.Identity<int>(int)"" IL_0016: ldc.i4.s 40 IL_0018: call ""int C.Identity<int>(int)"" IL_001d: stloc.0 IL_001e: ldloc.0 IL_001f: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0024: call ""void System.Console.Write(object)"" IL_0029: ret } "); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 B> a] [<anonymous type: System.Int32 A, System.Int32 B> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'new { A = 10, B = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20) (Syntax: 'B = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} } .locals {R3} { CaptureIds: [2] [3] Block[B2] - Block Predecessors: [B1] Statements (4) IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 B> C.Identity<<anonymous type: System.Int32 A, System.Int32 B>>(<anonymous type: System.Int32 A, System.Int32 B> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(30)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(30)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '30') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(40)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(40)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '40') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 40) (Syntax: '40') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = Identit ... ntity(40) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = Identit ... ntity(40) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a) ... ntity(40) }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B3] Leaving: {R3} } Block[B3] - Block Predecessors: [B2] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B4] Leaving: {R1} } Block[B4] - Exit Predecessors: [B3] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ChangeAllProperties_ReverseOrder() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var a = new { A = 10, B = 20 }; var b = Identity(a) with { B = Identity(40), A = Identity(30) }; System.Console.Write(b); }/*</bind>*/ static T Identity<T>(T t) { System.Console.Write($""Identity({t}) ""); return t; } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "Identity({ A = 10, B = 20 }) Identity(40) Identity(30) { A = 30, B = 40 }"); verifier.VerifyIL("C.M", @" { // Code size 42 (0x2a) .maxstack 2 .locals init (int V_0) IL_0000: ldc.i4.s 10 IL_0002: ldc.i4.s 20 IL_0004: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0009: call ""<anonymous type: int A, int B> C.Identity<<anonymous type: int A, int B>>(<anonymous type: int A, int B>)"" IL_000e: pop IL_000f: ldc.i4.s 40 IL_0011: call ""int C.Identity<int>(int)"" IL_0016: stloc.0 IL_0017: ldc.i4.s 30 IL_0019: call ""int C.Identity<int>(int)"" IL_001e: ldloc.0 IL_001f: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0024: call ""void System.Console.Write(object)"" IL_0029: ret } "); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 B> a] [<anonymous type: System.Int32 A, System.Int32 B> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'new { A = 10, B = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20) (Syntax: 'B = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} } .locals {R3} { CaptureIds: [2] [3] Block[B2] - Block Predecessors: [B1] Statements (4) IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 B> C.Identity<<anonymous type: System.Int32 A, System.Int32 B>>(<anonymous type: System.Int32 A, System.Int32 B> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(40)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(40)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '40') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 40) (Syntax: '40') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(30)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(30)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '30') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = Identit ... ntity(30) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = Identit ... ntity(30) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a) ... ntity(30) }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B3] Leaving: {R3} } Block[B3] - Block Predecessors: [B2] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B4] Leaving: {R1} } Block[B4] - Exit Predecessors: [B3] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ChangeNoProperty() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var a = new { A = 10, B = 20 }; var b = M2(a) with { }; System.Console.Write(b); }/*</bind>*/ static T M2<T>(T t) { System.Console.Write(""M2 ""); return t; } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "M2 { A = 10, B = 20 }"); verifier.VerifyIL("C.M", @" { // Code size 38 (0x26) .maxstack 2 .locals init (<>f__AnonymousType0<int, int> V_0) IL_0000: ldc.i4.s 10 IL_0002: ldc.i4.s 20 IL_0004: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0009: call ""<anonymous type: int A, int B> C.M2<<anonymous type: int A, int B>>(<anonymous type: int A, int B>)"" IL_000e: stloc.0 IL_000f: ldloc.0 IL_0010: callvirt ""int <>f__AnonymousType0<int, int>.A.get"" IL_0015: ldloc.0 IL_0016: callvirt ""int <>f__AnonymousType0<int, int>.B.get"" IL_001b: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0020: call ""void System.Console.Write(object)"" IL_0025: ret } "); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 B> a] [<anonymous type: System.Int32 A, System.Int32 B> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'new { A = 10, B = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20) (Syntax: 'B = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [3] [4] .locals {R4} { CaptureIds: [2] Block[B2] - Block Predecessors: [B1] Statements (3) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'M2(a)') Value: IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 B> C.M2<<anonymous type: System.Int32 A, System.Int32 B>>(<anonymous type: System.Int32 A, System.Int32 B> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'M2(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'M2(a) with { }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'M2(a) with { }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'M2(a)') IFlowCaptureOperation: 4 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'M2(a) with { }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'M2(a) with { }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'M2(a)') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = M2(a) with { }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = M2(a) with { }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'M2(a) with { }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'M2(a) with { }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'M2(a) with { }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'M2(a) with { }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'M2(a)') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'M2(a) with { }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'M2(a) with { }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'M2(a) with { }') Right: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'M2(a)') Next (Regular) Block[B4] Leaving: {R3} } Block[B4] - Block Predecessors: [B3] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ChangeOneProperty() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var a = new { A = 10, B = 20 }; var b = a with { B = Identity(30) }; System.Console.Write(b); }/*</bind>*/ static T Identity<T>(T t) => t; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "{ A = 10, B = 30 }"); verifier.VerifyIL("C.M", @" { // Code size 34 (0x22) .maxstack 2 .locals init (int V_0) IL_0000: ldc.i4.s 10 IL_0002: ldc.i4.s 20 IL_0004: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0009: ldc.i4.s 30 IL_000b: call ""int C.Identity<int>(int)"" IL_0010: stloc.0 IL_0011: callvirt ""int <>f__AnonymousType0<int, int>.A.get"" IL_0016: ldloc.0 IL_0017: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_001c: call ""void System.Console.Write(object)"" IL_0021: ret } "); var tree = comp.SyntaxTrees.Single(); var model = comp.GetSemanticModel(tree, ignoreAccessibility: false); var withExpr = tree.GetRoot().DescendantNodes().OfType<WithExpressionSyntax>().Single(); var operation = model.GetOperation(withExpr); VerifyOperationTree(comp, operation, @" IWithOperation (OperationKind.With, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a with { B ... ntity(30) }') Operand: ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') CloneMethod: null Initializer: IObjectOrCollectionInitializerOperation (OperationKind.ObjectOrCollectionInitializer, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: '{ B = Identity(30) }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32) (Syntax: 'B = Identity(30)') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'B') Right: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(30)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '30') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) "); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 B> a] [<anonymous type: System.Int32 A, System.Int32 B> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'new { A = 10, B = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20) (Syntax: 'B = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [3] [4] .locals {R4} { CaptureIds: [2] Block[B2] - Block Predecessors: [B1] Statements (3) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(30)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(30)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '30') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 4 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = a with ... ntity(30) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = a with ... ntity(30) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a with { B ... ntity(30) }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Right: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a with { B ... ntity(30) }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R3} } Block[B4] - Block Predecessors: [B3] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ChangeOneProperty_WithMethodCallForTarget() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var a = new { A = 10, B = 20 }; var b = Identity(a) with { B = 30 }; System.Console.Write(b); }/*</bind>*/ static T Identity<T>(T t) => t; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "{ A = 10, B = 30 }"); verifier.VerifyIL("C.M", @" { // Code size 34 (0x22) .maxstack 2 .locals init (int V_0) IL_0000: ldc.i4.s 10 IL_0002: ldc.i4.s 20 IL_0004: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_0009: call ""<anonymous type: int A, int B> C.Identity<<anonymous type: int A, int B>>(<anonymous type: int A, int B>)"" IL_000e: ldc.i4.s 30 IL_0010: stloc.0 IL_0011: callvirt ""int <>f__AnonymousType0<int, int>.A.get"" IL_0016: ldloc.0 IL_0017: newobj ""<>f__AnonymousType0<int, int>..ctor(int, int)"" IL_001c: call ""void System.Console.Write(object)"" IL_0021: ret } "); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 B> a] [<anonymous type: System.Int32 A, System.Int32 B> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'new { A = 10, B = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20) (Syntax: 'B = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [3] [4] .locals {R4} { CaptureIds: [2] Block[B2] - Block Predecessors: [B1] Statements (3) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(a)') Value: IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 B> C.Identity<<anonymous type: System.Int32 A, System.Int32 B>>(<anonymous type: System.Int32 A, System.Int32 B> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '30') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') IFlowCaptureOperation: 4 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = Identit ... { B = 30 }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = Identit ... { B = 30 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a) ... { B = 30 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Right: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... { B = 30 }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B4] Leaving: {R3} } Block[B4] - Block Predecessors: [B3] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ChangeOneProperty_WithCoalescingExpressionForTarget() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var a = new { A = 10, B = 20 }; var b = (Identity(a) ?? Identity2(a)) with { B = 30 }; System.Console.Write(b); }/*</bind>*/ static T Identity<T>(T t) => t; static T Identity2<T>(T t) => t; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "{ A = 10, B = 30 }"); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 B> a] [<anonymous type: System.Int32 A, System.Int32 B> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'a = new { A ... 0, B = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'new { A = 10, B = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20) (Syntax: 'B = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'new { A = 10, B = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} {R5} } .locals {R3} { CaptureIds: [4] [5] .locals {R4} { CaptureIds: [2] .locals {R5} { CaptureIds: [3] Block[B2] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(a)') Value: IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 B> C.Identity<<anonymous type: System.Int32 A, System.Int32 B>>(<anonymous type: System.Int32 A, System.Int32 B> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Jump if True (Regular) to Block[B4] IIsNullOperation (OperationKind.IsNull, Type: System.Boolean, IsImplicit) (Syntax: 'Identity(a)') Operand: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') Leaving: {R5} Next (Regular) Block[B3] Block[B3] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(a)') Value: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B5] Leaving: {R5} } Block[B4] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity2(a)') Value: IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 B> C.Identity2<<anonymous type: System.Int32 A, System.Int32 B>>(<anonymous type: System.Int32 A, System.Int32 B> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'Identity2(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Block[B5] - Block Predecessors: [B3] [B4] Statements (2) IFlowCaptureOperation: 4 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '30') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') IFlowCaptureOperation: 5 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... dentity2(a)') Next (Regular) Block[B6] Leaving: {R4} } Block[B6] - Block Predecessors: [B5] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = (Identi ... { B = 30 }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'b = (Identi ... { B = 30 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: '(Identity(a ... { B = 30 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Right: IFlowCaptureReferenceOperation: 5 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... dentity2(a)') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 B>.B { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: '(Identity(a ... { B = 30 }') Right: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 B>, IsImplicit) (Syntax: 'Identity(a) ... dentity2(a)') Next (Regular) Block[B7] Leaving: {R3} } Block[B7] - Block Predecessors: [B6] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 B>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B8] Leaving: {R1} } Block[B8] - Exit Predecessors: [B7] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ChangeOneProperty_WithCoalescingExpressionForValue() { var src = @" C.M(""hello"", ""world""); public class C { public static void M(string hello, string world) /*<bind>*/{ var x = new { A = hello, B = string.Empty }; var y = x with { B = Identity(null) ?? Identity2(world) }; System.Console.Write(y); }/*</bind>*/ static string Identity(string t) => t; static string Identity2(string t) => t; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(); CompileAndVerify(comp, expectedOutput: "{ A = hello, B = world }"); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.String A, System.String B> x] [<anonymous type: System.String A, System.String B> y] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'hello') Value: IParameterReferenceOperation: hello (OperationKind.ParameterReference, Type: System.String) (Syntax: 'hello') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'string.Empty') Value: IFieldReferenceOperation: System.String System.String.Empty (Static) (OperationKind.FieldReference, Type: System.String) (Syntax: 'string.Empty') Instance Receiver: null ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x = new { A ... ing.Empty }') Left: ILocalReferenceOperation: x (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x = new { A ... ing.Empty }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.String A, System.String B>) (Syntax: 'new { A = h ... ing.Empty }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.String) (Syntax: 'A = hello') Left: IPropertyReferenceOperation: System.String <anonymous type: System.String A, System.String B>.A { get; } (OperationKind.PropertyReference, Type: System.String) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'new { A = h ... ing.Empty }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'hello') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.String) (Syntax: 'B = string.Empty') Left: IPropertyReferenceOperation: System.String <anonymous type: System.String A, System.String B>.B { get; } (OperationKind.PropertyReference, Type: System.String) (Syntax: 'B') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'new { A = h ... ing.Empty }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'string.Empty') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [3] [5] .locals {R4} { CaptureIds: [2] Block[B2] - Block Predecessors: [B1] Statements (1) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'x') Value: ILocalReferenceOperation: x (OperationKind.LocalReference, Type: <anonymous type: System.String A, System.String B>) (Syntax: 'x') Next (Regular) Block[B3] Entering: {R5} .locals {R5} { CaptureIds: [4] Block[B3] - Block Predecessors: [B2] Statements (1) IFlowCaptureOperation: 4 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(null)') Value: IInvocationOperation (System.String C.Identity(System.String t)) (OperationKind.Invocation, Type: System.String) (Syntax: 'Identity(null)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'null') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.String, Constant: null, IsImplicit) (Syntax: 'null') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILiteralOperation (OperationKind.Literal, Type: null, Constant: null) (Syntax: 'null') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Jump if True (Regular) to Block[B5] IIsNullOperation (OperationKind.IsNull, Type: System.Boolean, IsImplicit) (Syntax: 'Identity(null)') Operand: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity(null)') Leaving: {R5} Next (Regular) Block[B4] Block[B4] - Block Predecessors: [B3] Statements (1) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(null)') Value: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: System.String, IsImplicit) (Syntax: 'Identity(null)') Next (Regular) Block[B6] Leaving: {R5} } Block[B5] - Block Predecessors: [B3] Statements (1) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity2(world)') Value: IInvocationOperation (System.String C.Identity2(System.String t)) (OperationKind.Invocation, Type: System.String) (Syntax: 'Identity2(world)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'world') IParameterReferenceOperation: world (OperationKind.ParameterReference, Type: System.String) (Syntax: 'world') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B6] Block[B6] - Block Predecessors: [B4] [B5] Statements (1) IFlowCaptureOperation: 5 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Value: IPropertyReferenceOperation: System.String <anonymous type: System.String A, System.String B>.A { get; } (OperationKind.PropertyReference, Type: System.String, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x') Next (Regular) Block[B7] Leaving: {R4} } Block[B7] - Block Predecessors: [B6] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'y = x with ... y2(world) }') Left: ILocalReferenceOperation: y (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'y = x with ... y2(world) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.String A, System.String B>) (Syntax: 'x with { B ... y2(world) }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.String, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Left: IPropertyReferenceOperation: System.String <anonymous type: System.String A, System.String B>.A { get; } (OperationKind.PropertyReference, Type: System.String, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Right: IFlowCaptureReferenceOperation: 5 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.String, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Left: IPropertyReferenceOperation: System.String <anonymous type: System.String A, System.String B>.B { get; } (OperationKind.PropertyReference, Type: System.String, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x with { B ... y2(world) }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.String A, System.String B>, IsImplicit) (Syntax: 'x') Next (Regular) Block[B8] Leaving: {R3} } Block[B8] - Block Predecessors: [B7] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(y);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(y)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'y') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'y') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: y (OperationKind.LocalReference, Type: <anonymous type: System.String A, System.String B>) (Syntax: 'y') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B9] Leaving: {R1} } Block[B9] - Exit Predecessors: [B8] Statements (0) "; var expectedDiagnostics = DiagnosticDescription.None; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ErrorMember() { var src = @" public class C { public static void M() /*<bind>*/{ var a = new { A = 10 }; var b = a with { Error = Identity(20) }; }/*</bind>*/ static T Identity<T>(T t) => t; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); var expectedDiagnostics = new[] { // (7,26): error CS0117: '<anonymous type: int A>' does not contain a definition for 'Error' // var b = a with { Error = Identity(20) }; Diagnostic(ErrorCode.ERR_NoSuchMember, "Error").WithArguments("<anonymous type: int A>", "Error").WithLocation(7, 26) }; comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A> a] [<anonymous type: System.Int32 A> b] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>) (Syntax: 'new { A = 10 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'new { A = 10 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [2] .locals {R4} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (3) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'a') IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(20)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '20') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsInvalid, IsImplicit) (Syntax: 'a with { Er ... ntity(20) }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { Er ... ntity(20) }') Instance Receiver: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with ... ntity(20) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with ... ntity(20) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>, IsInvalid) (Syntax: 'a with { Er ... ntity(20) }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { Er ... ntity(20) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { Er ... ntity(20) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'a with { Er ... ntity(20) }') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R3} {R1} } } Block[B4] - Exit Predecessors: [B3] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_ToString() { var src = @" public class C { public static void M() /*<bind>*/{ var a = new { A = 10 }; var b = a with { ToString = Identity(20) }; }/*</bind>*/ static T Identity<T>(T t) => t; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); var expectedDiagnostics = new[] { // (7,26): error CS1913: Member 'ToString' cannot be initialized. It is not a field or property. // var b = a with { ToString = Identity(20) }; Diagnostic(ErrorCode.ERR_MemberCannotBeInitialized, "ToString").WithArguments("ToString").WithLocation(7, 26) }; comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A> a] [<anonymous type: System.Int32 A> b] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>) (Syntax: 'new { A = 10 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'new { A = 10 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [2] .locals {R4} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (3) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'a') IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(20)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '20') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsInvalid, IsImplicit) (Syntax: 'a with { To ... ntity(20) }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { To ... ntity(20) }') Instance Receiver: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with ... ntity(20) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with ... ntity(20) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>, IsInvalid) (Syntax: 'a with { To ... ntity(20) }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { To ... ntity(20) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { To ... ntity(20) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'a with { To ... ntity(20) }') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R3} {R1} } } Block[B4] - Exit Predecessors: [B3] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_NestedInitializer() { var src = @" C.M(); public class C { public static void M() /*<bind>*/{ var nested = new { A = 10 }; var a = new { Nested = nested }; var b = a with { Nested = { A = 20 } }; System.Console.Write(b); }/*</bind>*/ }"; var expectedDiagnostics = new[] { // (10,35): error CS1525: Invalid expression term '{' // var b = a with { Nested = { A = 20 } }; Diagnostic(ErrorCode.ERR_InvalidExprTerm, "{").WithArguments("{").WithLocation(10, 35), // (10,35): error CS1513: } expected // var b = a with { Nested = { A = 20 } }; Diagnostic(ErrorCode.ERR_RbraceExpected, "{").WithLocation(10, 35), // (10,35): error CS1002: ; expected // var b = a with { Nested = { A = 20 } }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "{").WithLocation(10, 35), // (10,37): error CS0103: The name 'A' does not exist in the current context // var b = a with { Nested = { A = 20 } }; Diagnostic(ErrorCode.ERR_NameNotInContext, "A").WithArguments("A").WithLocation(10, 37), // (10,44): error CS1002: ; expected // var b = a with { Nested = { A = 20 } }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "}").WithLocation(10, 44), // (10,47): error CS1597: Semicolon after method or accessor block is not valid // var b = a with { Nested = { A = 20 } }; Diagnostic(ErrorCode.ERR_UnexpectedSemicolon, ";").WithLocation(10, 47), // (11,29): error CS1519: Invalid token '(' in class, record, struct, or interface member declaration // System.Console.Write(b); Diagnostic(ErrorCode.ERR_InvalidMemberDecl, "(").WithArguments("(").WithLocation(11, 29), // (11,31): error CS8124: Tuple must contain at least two elements. // System.Console.Write(b); Diagnostic(ErrorCode.ERR_TupleTooFewElements, ")").WithLocation(11, 31), // (11,32): error CS1519: Invalid token ';' in class, record, struct, or interface member declaration // System.Console.Write(b); Diagnostic(ErrorCode.ERR_InvalidMemberDecl, ";").WithArguments(";").WithLocation(11, 32), // (13,1): error CS1022: Type or namespace definition, or end-of-file expected // } Diagnostic(ErrorCode.ERR_EOFExpected, "}").WithLocation(13, 1) }; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A> nested] [<anonymous type: <anonymous type: System.Int32 A> Nested> a] [<anonymous type: <anonymous type: System.Int32 A> Nested> b] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'nested = new { A = 10 }') Left: ILocalReferenceOperation: nested (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'nested = new { A = 10 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>) (Syntax: 'new { A = 10 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'new { A = 10 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} } .locals {R3} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (2) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'nested') Value: ILocalReferenceOperation: nested (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'nested') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsImplicit) (Syntax: 'a = new { N ... = nested }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsImplicit) (Syntax: 'a = new { N ... = nested }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>) (Syntax: 'new { Nested = nested }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>) (Syntax: 'Nested = nested') Left: IPropertyReferenceOperation: <anonymous type: System.Int32 A> <anonymous type: <anonymous type: System.Int32 A> Nested>.Nested { get; } (OperationKind.PropertyReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'Nested') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsImplicit) (Syntax: 'new { Nested = nested }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'nested') Next (Regular) Block[B3] Leaving: {R3} Entering: {R4} } .locals {R4} { CaptureIds: [2] Block[B3] - Block Predecessors: [B2] Statements (3) ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>) (Syntax: 'a') IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsInvalid, IsImplicit) (Syntax: '') Value: IInvalidOperation (OperationKind.Invalid, Type: null, IsInvalid) (Syntax: '') Children(0) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsInvalid, IsImplicit) (Syntax: 'b = a with { Nested = ') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsInvalid, IsImplicit) (Syntax: 'b = a with { Nested = ') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsInvalid) (Syntax: 'a with { Nested = ') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'a with { Nested = ') Left: IPropertyReferenceOperation: <anonymous type: System.Int32 A> <anonymous type: <anonymous type: System.Int32 A> Nested>.Nested { get; } (OperationKind.PropertyReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'a with { Nested = ') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsInvalid, IsImplicit) (Syntax: 'a with { Nested = ') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: <anonymous type: System.Int32 A> Nested>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R4} } Block[B4] - Block Predecessors: [B3] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null, IsInvalid) (Syntax: 'A = 20 ') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: ?, IsInvalid) (Syntax: 'A = 20') Left: IInvalidOperation (OperationKind.Invalid, Type: ?, IsInvalid) (Syntax: 'A') Children(0) Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_NonAssignmentExpression() { var src = @" public class C { public static void M(int i, int j) /*<bind>*/{ var a = new { A = 10 }; var b = a with { i, j++, M2(), A = 20 }; }/*</bind>*/ static int M2() => 0; }"; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); var expectedDiagnostics = new[] { // (7,26): error CS0747: Invalid initializer member declarator // var b = a with { i, j++, M2(), A = 20 }; Diagnostic(ErrorCode.ERR_InvalidInitializerElementInitializer, "i").WithLocation(7, 26), // (7,29): error CS0747: Invalid initializer member declarator // var b = a with { i, j++, M2(), A = 20 }; Diagnostic(ErrorCode.ERR_InvalidInitializerElementInitializer, "j++").WithLocation(7, 29), // (7,34): error CS0747: Invalid initializer member declarator // var b = a with { i, j++, M2(), A = 20 }; Diagnostic(ErrorCode.ERR_InvalidInitializerElementInitializer, "M2()").WithLocation(7, 34) }; comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A> a] [<anonymous type: System.Int32 A> b] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>) (Syntax: 'new { A = 10 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'new { A = 10 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} } .locals {R3} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (6) ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'a') IInvalidOperation (OperationKind.Invalid, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'i') Children(1): IParameterReferenceOperation: i (OperationKind.ParameterReference, Type: System.Int32, IsInvalid) (Syntax: 'i') IInvalidOperation (OperationKind.Invalid, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'j++') Children(1): IIncrementOrDecrementOperation (Postfix) (OperationKind.Increment, Type: System.Int32, IsInvalid) (Syntax: 'j++') Target: IParameterReferenceOperation: j (OperationKind.ParameterReference, Type: System.Int32, IsInvalid) (Syntax: 'j') IInvalidOperation (OperationKind.Invalid, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'M2()') Children(1): IInvocationOperation (System.Int32 C.M2()) (OperationKind.Invocation, Type: System.Int32, IsInvalid) (Syntax: 'M2()') Instance Receiver: null Arguments(0) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with ... ), A = 20 }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with ... ), A = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>, IsInvalid) (Syntax: 'a with { i, ... ), A = 20 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { i, ... ), A = 20 }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { i, ... ), A = 20 }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'a with { i, ... ), A = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B3] Leaving: {R3} {R1} } } Block[B3] - Exit Predecessors: [B2] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_IndexerAccess() { var src = @" public class C { public static void M() /*<bind>*/{ var a = new { A = 10 }; var b = a with { [0] = 20 }; }/*</bind>*/ }"; var expectedDiagnostics = new[] { // (7,26): error CS1513: } expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_RbraceExpected, "[").WithLocation(7, 26), // (7,26): error CS1002: ; expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "[").WithLocation(7, 26), // (7,26): error CS7014: Attributes are not valid in this context. // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_AttributesNotAllowed, "[").WithLocation(7, 26), // (7,27): error CS1001: Identifier expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_IdentifierExpected, "0").WithLocation(7, 27), // (7,27): error CS1003: Syntax error, ']' expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_SyntaxError, "0").WithArguments("]", "").WithLocation(7, 27), // (7,28): error CS1002: ; expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "]").WithLocation(7, 28), // (7,28): error CS1513: } expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_RbraceExpected, "]").WithLocation(7, 28), // (7,30): error CS1525: Invalid expression term '=' // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_InvalidExprTerm, "=").WithArguments("=").WithLocation(7, 30), // (7,35): error CS1002: ; expected // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_SemicolonExpected, "}").WithLocation(7, 35), // (7,36): error CS1597: Semicolon after method or accessor block is not valid // var b = a with { [0] = 20 }; Diagnostic(ErrorCode.ERR_UnexpectedSemicolon, ";").WithLocation(7, 36), // (9,1): error CS1022: Type or namespace definition, or end-of-file expected // } Diagnostic(ErrorCode.ERR_EOFExpected, "}").WithLocation(9, 1) }; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A> a] [<anonymous type: System.Int32 A> b] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>) (Syntax: 'new { A = 10 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'new { A = 10 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [2] .locals {R4} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (2) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'a') Value: ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'a') IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsInvalid, IsImplicit) (Syntax: 'a with { ') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { ') Instance Receiver: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with { ') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = a with { ') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>, IsInvalid) (Syntax: 'a with { ') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { ') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'a with { ') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'a with { ') Right: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a') Next (Regular) Block[B4] Leaving: {R3} } Block[B4] - Block Predecessors: [B3] Statements (2) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null, IsInvalid) (Syntax: '[0') Expression: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 0, IsInvalid) (Syntax: '0') IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null, IsInvalid) (Syntax: '= 20 ') Expression: ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: ?, IsInvalid) (Syntax: '= 20') Left: IInvalidOperation (OperationKind.Invalid, Type: null, IsInvalid) (Syntax: '') Children(0) Right: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20) (Syntax: '20') Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_CannotSet() { var src = @" public class C { public static void M() { var a = new { A = 10 }; a.A = 20; var b = new { B = a }; b.B.A = 30; } }"; var comp = CreateCompilation(src, parseOptions: TestOptions.Regular9); comp.VerifyEmitDiagnostics( // (7,9): error CS0200: Property or indexer '<anonymous type: int A>.A' cannot be assigned to -- it is read only // a.A = 20; Diagnostic(ErrorCode.ERR_AssgReadonlyProp, "a.A").WithArguments("<anonymous type: int A>.A").WithLocation(7, 9), // (10,9): error CS0200: Property or indexer '<anonymous type: int A>.A' cannot be assigned to -- it is read only // b.B.A = 30; Diagnostic(ErrorCode.ERR_AssgReadonlyProp, "b.B.A").WithArguments("<anonymous type: int A>.A").WithLocation(10, 9) ); } [Fact] public void WithExpr_AnonymousType_DuplicateMemberInDeclaration() { var src = @" public class C { public static void M() /*<bind>*/{ var a = new { A = 10, A = 20 }; var b = Identity(a) with { A = Identity(30) }; System.Console.Write(b); }/*</bind>*/ static T Identity<T>(T t) => t; }"; var expectedDiagnostics = new[] { // (6,31): error CS0833: An anonymous type cannot have multiple properties with the same name // var a = new { A = 10, A = 20 }; Diagnostic(ErrorCode.ERR_AnonymousTypeDuplicatePropertyName, "A = 20").WithLocation(6, 31) }; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A, System.Int32 $1> a] [<anonymous type: System.Int32 A, System.Int32 $1> b] .locals {R2} { CaptureIds: [0] [1] Block[B1] - Block Predecessors: [B0] Statements (3) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsInvalid, IsImplicit) (Syntax: '20') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 20, IsInvalid) (Syntax: '20') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsInvalid, IsImplicit) (Syntax: 'a = new { A ... 0, A = 20 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsInvalid, IsImplicit) (Syntax: 'a = new { A ... 0, A = 20 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsInvalid) (Syntax: 'new { A = 10, A = 20 }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 $1>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsInvalid, IsImplicit) (Syntax: 'new { A = 10, A = 20 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 20, IsInvalid) (Syntax: 'A = 20') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 $1>.$1 { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsInvalid, IsImplicit) (Syntax: 'new { A = 10, A = 20 }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 20, IsInvalid, IsImplicit) (Syntax: '20') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} {R4} } .locals {R3} { CaptureIds: [3] [4] .locals {R4} { CaptureIds: [2] Block[B2] - Block Predecessors: [B1] Statements (3) IFlowCaptureOperation: 2 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(a)') Value: IInvocationOperation (<anonymous type: System.Int32 A, System.Int32 $1> C.Identity<<anonymous type: System.Int32 A, System.Int32 $1>>(<anonymous type: System.Int32 A, System.Int32 $1> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A, System.Int32 $1>) (Syntax: 'Identity(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 3 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(30)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(30)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '30') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 4 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Value: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 $1>.$1 { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Instance Receiver: IFlowCaptureReferenceOperation: 2 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B3] Leaving: {R4} } Block[B3] - Block Predecessors: [B2] Statements (1) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'b = Identit ... ntity(30) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'b = Identit ... ntity(30) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A, System.Int32 $1>) (Syntax: 'Identity(a) ... ntity(30) }') Initializers(2): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 $1>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Right: IFlowCaptureReferenceOperation: 3 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'Identity(a)') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A, System.Int32 $1>.$1 { get; } (OperationKind.PropertyReference, Type: System.Int32, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'Identity(a) ... ntity(30) }') Right: IFlowCaptureReferenceOperation: 4 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B4] Leaving: {R3} } Block[B4] - Block Predecessors: [B3] Statements (1) IExpressionStatementOperation (OperationKind.ExpressionStatement, Type: null) (Syntax: 'System.Console.Write(b);') Expression: IInvocationOperation (void System.Console.Write(System.Object value)) (OperationKind.Invocation, Type: System.Void) (Syntax: 'System.Console.Write(b)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument, Type: null) (Syntax: 'b') IConversionOperation (TryCast: False, Unchecked) (OperationKind.Conversion, Type: System.Object, IsImplicit) (Syntax: 'b') Conversion: CommonConversion (Exists: True, IsIdentity: False, IsNumeric: False, IsReference: True, IsUserDefined: False) (MethodSymbol: null) (ImplicitReference) Operand: ILocalReferenceOperation: b (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A, System.Int32 $1>) (Syntax: 'b') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Next (Regular) Block[B5] Leaving: {R1} } Block[B5] - Exit Predecessors: [B4] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact] public void WithExpr_AnonymousType_DuplicateInitialization() { var src = @" public class C { public static void M() /*<bind>*/{ var a = new { A = 10 }; var b = Identity(a) with { A = Identity(30), A = Identity(40) }; }/*</bind>*/ static T Identity<T>(T t) => t; }"; var expectedDiagnostics = new[] { // (7,54): error CS1912: Duplicate initialization of member 'A' // var b = Identity(a) with { A = Identity(30), A = Identity(40) }; Diagnostic(ErrorCode.ERR_MemberAlreadyInitialized, "A").WithArguments("A").WithLocation(7, 54) }; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics(expectedDiagnostics); var expectedFlowGraph = @" Block[B0] - Entry Statements (0) Next (Regular) Block[B1] Entering: {R1} {R2} .locals {R1} { Locals: [<anonymous type: System.Int32 A> a] [<anonymous type: System.Int32 A> b] .locals {R2} { CaptureIds: [0] Block[B1] - Block Predecessors: [B0] Statements (2) IFlowCaptureOperation: 0 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: '10') Value: ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 10) (Syntax: '10') ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Left: ILocalReferenceOperation: a (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'a = new { A = 10 }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>) (Syntax: 'new { A = 10 }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, Constant: 10) (Syntax: 'A = 10') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32) (Syntax: 'A') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'new { A = 10 }') Right: IFlowCaptureReferenceOperation: 0 (OperationKind.FlowCaptureReference, Type: System.Int32, Constant: 10, IsImplicit) (Syntax: '10') Next (Regular) Block[B2] Leaving: {R2} Entering: {R3} } .locals {R3} { CaptureIds: [1] Block[B2] - Block Predecessors: [B1] Statements (4) IInvocationOperation (<anonymous type: System.Int32 A> C.Identity<<anonymous type: System.Int32 A>>(<anonymous type: System.Int32 A> t)) (OperationKind.Invocation, Type: <anonymous type: System.Int32 A>) (Syntax: 'Identity(a)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: 'a') ILocalReferenceOperation: a (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>) (Syntax: 'a') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IFlowCaptureOperation: 1 (OperationKind.FlowCapture, Type: null, IsImplicit) (Syntax: 'Identity(30)') Value: IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(30)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '30') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 30) (Syntax: '30') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) IInvocationOperation (System.Int32 C.Identity<System.Int32>(System.Int32 t)) (OperationKind.Invocation, Type: System.Int32) (Syntax: 'Identity(40)') Instance Receiver: null Arguments(1): IArgumentOperation (ArgumentKind.Explicit, Matching Parameter: t) (OperationKind.Argument, Type: null) (Syntax: '40') ILiteralOperation (OperationKind.Literal, Type: System.Int32, Constant: 40) (Syntax: '40') InConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) OutConversion: CommonConversion (Exists: True, IsIdentity: True, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = Identit ... ntity(40) }') Left: ILocalReferenceOperation: b (IsDeclaration: True) (OperationKind.LocalReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'b = Identit ... ntity(40) }') Right: IAnonymousObjectCreationOperation (OperationKind.AnonymousObjectCreation, Type: <anonymous type: System.Int32 A>, IsInvalid) (Syntax: 'Identity(a) ... ntity(40) }') Initializers(1): ISimpleAssignmentOperation (OperationKind.SimpleAssignment, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Left: IPropertyReferenceOperation: System.Int32 <anonymous type: System.Int32 A>.A { get; } (OperationKind.PropertyReference, Type: System.Int32, IsInvalid, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Instance Receiver: IInstanceReferenceOperation (ReferenceKind: ImplicitReceiver) (OperationKind.InstanceReference, Type: <anonymous type: System.Int32 A>, IsInvalid, IsImplicit) (Syntax: 'Identity(a) ... ntity(40) }') Right: IFlowCaptureReferenceOperation: 1 (OperationKind.FlowCaptureReference, Type: <anonymous type: System.Int32 A>, IsImplicit) (Syntax: 'Identity(a)') Next (Regular) Block[B3] Leaving: {R3} {R1} } } Block[B3] - Exit Predecessors: [B2] Statements (0) "; VerifyFlowGraphAndDiagnosticsForTest<BlockSyntax>(src, expectedFlowGraph, expectedDiagnostics, parseOptions: TestOptions.RegularPreview); } [Fact, WorkItem(53849, "https://github.com/dotnet/roslyn/issues/53849")] public void WithExpr_AnonymousType_ValueIsLoweredToo() { var src = @" var x = new { Property = 42 }; var adjusted = x with { Property = x.Property + 2 }; System.Console.WriteLine(adjusted); "; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); var verifier = CompileAndVerify(comp, expectedOutput: "{ Property = 44 }"); verifier.VerifyDiagnostics(); } [Fact, WorkItem(53849, "https://github.com/dotnet/roslyn/issues/53849")] public void WithExpr_AnonymousType_ValueIsLoweredToo_NestedWith() { var src = @" var x = new { Property = 42 }; var container = new { Item = x }; var adjusted = container with { Item = x with { Property = x.Property + 2 } }; System.Console.WriteLine(adjusted); "; var comp = CreateCompilation(src, parseOptions: TestOptions.RegularPreview); var verifier = CompileAndVerify(comp, expectedOutput: "{ Item = { Property = 44 } }"); verifier.VerifyDiagnostics(); } [Fact] public void AttributesOnPrimaryConstructorParameters_01() { string source = @" [System.AttributeUsage(System.AttributeTargets.Field, AllowMultiple = true) ] public class A : System.Attribute { } [System.AttributeUsage(System.AttributeTargets.Property, AllowMultiple = true) ] public class B : System.Attribute { } [System.AttributeUsage(System.AttributeTargets.Parameter, AllowMultiple = true) ] public class C : System.Attribute { } [System.AttributeUsage(System.AttributeTargets.Parameter, AllowMultiple = true) ] public class D : System.Attribute { } public readonly record struct Test( [field: A] [property: B] [param: C] [D] int P1) { } "; Action<ModuleSymbol> symbolValidator = moduleSymbol => { var @class = moduleSymbol.GlobalNamespace.GetMember<NamedTypeSymbol>("Test"); var prop1 = @class.GetMember<PropertySymbol>("P1"); AssertEx.SetEqual(new[] { "B" }, getAttributeStrings(prop1)); var field1 = @class.GetMember<FieldSymbol>("<P1>k__BackingField"); AssertEx.SetEqual(new[] { "A" }, getAttributeStrings(field1)); var param1 = @class.GetMembers(".ctor").OfType<MethodSymbol>().Where(m => m.Parameters.AsSingleton()?.Name == "P1").Single().Parameters[0]; AssertEx.SetEqual(new[] { "C", "D" }, getAttributeStrings(param1)); }; var comp = CompileAndVerify(new[] { source, IsExternalInitTypeDefinition }, sourceSymbolValidator: symbolValidator, symbolValidator: symbolValidator, parseOptions: TestOptions.RegularPreview, // init-only is unverifiable verify: Verification.Skipped, options: TestOptions.DebugDll.WithMetadataImportOptions(MetadataImportOptions.All)); comp.VerifyDiagnostics(); IEnumerable<string> getAttributeStrings(Symbol symbol) { return GetAttributeStrings(symbol.GetAttributes().Where(a => a.AttributeClass!.Name is "A" or "B" or "C" or "D")); } } [Fact] public void FieldAsPositionalMember() { var source = @" var a = new A(42); System.Console.Write(a.X); System.Console.Write("" - ""); a.Deconstruct(out int x); System.Console.Write(x); record struct A(int X) { public int X = X; } "; var comp = CreateCompilation(source, parseOptions: TestOptions.Regular9); comp.VerifyEmitDiagnostics( // (8,8): error CS8773: Feature 'record structs' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct A(int X) Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "struct").WithArguments("record structs", "10.0").WithLocation(8, 8), // (8,17): error CS8773: Feature 'positional fields in records' is not available in C# 9.0. Please use language version 10.0 or greater. // record struct A(int X) Diagnostic(ErrorCode.ERR_FeatureNotAvailableInVersion9, "int X").WithArguments("positional fields in records", "10.0").WithLocation(8, 17) ); comp = CreateCompilation(source, parseOptions: TestOptions.Regular10); comp.VerifyDiagnostics(); var verifier = CompileAndVerify(comp, expectedOutput: "42 - 42"); verifier.VerifyIL("A.Deconstruct", @" { // Code size 9 (0x9) .maxstack 2 IL_0000: ldarg.1 IL_0001: ldarg.0 IL_0002: ldfld ""int A.X"" IL_0007: stind.i4 IL_0008: ret } "); } [Fact] public void FieldAsPositionalMember_Readonly() { var source = @" readonly record struct A(int X) { public int X = X; // 1 } readonly record struct B(int X) { public readonly int X = X; } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (4,16): error CS8340: Instance fields of readonly structs must be readonly. // public int X = X; // 1 Diagnostic(ErrorCode.ERR_FieldsInRoStruct, "X").WithLocation(4, 16) ); } [Fact] public void FieldAsPositionalMember_Fixed() { var src = @" unsafe record struct C(int[] P) { public fixed int P[2]; public int[] X = P; }"; var comp = CreateCompilation(src, options: TestOptions.UnsafeReleaseDll, parseOptions: TestOptions.RegularPreview); comp.VerifyEmitDiagnostics( // (2,30): error CS8866: Record member 'C.P' must be a readable instance property or field of type 'int[]' to match positional parameter 'P'. // unsafe record struct C(int[] P) Diagnostic(ErrorCode.ERR_BadRecordMemberForPositionalParameter, "P").WithArguments("C.P", "int[]", "P").WithLocation(2, 30), // (4,22): error CS8908: The type 'int*' may not be used for a field of a record. // public fixed int P[2]; Diagnostic(ErrorCode.ERR_BadFieldTypeInRecord, "P").WithArguments("int*").WithLocation(4, 22) ); } [Fact] public void FieldAsPositionalMember_WrongType() { var source = @" record struct A(int X) { public string X = null; public int Y = X; } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (2,21): error CS8866: Record member 'A.X' must be a readable instance property or field of type 'int' to match positional parameter 'X'. // record struct A(int X) Diagnostic(ErrorCode.ERR_BadRecordMemberForPositionalParameter, "X").WithArguments("A.X", "int", "X").WithLocation(2, 21) ); } [Fact] public void FieldAsPositionalMember_DuplicateFields() { var source = @" record struct A(int X) { public int X = 0; public int X = 0; public int Y = X; } "; var comp = CreateCompilation(source); comp.VerifyDiagnostics( // (5,16): error CS0102: The type 'A' already contains a definition for 'X' // public int X = 0; Diagnostic(ErrorCode.ERR_DuplicateNameInClass, "X").WithArguments("A", "X").WithLocation(5, 16) ); } [Fact] public void SyntaxFactory_TypeDeclaration() { var expected = @"record struct Point { }"; AssertEx.AssertEqualToleratingWhitespaceDifferences(expected, SyntaxFactory.TypeDeclaration(SyntaxKind.RecordStructDeclaration, "Point").NormalizeWhitespace().ToString()); } [Fact] public void InterfaceWithParameters() { var src = @" public interface I { } record struct R(int X) : I() { } record struct R2(int X) : I(X) { } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (6,27): error CS8861: Unexpected argument list. // record struct R(int X) : I() Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "()").WithLocation(6, 27), // (10,28): error CS8861: Unexpected argument list. // record struct R2(int X) : I(X) Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "(X)").WithLocation(10, 28) ); } [Fact] public void InterfaceWithParameters_NoPrimaryConstructor() { var src = @" public interface I { } record struct R : I() { } record struct R2 : I(0) { } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (6,20): error CS8861: Unexpected argument list. // record struct R : I() Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "()").WithLocation(6, 20), // (10,21): error CS8861: Unexpected argument list. // record struct R2 : I(0) Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "(0)").WithLocation(10, 21) ); } [Fact] public void InterfaceWithParameters_Struct() { var src = @" public interface I { } struct C : I() { } struct C2 : I(0) { } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (6,13): error CS8861: Unexpected argument list. // struct C : I() Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "()").WithLocation(6, 13), // (10,14): error CS8861: Unexpected argument list. // struct C2 : I(0) Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "(0)").WithLocation(10, 14) ); } [Fact] public void BaseArguments_Speculation() { var src = @" record struct R1(int X) : Error1(0, 1) { } record struct R2(int X) : Error2() { } record struct R3(int X) : Error3 { } "; var comp = CreateCompilation(src); comp.VerifyDiagnostics( // (2,27): error CS0246: The type or namespace name 'Error1' could not be found (are you missing a using directive or an assembly reference?) // record struct R1(int X) : Error1(0, 1) Diagnostic(ErrorCode.ERR_SingleTypeNameNotFound, "Error1").WithArguments("Error1").WithLocation(2, 27), // (2,33): error CS8861: Unexpected argument list. // record struct R1(int X) : Error1(0, 1) Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "(0, 1)").WithLocation(2, 33), // (5,27): error CS0246: The type or namespace name 'Error2' could not be found (are you missing a using directive or an assembly reference?) // record struct R2(int X) : Error2() Diagnostic(ErrorCode.ERR_SingleTypeNameNotFound, "Error2").WithArguments("Error2").WithLocation(5, 27), // (5,33): error CS8861: Unexpected argument list. // record struct R2(int X) : Error2() Diagnostic(ErrorCode.ERR_UnexpectedArgumentList, "()").WithLocation(5, 33), // (8,27): error CS0246: The type or namespace name 'Error3' could not be found (are you missing a using directive or an assembly reference?) // record struct R3(int X) : Error3 Diagnostic(ErrorCode.ERR_SingleTypeNameNotFound, "Error3").WithArguments("Error3").WithLocation(8, 27) ); var tree = comp.SyntaxTrees.First(); var model = comp.GetSemanticModel(tree); var baseWithargs = tree.GetRoot().DescendantNodes().OfType<PrimaryConstructorBaseTypeSyntax>().First(); Assert.Equal("Error1(0, 1)", baseWithargs.ToString()); var speculativeBase = baseWithargs.WithArgumentList(baseWithargs.ArgumentList.WithArguments(baseWithargs.ArgumentList.Arguments.RemoveAt(1))); Assert.Equal("Error1(0)", speculativeBase.ToString()); Assert.False(model.TryGetSpeculativeSemanticModel(baseWithargs.ArgumentList.OpenParenToken.SpanStart, speculativeBase, out _)); var baseWithoutargs = tree.GetRoot().DescendantNodes().OfType<PrimaryConstructorBaseTypeSyntax>().Skip(1).First(); Assert.Equal("Error2()", baseWithoutargs.ToString()); Assert.False(model.TryGetSpeculativeSemanticModel(baseWithoutargs.ArgumentList.OpenParenToken.SpanStart, speculativeBase, out _)); var baseWithoutParens = tree.GetRoot().DescendantNodes().OfType<SimpleBaseTypeSyntax>().Single(); Assert.Equal("Error3", baseWithoutParens.ToString()); Assert.False(model.TryGetSpeculativeSemanticModel(baseWithoutParens.SpanStart + 2, speculativeBase, out _)); } [Fact, WorkItem(54413, "https://github.com/dotnet/roslyn/issues/54413")] public void ValueTypeCopyConstructorLike_NoThisInitializer() { var src = @" record struct Value(string Text) { private Value(int X) { } // 1 private Value(Value original) { } // 2 } record class Boxed(string Text) { private Boxed(int X) { } // 3 private Boxed(Boxed original) { } // 4 } "; var comp = CreateCompilation(src); comp.VerifyEmitDiagnostics( // (4,13): error CS8862: A constructor declared in a record with parameter list must have 'this' constructor initializer. // private Value(int X) { } // 1 Diagnostic(ErrorCode.ERR_UnexpectedOrMissingConstructorInitializerInRecord, "Value").WithLocation(4, 13), // (5,13): error CS8862: A constructor declared in a record with parameter list must have 'this' constructor initializer. // private Value(Value original) { } // 2 Diagnostic(ErrorCode.ERR_UnexpectedOrMissingConstructorInitializerInRecord, "Value").WithLocation(5, 13), // (10,13): error CS8862: A constructor declared in a record with parameter list must have 'this' constructor initializer. // private Boxed(int X) { } // 3 Diagnostic(ErrorCode.ERR_UnexpectedOrMissingConstructorInitializerInRecord, "Boxed").WithLocation(10, 13), // (11,13): error CS8878: A copy constructor 'Boxed.Boxed(Boxed)' must be public or protected because the record is not sealed. // private Boxed(Boxed original) { } // 4 Diagnostic(ErrorCode.ERR_CopyConstructorWrongAccessibility, "Boxed").WithArguments("Boxed.Boxed(Boxed)").WithLocation(11, 13) ); } [Fact] public void ValueTypeCopyConstructorLike() { var src = @" System.Console.Write(new Value(new Value(0))); record struct Value(int I) { public Value(Value original) : this(42) { } } "; var comp = CreateCompilation(src); CompileAndVerify(comp, expectedOutput: "Value { I = 42 }"); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/EditorFeatures/CSharpTest/KeywordHighlighting/UsingStatementHighlighterTests.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Editor.CSharp.KeywordHighlighting.KeywordHighlighters; using Microsoft.CodeAnalysis.Test.Utilities; using Xunit; namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.KeywordHighlighting { public class UsingStatementHighlighterTests : AbstractCSharpKeywordHighlighterTests { internal override Type GetHighlighterType() => typeof(UsingStatementHighlighter); [Fact, Trait(Traits.Feature, Traits.Features.KeywordHighlighting)] public async Task TestExample1_1() { await TestAsync( @"class C { void M() { {|Cursor:[|using|]|} (Font f = new Font(“Arial”, 10.0f)) { // use f... } } }"); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Editor.CSharp.KeywordHighlighting.KeywordHighlighters; using Microsoft.CodeAnalysis.Test.Utilities; using Xunit; namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.KeywordHighlighting { public class UsingStatementHighlighterTests : AbstractCSharpKeywordHighlighterTests { internal override Type GetHighlighterType() => typeof(UsingStatementHighlighter); [Fact, Trait(Traits.Feature, Traits.Features.KeywordHighlighting)] public async Task TestExample1_1() { await TestAsync( @"class C { void M() { {|Cursor:[|using|]|} (Font f = new Font(“Arial”, 10.0f)) { // use f... } } }"); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/SharedUtilitiesAndExtensions/Compiler/VisualBasic/xlf/VisualBasicCompilerExtensionsResources.tr.xlf
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="tr" original="../VisualBasicCompilerExtensionsResources.resx"> <body> <trans-unit id="EmptyResource"> <source>Remove this value when another is added.</source> <target state="translated">Başka bir değer eklendiğinde bu değeri kaldırın.</target> <note>https://github.com/Microsoft/msbuild/issues/1661</note> </trans-unit> </body> </file> </xliff>
<?xml version="1.0" encoding="utf-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> <file datatype="xml" source-language="en" target-language="tr" original="../VisualBasicCompilerExtensionsResources.resx"> <body> <trans-unit id="EmptyResource"> <source>Remove this value when another is added.</source> <target state="translated">Başka bir değer eklendiğinde bu değeri kaldırın.</target> <note>https://github.com/Microsoft/msbuild/issues/1661</note> </trans-unit> </body> </file> </xliff>
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Analyzers/CSharp/Tests/RemoveUnnecessaryImports/RemoveUnnecessaryImportsTests_FixAllTests.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.CSharp.RemoveUnnecessaryImports; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.Diagnostics; using Microsoft.CodeAnalysis.Test.Utilities; using Xunit; using Xunit.Abstractions; namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.RemoveUnnecessaryImports { public class RemoveUnnecessaryImportsTests_FixAllTests : AbstractCSharpDiagnosticProviderBasedUserDiagnosticTest { public RemoveUnnecessaryImportsTests_FixAllTests(ITestOutputHelper logger) : base(logger) { } internal override (DiagnosticAnalyzer, CodeFixProvider) CreateDiagnosticProviderAndFixer(Workspace workspace) => (new CSharpRemoveUnnecessaryImportsDiagnosticAnalyzer(), new CSharpRemoveUnnecessaryImportsCodeFixProvider()); #region "Fix all occurrences tests" [Fact] [Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnnecessaryImports)] [Trait(Traits.Feature, Traits.Features.CodeActionsFixAllOccurrences)] public async Task TestFixAllInDocument() { var input = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> {|FixAllInDocument:using System; using System.Collections.Generic;|} class Program { public Int32 x; } </Document> <Document> using System; using System.Collections.Generic; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; var expected = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> using System; class Program { public Int32 x; } </Document> <Document> using System; using System.Collections.Generic; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; await TestInRegularAndScriptAsync(input, expected); } [Fact] [Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnnecessaryImports)] [Trait(Traits.Feature, Traits.Features.CodeActionsFixAllOccurrences)] public async Task TestFixAllInProject() { var input = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> {|FixAllInProject:using System; using System.Collections.Generic;|} class Program { public Int32 x; } </Document> <Document> using System; using System.Collections.Generic; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; var expected = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> using System; class Program { public Int32 x; } </Document> <Document> using System; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; await TestInRegularAndScriptAsync(input, expected); } [Fact] [Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnnecessaryImports)] [Trait(Traits.Feature, Traits.Features.CodeActionsFixAllOccurrences)] public async Task TestFixAllInProjectSkipsGeneratedCode() { var input = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> {|FixAllInProject:using System; using System.Collections.Generic;|} class Program { public Int32 x; } </Document> <Document FilePath=""Document.g.cs""> using System; using System.Collections.Generic; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; var expected = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> using System; class Program { public Int32 x; } </Document> <Document FilePath=""Document.g.cs""> using System; using System.Collections.Generic; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; await TestInRegularAndScriptAsync(input, expected); } [Fact] [Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnnecessaryImports)] [Trait(Traits.Feature, Traits.Features.CodeActionsFixAllOccurrences)] public async Task TestFixAllInSolution() { var input = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> {|FixAllInSolution:using System; using System.Collections.Generic;|} class Program { public Int32 x; } </Document> <Document> using System; using System.Collections.Generic; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; var expected = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> using System; class Program { public Int32 x; } </Document> <Document> using System; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; await TestInRegularAndScriptAsync(input, expected); } #endregion } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.CSharp.RemoveUnnecessaryImports; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.Diagnostics; using Microsoft.CodeAnalysis.Test.Utilities; using Xunit; using Xunit.Abstractions; namespace Microsoft.CodeAnalysis.Editor.CSharp.UnitTests.RemoveUnnecessaryImports { public class RemoveUnnecessaryImportsTests_FixAllTests : AbstractCSharpDiagnosticProviderBasedUserDiagnosticTest { public RemoveUnnecessaryImportsTests_FixAllTests(ITestOutputHelper logger) : base(logger) { } internal override (DiagnosticAnalyzer, CodeFixProvider) CreateDiagnosticProviderAndFixer(Workspace workspace) => (new CSharpRemoveUnnecessaryImportsDiagnosticAnalyzer(), new CSharpRemoveUnnecessaryImportsCodeFixProvider()); #region "Fix all occurrences tests" [Fact] [Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnnecessaryImports)] [Trait(Traits.Feature, Traits.Features.CodeActionsFixAllOccurrences)] public async Task TestFixAllInDocument() { var input = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> {|FixAllInDocument:using System; using System.Collections.Generic;|} class Program { public Int32 x; } </Document> <Document> using System; using System.Collections.Generic; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; var expected = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> using System; class Program { public Int32 x; } </Document> <Document> using System; using System.Collections.Generic; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; await TestInRegularAndScriptAsync(input, expected); } [Fact] [Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnnecessaryImports)] [Trait(Traits.Feature, Traits.Features.CodeActionsFixAllOccurrences)] public async Task TestFixAllInProject() { var input = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> {|FixAllInProject:using System; using System.Collections.Generic;|} class Program { public Int32 x; } </Document> <Document> using System; using System.Collections.Generic; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; var expected = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> using System; class Program { public Int32 x; } </Document> <Document> using System; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; await TestInRegularAndScriptAsync(input, expected); } [Fact] [Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnnecessaryImports)] [Trait(Traits.Feature, Traits.Features.CodeActionsFixAllOccurrences)] public async Task TestFixAllInProjectSkipsGeneratedCode() { var input = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> {|FixAllInProject:using System; using System.Collections.Generic;|} class Program { public Int32 x; } </Document> <Document FilePath=""Document.g.cs""> using System; using System.Collections.Generic; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; var expected = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> using System; class Program { public Int32 x; } </Document> <Document FilePath=""Document.g.cs""> using System; using System.Collections.Generic; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; await TestInRegularAndScriptAsync(input, expected); } [Fact] [Trait(Traits.Feature, Traits.Features.CodeActionsRemoveUnnecessaryImports)] [Trait(Traits.Feature, Traits.Features.CodeActionsFixAllOccurrences)] public async Task TestFixAllInSolution() { var input = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> {|FixAllInSolution:using System; using System.Collections.Generic;|} class Program { public Int32 x; } </Document> <Document> using System; using System.Collections.Generic; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; using System.Collections.Generic; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; var expected = @" <Workspace> <Project Language=""C#"" AssemblyName=""Assembly1"" CommonReferences=""true""> <Document> using System; class Program { public Int32 x; } </Document> <Document> using System; class Program2 { public Int32 x; } </Document> </Project> <Project Language=""C#"" AssemblyName=""Assembly2"" CommonReferences=""true""> <Document> using System; class Program3 { public Int32 x; } </Document> </Project> </Workspace>"; await TestInRegularAndScriptAsync(input, expected); } #endregion } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/VisualStudio/LiveShare/Impl/LSPSDKInitializeHandler.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.ComponentModel.Composition; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.VisualStudio.LiveShare.LanguageServices; using LSP = Microsoft.VisualStudio.LanguageServer.Protocol; namespace Microsoft.VisualStudio.LanguageServices.LiveShare { /// <summary> /// Handle the initialize request and report the capabilities of the server. /// TODO Once the client side code is migrated to LSP client, this can be removed. /// </summary> [ExportLspRequestHandler(LiveShareConstants.RoslynLSPSDKContractName, LSP.Methods.InitializeName)] internal class LSPSDKInitializeHandler : ILspRequestHandler<LSP.InitializeParams, LSP.InitializeResult, Solution> { [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public LSPSDKInitializeHandler() { } public Task<LSP.InitializeResult> HandleAsync(LSP.InitializeParams request, RequestContext<Solution> requestContext, CancellationToken cancellationToken) { var result = new LSP.InitializeResult { Capabilities = new LSP.ServerCapabilities() }; return Task.FromResult(result); } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.ComponentModel.Composition; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.VisualStudio.LiveShare.LanguageServices; using LSP = Microsoft.VisualStudio.LanguageServer.Protocol; namespace Microsoft.VisualStudio.LanguageServices.LiveShare { /// <summary> /// Handle the initialize request and report the capabilities of the server. /// TODO Once the client side code is migrated to LSP client, this can be removed. /// </summary> [ExportLspRequestHandler(LiveShareConstants.RoslynLSPSDKContractName, LSP.Methods.InitializeName)] internal class LSPSDKInitializeHandler : ILspRequestHandler<LSP.InitializeParams, LSP.InitializeResult, Solution> { [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public LSPSDKInitializeHandler() { } public Task<LSP.InitializeResult> HandleAsync(LSP.InitializeParams request, RequestContext<Solution> requestContext, CancellationToken cancellationToken) { var result = new LSP.InitializeResult { Capabilities = new LSP.ServerCapabilities() }; return Task.FromResult(result); } } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Workspaces/SharedUtilitiesAndExtensions/Compiler/CSharp/Formatting/Engine/CSharpFormatEngine.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using Microsoft.CodeAnalysis.CSharp.LanguageServices; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Formatting; using Microsoft.CodeAnalysis.Formatting.Rules; using Microsoft.CodeAnalysis.LanguageServices; namespace Microsoft.CodeAnalysis.CSharp.Formatting { internal class CSharpFormatEngine : AbstractFormatEngine { public CSharpFormatEngine( SyntaxNode node, AnalyzerConfigOptions options, IEnumerable<AbstractFormattingRule> formattingRules, SyntaxToken token1, SyntaxToken token2) : base(TreeData.Create(node), options, formattingRules, token1, token2) { } internal override ISyntaxFacts SyntaxFacts => CSharpSyntaxFacts.Instance; protected override AbstractTriviaDataFactory CreateTriviaFactory() => new TriviaDataFactory(this.TreeData, this.Options); protected override AbstractFormattingResult CreateFormattingResult(TokenStream tokenStream) => new FormattingResult(this.TreeData, tokenStream, this.SpanToFormat); } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using Microsoft.CodeAnalysis.CSharp.LanguageServices; using Microsoft.CodeAnalysis.Diagnostics; using Microsoft.CodeAnalysis.Formatting; using Microsoft.CodeAnalysis.Formatting.Rules; using Microsoft.CodeAnalysis.LanguageServices; namespace Microsoft.CodeAnalysis.CSharp.Formatting { internal class CSharpFormatEngine : AbstractFormatEngine { public CSharpFormatEngine( SyntaxNode node, AnalyzerConfigOptions options, IEnumerable<AbstractFormattingRule> formattingRules, SyntaxToken token1, SyntaxToken token2) : base(TreeData.Create(node), options, formattingRules, token1, token2) { } internal override ISyntaxFacts SyntaxFacts => CSharpSyntaxFacts.Instance; protected override AbstractTriviaDataFactory CreateTriviaFactory() => new TriviaDataFactory(this.TreeData, this.Options); protected override AbstractFormattingResult CreateFormattingResult(TokenStream tokenStream) => new FormattingResult(this.TreeData, tokenStream, this.SpanToFormat); } }
-1
dotnet/roslyn
55,877
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute
Part of C# 10 support
davidwengier
2021-08-25T05:36:27Z
2021-08-30T20:47:11Z
4d99cda6e446e77dbb302e26388c1093bd3ef569
023d3ca2b5fb429f0b3dcc1efeed39442e232dba
EnC - Report rude edit when a user adds an AsyncMethodBuild attribute. Part of C# 10 support
./src/Compilers/CSharp/Portable/Symbols/Compilation_WellKnownMembers.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.Threading; using Microsoft.CodeAnalysis.CSharp.Symbols; using Microsoft.CodeAnalysis.PooledObjects; using Microsoft.CodeAnalysis.RuntimeMembers; using Microsoft.CodeAnalysis.Symbols; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.CSharp { public partial class CSharpCompilation { internal readonly WellKnownMembersSignatureComparer WellKnownMemberSignatureComparer; /// <summary> /// An array of cached well known types available for use in this Compilation. /// Lazily filled by GetWellKnownType method. /// </summary> private NamedTypeSymbol?[]? _lazyWellKnownTypes; /// <summary> /// Lazy cache of well known members. /// Not yet known value is represented by ErrorTypeSymbol.UnknownResultType /// </summary> private Symbol?[]? _lazyWellKnownTypeMembers; private bool _usesNullableAttributes; private int _needsGeneratedAttributes; private bool _needsGeneratedAttributes_IsFrozen; /// <summary> /// Returns a value indicating which embedded attributes should be generated during emit phase. /// The value is set during binding the symbols that need those attributes, and is frozen on first trial to get it. /// Freezing is needed to make sure that nothing tries to modify the value after the value is read. /// </summary> internal EmbeddableAttributes GetNeedsGeneratedAttributes() { _needsGeneratedAttributes_IsFrozen = true; return (EmbeddableAttributes)_needsGeneratedAttributes; } private void SetNeedsGeneratedAttributes(EmbeddableAttributes attributes) { Debug.Assert(!_needsGeneratedAttributes_IsFrozen); ThreadSafeFlagOperations.Set(ref _needsGeneratedAttributes, (int)attributes); } internal bool GetUsesNullableAttributes() { _needsGeneratedAttributes_IsFrozen = true; return _usesNullableAttributes; } private void SetUsesNullableAttributes() { Debug.Assert(!_needsGeneratedAttributes_IsFrozen); _usesNullableAttributes = true; } /// <summary> /// Lookup member declaration in well known type used by this Compilation. /// </summary> /// <remarks> /// If a well-known member of a generic type instantiation is needed use this method to get the corresponding generic definition and /// <see cref="MethodSymbol.AsMember"/> to construct an instantiation. /// </remarks> internal Symbol? GetWellKnownTypeMember(WellKnownMember member) { Debug.Assert(member >= 0 && member < WellKnownMember.Count); // Test hook: if a member is marked missing, then return null. if (IsMemberMissing(member)) return null; if (_lazyWellKnownTypeMembers == null || ReferenceEquals(_lazyWellKnownTypeMembers[(int)member], ErrorTypeSymbol.UnknownResultType)) { if (_lazyWellKnownTypeMembers == null) { var wellKnownTypeMembers = new Symbol[(int)WellKnownMember.Count]; for (int i = 0; i < wellKnownTypeMembers.Length; i++) { wellKnownTypeMembers[i] = ErrorTypeSymbol.UnknownResultType; } Interlocked.CompareExchange(ref _lazyWellKnownTypeMembers, wellKnownTypeMembers, null); } MemberDescriptor descriptor = WellKnownMembers.GetDescriptor(member); NamedTypeSymbol type = descriptor.DeclaringTypeId <= (int)SpecialType.Count ? this.GetSpecialType((SpecialType)descriptor.DeclaringTypeId) : this.GetWellKnownType((WellKnownType)descriptor.DeclaringTypeId); Symbol? result = null; if (!type.IsErrorType()) { result = GetRuntimeMember(type, descriptor, WellKnownMemberSignatureComparer, accessWithinOpt: this.Assembly); } Interlocked.CompareExchange(ref _lazyWellKnownTypeMembers[(int)member], result, ErrorTypeSymbol.UnknownResultType); } return _lazyWellKnownTypeMembers[(int)member]; } /// <summary> /// This method handles duplicate types in a few different ways: /// - for types before C# 7, the first candidate is returned with a warning /// - for types after C# 7, the type is considered missing /// - in both cases, when BinderFlags.IgnoreCorLibraryDuplicatedTypes is set, type from corlib will not count as a duplicate /// </summary> internal NamedTypeSymbol GetWellKnownType(WellKnownType type) { Debug.Assert(type.IsValid()); bool ignoreCorLibraryDuplicatedTypes = this.Options.TopLevelBinderFlags.Includes(BinderFlags.IgnoreCorLibraryDuplicatedTypes); int index = (int)type - (int)WellKnownType.First; if (_lazyWellKnownTypes == null || _lazyWellKnownTypes[index] is null) { if (_lazyWellKnownTypes == null) { Interlocked.CompareExchange(ref _lazyWellKnownTypes, new NamedTypeSymbol[(int)WellKnownTypes.Count], null); } string mdName = type.GetMetadataName(); var warnings = DiagnosticBag.GetInstance(); NamedTypeSymbol? result; (AssemblySymbol, AssemblySymbol) conflicts = default; if (IsTypeMissing(type)) { result = null; } else { // well-known types introduced before CSharp7 allow lookup ambiguity and report a warning DiagnosticBag? legacyWarnings = (type <= WellKnownType.CSharp7Sentinel) ? warnings : null; result = this.Assembly.GetTypeByMetadataName( mdName, includeReferences: true, useCLSCompliantNameArityEncoding: true, isWellKnownType: true, conflicts: out conflicts, warnings: legacyWarnings, ignoreCorLibraryDuplicatedTypes: ignoreCorLibraryDuplicatedTypes); } if (result is null) { // TODO: should GetTypeByMetadataName rather return a missing symbol? MetadataTypeName emittedName = MetadataTypeName.FromFullName(mdName, useCLSCompliantNameArityEncoding: true); if (type.IsValueTupleType()) { CSDiagnosticInfo errorInfo; if (conflicts.Item1 is null) { Debug.Assert(conflicts.Item2 is null); errorInfo = new CSDiagnosticInfo(ErrorCode.ERR_PredefinedValueTupleTypeNotFound, emittedName.FullName); } else { errorInfo = new CSDiagnosticInfo(ErrorCode.ERR_PredefinedValueTupleTypeAmbiguous3, emittedName.FullName, conflicts.Item1, conflicts.Item2); } result = new MissingMetadataTypeSymbol.TopLevel(this.Assembly.Modules[0], ref emittedName, type, errorInfo); } else { result = new MissingMetadataTypeSymbol.TopLevel(this.Assembly.Modules[0], ref emittedName, type); } } if (Interlocked.CompareExchange(ref _lazyWellKnownTypes[index], result, null) is object) { Debug.Assert( TypeSymbol.Equals(result, _lazyWellKnownTypes[index], TypeCompareKind.ConsiderEverything2) || (_lazyWellKnownTypes[index]!.IsErrorType() && result.IsErrorType()) ); } else { AdditionalCodegenWarnings.AddRange(warnings); } warnings.Free(); } return _lazyWellKnownTypes[index]!; } internal bool IsAttributeType(TypeSymbol type) { var discardedUseSiteInfo = CompoundUseSiteInfo<AssemblySymbol>.Discarded; return IsEqualOrDerivedFromWellKnownClass(type, WellKnownType.System_Attribute, ref discardedUseSiteInfo); } internal override bool IsAttributeType(ITypeSymbol type) { return IsAttributeType(type.EnsureCSharpSymbolOrNull(nameof(type))); } internal bool IsExceptionType(TypeSymbol type, ref CompoundUseSiteInfo<AssemblySymbol> useSiteInfo) { return IsEqualOrDerivedFromWellKnownClass(type, WellKnownType.System_Exception, ref useSiteInfo); } internal bool IsReadOnlySpanType(TypeSymbol type) { return TypeSymbol.Equals(type.OriginalDefinition, GetWellKnownType(WellKnownType.System_ReadOnlySpan_T), TypeCompareKind.ConsiderEverything2); } internal bool IsEqualOrDerivedFromWellKnownClass(TypeSymbol type, WellKnownType wellKnownType, ref CompoundUseSiteInfo<AssemblySymbol> useSiteInfo) { Debug.Assert(wellKnownType == WellKnownType.System_Attribute || wellKnownType == WellKnownType.System_Exception); if (type.Kind != SymbolKind.NamedType || type.TypeKind != TypeKind.Class) { return false; } var wkType = GetWellKnownType(wellKnownType); return type.Equals(wkType, TypeCompareKind.ConsiderEverything) || type.IsDerivedFrom(wkType, TypeCompareKind.ConsiderEverything, useSiteInfo: ref useSiteInfo); } internal override bool IsSystemTypeReference(ITypeSymbolInternal type) { return TypeSymbol.Equals((TypeSymbol)type, GetWellKnownType(WellKnownType.System_Type), TypeCompareKind.ConsiderEverything2); } internal override ISymbolInternal? CommonGetWellKnownTypeMember(WellKnownMember member) { return GetWellKnownTypeMember(member); } internal override ITypeSymbolInternal CommonGetWellKnownType(WellKnownType wellknownType) { return GetWellKnownType(wellknownType); } internal static Symbol? GetRuntimeMember(NamedTypeSymbol declaringType, in MemberDescriptor descriptor, SignatureComparer<MethodSymbol, FieldSymbol, PropertySymbol, TypeSymbol, ParameterSymbol> comparer, AssemblySymbol? accessWithinOpt) { var members = declaringType.GetMembers(descriptor.Name); return GetRuntimeMember(members, descriptor, comparer, accessWithinOpt); } internal static Symbol? GetRuntimeMember(ImmutableArray<Symbol> members, in MemberDescriptor descriptor, SignatureComparer<MethodSymbol, FieldSymbol, PropertySymbol, TypeSymbol, ParameterSymbol> comparer, AssemblySymbol? accessWithinOpt) { SymbolKind targetSymbolKind; MethodKind targetMethodKind = MethodKind.Ordinary; bool isStatic = (descriptor.Flags & MemberFlags.Static) != 0; Symbol? result = null; switch (descriptor.Flags & MemberFlags.KindMask) { case MemberFlags.Constructor: targetSymbolKind = SymbolKind.Method; targetMethodKind = MethodKind.Constructor; // static constructors are never called explicitly Debug.Assert(!isStatic); break; case MemberFlags.Method: targetSymbolKind = SymbolKind.Method; break; case MemberFlags.PropertyGet: targetSymbolKind = SymbolKind.Method; targetMethodKind = MethodKind.PropertyGet; break; case MemberFlags.Field: targetSymbolKind = SymbolKind.Field; break; case MemberFlags.Property: targetSymbolKind = SymbolKind.Property; break; default: throw ExceptionUtilities.UnexpectedValue(descriptor.Flags); } foreach (var member in members) { if (!member.Name.Equals(descriptor.Name)) { continue; } if (member.Kind != targetSymbolKind || member.IsStatic != isStatic || !(member.DeclaredAccessibility == Accessibility.Public || (accessWithinOpt is object && Symbol.IsSymbolAccessible(member, accessWithinOpt)))) { continue; } switch (targetSymbolKind) { case SymbolKind.Method: { MethodSymbol method = (MethodSymbol)member; MethodKind methodKind = method.MethodKind; // Treat user-defined conversions and operators as ordinary methods for the purpose // of matching them here. if (methodKind == MethodKind.Conversion || methodKind == MethodKind.UserDefinedOperator) { methodKind = MethodKind.Ordinary; } if (method.Arity != descriptor.Arity || methodKind != targetMethodKind || ((descriptor.Flags & MemberFlags.Virtual) != 0) != (method.IsVirtual || method.IsOverride || method.IsAbstract)) { continue; } if (!comparer.MatchMethodSignature(method, descriptor.Signature)) { continue; } } break; case SymbolKind.Property: { PropertySymbol property = (PropertySymbol)member; if (((descriptor.Flags & MemberFlags.Virtual) != 0) != (property.IsVirtual || property.IsOverride || property.IsAbstract)) { continue; } if (!comparer.MatchPropertySignature(property, descriptor.Signature)) { continue; } } break; case SymbolKind.Field: if (!comparer.MatchFieldSignature((FieldSymbol)member, descriptor.Signature)) { continue; } break; default: throw ExceptionUtilities.UnexpectedValue(targetSymbolKind); } // ambiguity if (result is object) { result = null; break; } result = member; } return result; } /// <summary> /// Synthesizes a custom attribute. /// Returns null if the <paramref name="constructor"/> symbol is missing, /// or any of the members in <paramref name="namedArguments" /> are missing. /// The attribute is synthesized only if present. /// </summary> /// <param name="constructor"> /// Constructor of the attribute. If it doesn't exist, the attribute is not created. /// </param> /// <param name="arguments">Arguments to the attribute constructor.</param> /// <param name="namedArguments"> /// Takes a list of pairs of well-known members and constants. The constants /// will be passed to the field/property referenced by the well-known member. /// If the well-known member does not exist in the compilation then no attribute /// will be synthesized. /// </param> /// <param name="isOptionalUse"> /// Indicates if this particular attribute application should be considered optional. /// </param> internal SynthesizedAttributeData? TrySynthesizeAttribute( WellKnownMember constructor, ImmutableArray<TypedConstant> arguments = default, ImmutableArray<KeyValuePair<WellKnownMember, TypedConstant>> namedArguments = default, bool isOptionalUse = false) { UseSiteInfo<AssemblySymbol> info; var ctorSymbol = (MethodSymbol)Binder.GetWellKnownTypeMember(this, constructor, out info, isOptional: true); if ((object)ctorSymbol == null) { // if this assert fails, UseSiteErrors for "member" have not been checked before emitting ... Debug.Assert(isOptionalUse || WellKnownMembers.IsSynthesizedAttributeOptional(constructor)); return null; } if (arguments.IsDefault) { arguments = ImmutableArray<TypedConstant>.Empty; } ImmutableArray<KeyValuePair<string, TypedConstant>> namedStringArguments; if (namedArguments.IsDefault) { namedStringArguments = ImmutableArray<KeyValuePair<string, TypedConstant>>.Empty; } else { var builder = new ArrayBuilder<KeyValuePair<string, TypedConstant>>(namedArguments.Length); foreach (var arg in namedArguments) { var wellKnownMember = Binder.GetWellKnownTypeMember(this, arg.Key, out info, isOptional: true); if (wellKnownMember == null || wellKnownMember is ErrorTypeSymbol) { // if this assert fails, UseSiteErrors for "member" have not been checked before emitting ... Debug.Assert(WellKnownMembers.IsSynthesizedAttributeOptional(constructor)); return null; } else { builder.Add(new KeyValuePair<string, TypedConstant>( wellKnownMember.Name, arg.Value)); } } namedStringArguments = builder.ToImmutableAndFree(); } return new SynthesizedAttributeData(ctorSymbol, arguments, namedStringArguments); } internal SynthesizedAttributeData? TrySynthesizeAttribute( SpecialMember constructor, bool isOptionalUse = false) { var ctorSymbol = (MethodSymbol)this.GetSpecialTypeMember(constructor); if ((object)ctorSymbol == null) { Debug.Assert(isOptionalUse); return null; } return new SynthesizedAttributeData( ctorSymbol, arguments: ImmutableArray<TypedConstant>.Empty, namedArguments: ImmutableArray<KeyValuePair<string, TypedConstant>>.Empty); } internal SynthesizedAttributeData? SynthesizeDecimalConstantAttribute(decimal value) { bool isNegative; byte scale; uint low, mid, high; value.GetBits(out isNegative, out scale, out low, out mid, out high); var systemByte = GetSpecialType(SpecialType.System_Byte); Debug.Assert(!systemByte.HasUseSiteError); var systemUnit32 = GetSpecialType(SpecialType.System_UInt32); Debug.Assert(!systemUnit32.HasUseSiteError); return TrySynthesizeAttribute( WellKnownMember.System_Runtime_CompilerServices_DecimalConstantAttribute__ctor, ImmutableArray.Create( new TypedConstant(systemByte, TypedConstantKind.Primitive, scale), new TypedConstant(systemByte, TypedConstantKind.Primitive, (byte)(isNegative ? 128 : 0)), new TypedConstant(systemUnit32, TypedConstantKind.Primitive, high), new TypedConstant(systemUnit32, TypedConstantKind.Primitive, mid), new TypedConstant(systemUnit32, TypedConstantKind.Primitive, low) )); } internal SynthesizedAttributeData? SynthesizeDebuggerBrowsableNeverAttribute() { if (Options.OptimizationLevel != OptimizationLevel.Debug) { return null; } return TrySynthesizeAttribute(WellKnownMember.System_Diagnostics_DebuggerBrowsableAttribute__ctor, ImmutableArray.Create(new TypedConstant( GetWellKnownType(WellKnownType.System_Diagnostics_DebuggerBrowsableState), TypedConstantKind.Enum, DebuggerBrowsableState.Never))); } internal SynthesizedAttributeData? SynthesizeDebuggerStepThroughAttribute() { if (Options.OptimizationLevel != OptimizationLevel.Debug) { return null; } return TrySynthesizeAttribute(WellKnownMember.System_Diagnostics_DebuggerStepThroughAttribute__ctor); } private void EnsureEmbeddableAttributeExists(EmbeddableAttributes attribute, BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { Debug.Assert(!modifyCompilation || !_needsGeneratedAttributes_IsFrozen); if (CheckIfAttributeShouldBeEmbedded(attribute, diagnostics, location) && modifyCompilation) { SetNeedsGeneratedAttributes(attribute); } if ((attribute & (EmbeddableAttributes.NullableAttribute | EmbeddableAttributes.NullableContextAttribute)) != 0 && modifyCompilation) { SetUsesNullableAttributes(); } } internal void EnsureIsReadOnlyAttributeExists(BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { EnsureEmbeddableAttributeExists(EmbeddableAttributes.IsReadOnlyAttribute, diagnostics, location, modifyCompilation); } internal void EnsureIsByRefLikeAttributeExists(BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { EnsureEmbeddableAttributeExists(EmbeddableAttributes.IsByRefLikeAttribute, diagnostics, location, modifyCompilation); } internal void EnsureIsUnmanagedAttributeExists(BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { EnsureEmbeddableAttributeExists(EmbeddableAttributes.IsUnmanagedAttribute, diagnostics, location, modifyCompilation); } internal void EnsureNullableAttributeExists(BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { EnsureEmbeddableAttributeExists(EmbeddableAttributes.NullableAttribute, diagnostics, location, modifyCompilation); } internal void EnsureNullableContextAttributeExists(BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { EnsureEmbeddableAttributeExists(EmbeddableAttributes.NullableContextAttribute, diagnostics, location, modifyCompilation); } internal void EnsureNativeIntegerAttributeExists(BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { EnsureEmbeddableAttributeExists(EmbeddableAttributes.NativeIntegerAttribute, diagnostics, location, modifyCompilation); } internal bool CheckIfAttributeShouldBeEmbedded(EmbeddableAttributes attribute, BindingDiagnosticBag? diagnosticsOpt, Location locationOpt) { switch (attribute) { case EmbeddableAttributes.IsReadOnlyAttribute: return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_IsReadOnlyAttribute, WellKnownMember.System_Runtime_CompilerServices_IsReadOnlyAttribute__ctor); case EmbeddableAttributes.IsByRefLikeAttribute: return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_IsByRefLikeAttribute, WellKnownMember.System_Runtime_CompilerServices_IsByRefLikeAttribute__ctor); case EmbeddableAttributes.IsUnmanagedAttribute: return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_IsUnmanagedAttribute, WellKnownMember.System_Runtime_CompilerServices_IsUnmanagedAttribute__ctor); case EmbeddableAttributes.NullableAttribute: // If the type exists, we'll check both constructors, regardless of which one(s) we'll eventually need. return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_NullableAttribute, WellKnownMember.System_Runtime_CompilerServices_NullableAttribute__ctorByte, WellKnownMember.System_Runtime_CompilerServices_NullableAttribute__ctorTransformFlags); case EmbeddableAttributes.NullableContextAttribute: return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_NullableContextAttribute, WellKnownMember.System_Runtime_CompilerServices_NullableContextAttribute__ctor); case EmbeddableAttributes.NullablePublicOnlyAttribute: return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_NullablePublicOnlyAttribute, WellKnownMember.System_Runtime_CompilerServices_NullablePublicOnlyAttribute__ctor); case EmbeddableAttributes.NativeIntegerAttribute: // If the type exists, we'll check both constructors, regardless of which one(s) we'll eventually need. return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_NativeIntegerAttribute, WellKnownMember.System_Runtime_CompilerServices_NativeIntegerAttribute__ctor, WellKnownMember.System_Runtime_CompilerServices_NativeIntegerAttribute__ctorTransformFlags); default: throw ExceptionUtilities.UnexpectedValue(attribute); } } private bool CheckIfAttributeShouldBeEmbedded(BindingDiagnosticBag? diagnosticsOpt, Location? locationOpt, WellKnownType attributeType, WellKnownMember attributeCtor, WellKnownMember? secondAttributeCtor = null) { var userDefinedAttribute = GetWellKnownType(attributeType); if (userDefinedAttribute is MissingMetadataTypeSymbol) { if (Options.OutputKind == OutputKind.NetModule) { if (diagnosticsOpt != null) { var errorReported = Binder.ReportUseSite(userDefinedAttribute, diagnosticsOpt, locationOpt); Debug.Assert(errorReported); } } else { return true; } } else if (diagnosticsOpt != null) { // This should produce diagnostics if the member is missing or bad var member = Binder.GetWellKnownTypeMember(this, attributeCtor, diagnosticsOpt, locationOpt); if (member != null && secondAttributeCtor != null) { Binder.GetWellKnownTypeMember(this, secondAttributeCtor.Value, diagnosticsOpt, locationOpt); } } return false; } internal SynthesizedAttributeData? SynthesizeDebuggableAttribute() { TypeSymbol debuggableAttribute = GetWellKnownType(WellKnownType.System_Diagnostics_DebuggableAttribute); Debug.Assert((object)debuggableAttribute != null, "GetWellKnownType unexpectedly returned null"); if (debuggableAttribute is MissingMetadataTypeSymbol) { return null; } TypeSymbol debuggingModesType = GetWellKnownType(WellKnownType.System_Diagnostics_DebuggableAttribute__DebuggingModes); RoslynDebug.Assert((object)debuggingModesType != null, "GetWellKnownType unexpectedly returned null"); if (debuggingModesType is MissingMetadataTypeSymbol) { return null; } // IgnoreSymbolStoreDebuggingMode flag is checked by the CLR, it is not referred to by the debugger. // It tells the JIT that it doesn't need to load the PDB at the time it generates jitted code. // The PDB would still be used by a debugger, or even by the runtime for putting source line information // on exception stack traces. We always set this flag to avoid overhead of JIT loading the PDB. // The theoretical scenario for not setting it would be a language compiler that wants their sequence points // at specific places, but those places don't match what CLR's heuristics calculate when scanning the IL. var ignoreSymbolStoreDebuggingMode = (FieldSymbol?)GetWellKnownTypeMember(WellKnownMember.System_Diagnostics_DebuggableAttribute_DebuggingModes__IgnoreSymbolStoreSequencePoints); if (ignoreSymbolStoreDebuggingMode is null || !ignoreSymbolStoreDebuggingMode.HasConstantValue) { return null; } int constantVal = ignoreSymbolStoreDebuggingMode.GetConstantValue(ConstantFieldsInProgress.Empty, earlyDecodingWellKnownAttributes: false).Int32Value; // Since .NET 2.0 the combinations of None, Default and DisableOptimizations have the following effect: // // None JIT optimizations enabled // Default JIT optimizations enabled // DisableOptimizations JIT optimizations enabled // Default | DisableOptimizations JIT optimizations disabled if (_options.OptimizationLevel == OptimizationLevel.Debug) { var defaultDebuggingMode = (FieldSymbol?)GetWellKnownTypeMember(WellKnownMember.System_Diagnostics_DebuggableAttribute_DebuggingModes__Default); if (defaultDebuggingMode is null || !defaultDebuggingMode.HasConstantValue) { return null; } var disableOptimizationsDebuggingMode = (FieldSymbol?)GetWellKnownTypeMember(WellKnownMember.System_Diagnostics_DebuggableAttribute_DebuggingModes__DisableOptimizations); if (disableOptimizationsDebuggingMode is null || !disableOptimizationsDebuggingMode.HasConstantValue) { return null; } constantVal |= defaultDebuggingMode.GetConstantValue(ConstantFieldsInProgress.Empty, earlyDecodingWellKnownAttributes: false).Int32Value; constantVal |= disableOptimizationsDebuggingMode.GetConstantValue(ConstantFieldsInProgress.Empty, earlyDecodingWellKnownAttributes: false).Int32Value; } if (_options.EnableEditAndContinue) { var enableEncDebuggingMode = (FieldSymbol?)GetWellKnownTypeMember(WellKnownMember.System_Diagnostics_DebuggableAttribute_DebuggingModes__EnableEditAndContinue); if (enableEncDebuggingMode is null || !enableEncDebuggingMode.HasConstantValue) { return null; } constantVal |= enableEncDebuggingMode.GetConstantValue(ConstantFieldsInProgress.Empty, earlyDecodingWellKnownAttributes: false).Int32Value; } var typedConstantDebugMode = new TypedConstant(debuggingModesType, TypedConstantKind.Enum, constantVal); return TrySynthesizeAttribute( WellKnownMember.System_Diagnostics_DebuggableAttribute__ctorDebuggingModes, ImmutableArray.Create(typedConstantDebugMode)); } /// <summary> /// Given a type <paramref name="type"/>, which is either dynamic type OR is a constructed type with dynamic type present in it's type argument tree, /// returns a synthesized DynamicAttribute with encoded dynamic transforms array. /// </summary> /// <remarks>This method is port of AttrBind::CompileDynamicAttr from the native C# compiler.</remarks> internal SynthesizedAttributeData? SynthesizeDynamicAttribute(TypeSymbol type, int customModifiersCount, RefKind refKindOpt = RefKind.None) { RoslynDebug.Assert((object)type != null); Debug.Assert(type.ContainsDynamic()); if (type.IsDynamic() && refKindOpt == RefKind.None && customModifiersCount == 0) { return TrySynthesizeAttribute(WellKnownMember.System_Runtime_CompilerServices_DynamicAttribute__ctor); } else { NamedTypeSymbol booleanType = GetSpecialType(SpecialType.System_Boolean); RoslynDebug.Assert((object)booleanType != null); var transformFlags = DynamicTransformsEncoder.Encode(type, refKindOpt, customModifiersCount, booleanType); var boolArray = ArrayTypeSymbol.CreateSZArray(booleanType.ContainingAssembly, TypeWithAnnotations.Create(booleanType)); var arguments = ImmutableArray.Create(new TypedConstant(boolArray, transformFlags)); return TrySynthesizeAttribute(WellKnownMember.System_Runtime_CompilerServices_DynamicAttribute__ctorTransformFlags, arguments); } } internal SynthesizedAttributeData? SynthesizeTupleNamesAttribute(TypeSymbol type) { RoslynDebug.Assert((object)type != null); Debug.Assert(type.ContainsTuple()); var stringType = GetSpecialType(SpecialType.System_String); RoslynDebug.Assert((object)stringType != null); var names = TupleNamesEncoder.Encode(type, stringType); Debug.Assert(!names.IsDefault, "should not need the attribute when no tuple names"); var stringArray = ArrayTypeSymbol.CreateSZArray(stringType.ContainingAssembly, TypeWithAnnotations.Create(stringType)); var args = ImmutableArray.Create(new TypedConstant(stringArray, names)); return TrySynthesizeAttribute(WellKnownMember.System_Runtime_CompilerServices_TupleElementNamesAttribute__ctorTransformNames, args); } internal SynthesizedAttributeData? SynthesizeAttributeUsageAttribute(AttributeTargets targets, bool allowMultiple, bool inherited) { var attributeTargetsType = GetWellKnownType(WellKnownType.System_AttributeTargets); var boolType = GetSpecialType(SpecialType.System_Boolean); var arguments = ImmutableArray.Create( new TypedConstant(attributeTargetsType, TypedConstantKind.Enum, targets)); var namedArguments = ImmutableArray.Create( new KeyValuePair<WellKnownMember, TypedConstant>(WellKnownMember.System_AttributeUsageAttribute__AllowMultiple, new TypedConstant(boolType, TypedConstantKind.Primitive, allowMultiple)), new KeyValuePair<WellKnownMember, TypedConstant>(WellKnownMember.System_AttributeUsageAttribute__Inherited, new TypedConstant(boolType, TypedConstantKind.Primitive, inherited))); return TrySynthesizeAttribute(WellKnownMember.System_AttributeUsageAttribute__ctor, arguments, namedArguments); } internal static class TupleNamesEncoder { public static ImmutableArray<string?> Encode(TypeSymbol type) { var namesBuilder = ArrayBuilder<string?>.GetInstance(); if (!TryGetNames(type, namesBuilder)) { namesBuilder.Free(); return default; } return namesBuilder.ToImmutableAndFree(); } public static ImmutableArray<TypedConstant> Encode(TypeSymbol type, TypeSymbol stringType) { var namesBuilder = ArrayBuilder<string?>.GetInstance(); if (!TryGetNames(type, namesBuilder)) { namesBuilder.Free(); return default; } var names = namesBuilder.SelectAsArray((name, constantType) => new TypedConstant(constantType, TypedConstantKind.Primitive, name), stringType); namesBuilder.Free(); return names; } internal static bool TryGetNames(TypeSymbol type, ArrayBuilder<string?> namesBuilder) { type.VisitType((t, builder, _ignore) => AddNames(t, builder), namesBuilder); return namesBuilder.Any(name => name != null); } private static bool AddNames(TypeSymbol type, ArrayBuilder<string?> namesBuilder) { if (type.IsTupleType) { if (type.TupleElementNames.IsDefaultOrEmpty) { // If none of the tuple elements have names, put // null placeholders in. // TODO(https://github.com/dotnet/roslyn/issues/12347): // A possible optimization could be to emit an empty attribute // if all the names are missing, but that has to be true // recursively. namesBuilder.AddMany(null, type.TupleElementTypesWithAnnotations.Length); } else { namesBuilder.AddRange(type.TupleElementNames); } } // Always recur into nested types return false; } } /// <summary> /// Used to generate the dynamic attributes for the required typesymbol. /// </summary> internal static class DynamicTransformsEncoder { internal static ImmutableArray<TypedConstant> Encode(TypeSymbol type, RefKind refKind, int customModifiersCount, TypeSymbol booleanType) { var flagsBuilder = ArrayBuilder<bool>.GetInstance(); Encode(type, customModifiersCount, refKind, flagsBuilder, addCustomModifierFlags: true); Debug.Assert(flagsBuilder.Any()); Debug.Assert(flagsBuilder.Contains(true)); var result = flagsBuilder.SelectAsArray((flag, constantType) => new TypedConstant(constantType, TypedConstantKind.Primitive, flag), booleanType); flagsBuilder.Free(); return result; } internal static ImmutableArray<bool> Encode(TypeSymbol type, RefKind refKind, int customModifiersCount) { var builder = ArrayBuilder<bool>.GetInstance(); Encode(type, customModifiersCount, refKind, builder, addCustomModifierFlags: true); return builder.ToImmutableAndFree(); } internal static ImmutableArray<bool> EncodeWithoutCustomModifierFlags(TypeSymbol type, RefKind refKind) { var builder = ArrayBuilder<bool>.GetInstance(); Encode(type, -1, refKind, builder, addCustomModifierFlags: false); return builder.ToImmutableAndFree(); } internal static void Encode(TypeSymbol type, int customModifiersCount, RefKind refKind, ArrayBuilder<bool> transformFlagsBuilder, bool addCustomModifierFlags) { Debug.Assert(!transformFlagsBuilder.Any()); if (refKind != RefKind.None) { // Native compiler encodes an extra transform flag, always false, for ref/out parameters. transformFlagsBuilder.Add(false); } if (addCustomModifierFlags) { // Native compiler encodes an extra transform flag, always false, for each custom modifier. HandleCustomModifiers(customModifiersCount, transformFlagsBuilder); type.VisitType((typeSymbol, builder, isNested) => AddFlags(typeSymbol, builder, isNested, addCustomModifierFlags: true), transformFlagsBuilder); } else { type.VisitType((typeSymbol, builder, isNested) => AddFlags(typeSymbol, builder, isNested, addCustomModifierFlags: false), transformFlagsBuilder); } } private static bool AddFlags(TypeSymbol type, ArrayBuilder<bool> transformFlagsBuilder, bool isNestedNamedType, bool addCustomModifierFlags) { // Encode transforms flag for this type and its custom modifiers (if any). switch (type.TypeKind) { case TypeKind.Dynamic: transformFlagsBuilder.Add(true); break; case TypeKind.Array: if (addCustomModifierFlags) { HandleCustomModifiers(((ArrayTypeSymbol)type).ElementTypeWithAnnotations.CustomModifiers.Length, transformFlagsBuilder); } transformFlagsBuilder.Add(false); break; case TypeKind.Pointer: if (addCustomModifierFlags) { HandleCustomModifiers(((PointerTypeSymbol)type).PointedAtTypeWithAnnotations.CustomModifiers.Length, transformFlagsBuilder); } transformFlagsBuilder.Add(false); break; case TypeKind.FunctionPointer: Debug.Assert(!isNestedNamedType); handleFunctionPointerType((FunctionPointerTypeSymbol)type, transformFlagsBuilder, addCustomModifierFlags); // Function pointer types have nested custom modifiers and refkinds in line with types, and visit all their nested types // as part of this call. // We need a different way to indicate that we should not recurse for this type, but should continue walking for other // types. https://github.com/dotnet/roslyn/issues/44160 return true; default: // Encode transforms flag for this type. // For nested named types, a single flag (false) is encoded for the entire type name, followed by flags for all of the type arguments. // For example, for type "A<T>.B<dynamic>", encoded transform flags are: // { // false, // Type "A.B" // false, // Type parameter "T" // true, // Type parameter "dynamic" // } if (!isNestedNamedType) { transformFlagsBuilder.Add(false); } break; } // Continue walking types return false; static void handleFunctionPointerType(FunctionPointerTypeSymbol funcPtr, ArrayBuilder<bool> transformFlagsBuilder, bool addCustomModifierFlags) { Func<TypeSymbol, (ArrayBuilder<bool>, bool), bool, bool> visitor = (TypeSymbol type, (ArrayBuilder<bool> builder, bool addCustomModifierFlags) param, bool isNestedNamedType) => AddFlags(type, param.builder, isNestedNamedType, param.addCustomModifierFlags); // The function pointer type itself gets a false transformFlagsBuilder.Add(false); var sig = funcPtr.Signature; handle(sig.RefKind, sig.RefCustomModifiers, sig.ReturnTypeWithAnnotations); foreach (var param in sig.Parameters) { handle(param.RefKind, param.RefCustomModifiers, param.TypeWithAnnotations); } void handle(RefKind refKind, ImmutableArray<CustomModifier> customModifiers, TypeWithAnnotations twa) { if (addCustomModifierFlags) { HandleCustomModifiers(customModifiers.Length, transformFlagsBuilder); } if (refKind != RefKind.None) { transformFlagsBuilder.Add(false); } if (addCustomModifierFlags) { HandleCustomModifiers(twa.CustomModifiers.Length, transformFlagsBuilder); } twa.Type.VisitType(visitor, (transformFlagsBuilder, addCustomModifierFlags)); } } } private static void HandleCustomModifiers(int customModifiersCount, ArrayBuilder<bool> transformFlagsBuilder) { // Native compiler encodes an extra transforms flag, always false, for each custom modifier. transformFlagsBuilder.AddMany(false, customModifiersCount); } } internal static class NativeIntegerTransformsEncoder { internal static void Encode(ArrayBuilder<bool> builder, TypeSymbol type) { type.VisitType((typeSymbol, builder, isNested) => AddFlags(typeSymbol, builder), builder); } private static bool AddFlags(TypeSymbol type, ArrayBuilder<bool> builder) { switch (type.SpecialType) { case SpecialType.System_IntPtr: case SpecialType.System_UIntPtr: builder.Add(type.IsNativeIntegerType); break; } // Continue walking types return false; } } internal class SpecialMembersSignatureComparer : SignatureComparer<MethodSymbol, FieldSymbol, PropertySymbol, TypeSymbol, ParameterSymbol> { // Fields public static readonly SpecialMembersSignatureComparer Instance = new SpecialMembersSignatureComparer(); // Methods protected SpecialMembersSignatureComparer() { } protected override TypeSymbol? GetMDArrayElementType(TypeSymbol type) { if (type.Kind != SymbolKind.ArrayType) { return null; } ArrayTypeSymbol array = (ArrayTypeSymbol)type; if (array.IsSZArray) { return null; } return array.ElementType; } protected override TypeSymbol GetFieldType(FieldSymbol field) { return field.Type; } protected override TypeSymbol GetPropertyType(PropertySymbol property) { return property.Type; } protected override TypeSymbol? GetGenericTypeArgument(TypeSymbol type, int argumentIndex) { if (type.Kind != SymbolKind.NamedType) { return null; } NamedTypeSymbol named = (NamedTypeSymbol)type; if (named.Arity <= argumentIndex) { return null; } if ((object)named.ContainingType != null) { return null; } return named.TypeArgumentsWithAnnotationsNoUseSiteDiagnostics[argumentIndex].Type; } protected override TypeSymbol? GetGenericTypeDefinition(TypeSymbol type) { if (type.Kind != SymbolKind.NamedType) { return null; } NamedTypeSymbol named = (NamedTypeSymbol)type; if ((object)named.ContainingType != null) { return null; } if (named.Arity == 0) { return null; } return (NamedTypeSymbol)named.OriginalDefinition; } protected override ImmutableArray<ParameterSymbol> GetParameters(MethodSymbol method) { return method.Parameters; } protected override ImmutableArray<ParameterSymbol> GetParameters(PropertySymbol property) { return property.Parameters; } protected override TypeSymbol GetParamType(ParameterSymbol parameter) { return parameter.Type; } protected override TypeSymbol? GetPointedToType(TypeSymbol type) { return type.Kind == SymbolKind.PointerType ? ((PointerTypeSymbol)type).PointedAtType : null; } protected override TypeSymbol GetReturnType(MethodSymbol method) { return method.ReturnType; } protected override TypeSymbol? GetSZArrayElementType(TypeSymbol type) { if (type.Kind != SymbolKind.ArrayType) { return null; } ArrayTypeSymbol array = (ArrayTypeSymbol)type; if (!array.IsSZArray) { return null; } return array.ElementType; } protected override bool IsByRefParam(ParameterSymbol parameter) { return parameter.RefKind != RefKind.None; } protected override bool IsByRefMethod(MethodSymbol method) { return method.RefKind != RefKind.None; } protected override bool IsByRefProperty(PropertySymbol property) { return property.RefKind != RefKind.None; } protected override bool IsGenericMethodTypeParam(TypeSymbol type, int paramPosition) { if (type.Kind != SymbolKind.TypeParameter) { return false; } TypeParameterSymbol typeParam = (TypeParameterSymbol)type; if (typeParam.ContainingSymbol.Kind != SymbolKind.Method) { return false; } return (typeParam.Ordinal == paramPosition); } protected override bool IsGenericTypeParam(TypeSymbol type, int paramPosition) { if (type.Kind != SymbolKind.TypeParameter) { return false; } TypeParameterSymbol typeParam = (TypeParameterSymbol)type; if (typeParam.ContainingSymbol.Kind != SymbolKind.NamedType) { return false; } return (typeParam.Ordinal == paramPosition); } protected override bool MatchArrayRank(TypeSymbol type, int countOfDimensions) { if (type.Kind != SymbolKind.ArrayType) { return false; } ArrayTypeSymbol array = (ArrayTypeSymbol)type; return (array.Rank == countOfDimensions); } protected override bool MatchTypeToTypeId(TypeSymbol type, int typeId) { if ((int)type.OriginalDefinition.SpecialType == typeId) { if (type.IsDefinition) { return true; } return type.Equals(type.OriginalDefinition, TypeCompareKind.IgnoreNullableModifiersForReferenceTypes); } return false; } } internal sealed class WellKnownMembersSignatureComparer : SpecialMembersSignatureComparer { private readonly CSharpCompilation _compilation; public WellKnownMembersSignatureComparer(CSharpCompilation compilation) { _compilation = compilation; } protected override bool MatchTypeToTypeId(TypeSymbol type, int typeId) { WellKnownType wellKnownId = (WellKnownType)typeId; if (wellKnownId.IsWellKnownType()) { return type.Equals(_compilation.GetWellKnownType(wellKnownId), TypeCompareKind.IgnoreNullableModifiersForReferenceTypes); } return base.MatchTypeToTypeId(type, typeId); } } } }
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.Threading; using Microsoft.CodeAnalysis.CSharp.Symbols; using Microsoft.CodeAnalysis.PooledObjects; using Microsoft.CodeAnalysis.RuntimeMembers; using Microsoft.CodeAnalysis.Symbols; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.CSharp { public partial class CSharpCompilation { internal readonly WellKnownMembersSignatureComparer WellKnownMemberSignatureComparer; /// <summary> /// An array of cached well known types available for use in this Compilation. /// Lazily filled by GetWellKnownType method. /// </summary> private NamedTypeSymbol?[]? _lazyWellKnownTypes; /// <summary> /// Lazy cache of well known members. /// Not yet known value is represented by ErrorTypeSymbol.UnknownResultType /// </summary> private Symbol?[]? _lazyWellKnownTypeMembers; private bool _usesNullableAttributes; private int _needsGeneratedAttributes; private bool _needsGeneratedAttributes_IsFrozen; /// <summary> /// Returns a value indicating which embedded attributes should be generated during emit phase. /// The value is set during binding the symbols that need those attributes, and is frozen on first trial to get it. /// Freezing is needed to make sure that nothing tries to modify the value after the value is read. /// </summary> internal EmbeddableAttributes GetNeedsGeneratedAttributes() { _needsGeneratedAttributes_IsFrozen = true; return (EmbeddableAttributes)_needsGeneratedAttributes; } private void SetNeedsGeneratedAttributes(EmbeddableAttributes attributes) { Debug.Assert(!_needsGeneratedAttributes_IsFrozen); ThreadSafeFlagOperations.Set(ref _needsGeneratedAttributes, (int)attributes); } internal bool GetUsesNullableAttributes() { _needsGeneratedAttributes_IsFrozen = true; return _usesNullableAttributes; } private void SetUsesNullableAttributes() { Debug.Assert(!_needsGeneratedAttributes_IsFrozen); _usesNullableAttributes = true; } /// <summary> /// Lookup member declaration in well known type used by this Compilation. /// </summary> /// <remarks> /// If a well-known member of a generic type instantiation is needed use this method to get the corresponding generic definition and /// <see cref="MethodSymbol.AsMember"/> to construct an instantiation. /// </remarks> internal Symbol? GetWellKnownTypeMember(WellKnownMember member) { Debug.Assert(member >= 0 && member < WellKnownMember.Count); // Test hook: if a member is marked missing, then return null. if (IsMemberMissing(member)) return null; if (_lazyWellKnownTypeMembers == null || ReferenceEquals(_lazyWellKnownTypeMembers[(int)member], ErrorTypeSymbol.UnknownResultType)) { if (_lazyWellKnownTypeMembers == null) { var wellKnownTypeMembers = new Symbol[(int)WellKnownMember.Count]; for (int i = 0; i < wellKnownTypeMembers.Length; i++) { wellKnownTypeMembers[i] = ErrorTypeSymbol.UnknownResultType; } Interlocked.CompareExchange(ref _lazyWellKnownTypeMembers, wellKnownTypeMembers, null); } MemberDescriptor descriptor = WellKnownMembers.GetDescriptor(member); NamedTypeSymbol type = descriptor.DeclaringTypeId <= (int)SpecialType.Count ? this.GetSpecialType((SpecialType)descriptor.DeclaringTypeId) : this.GetWellKnownType((WellKnownType)descriptor.DeclaringTypeId); Symbol? result = null; if (!type.IsErrorType()) { result = GetRuntimeMember(type, descriptor, WellKnownMemberSignatureComparer, accessWithinOpt: this.Assembly); } Interlocked.CompareExchange(ref _lazyWellKnownTypeMembers[(int)member], result, ErrorTypeSymbol.UnknownResultType); } return _lazyWellKnownTypeMembers[(int)member]; } /// <summary> /// This method handles duplicate types in a few different ways: /// - for types before C# 7, the first candidate is returned with a warning /// - for types after C# 7, the type is considered missing /// - in both cases, when BinderFlags.IgnoreCorLibraryDuplicatedTypes is set, type from corlib will not count as a duplicate /// </summary> internal NamedTypeSymbol GetWellKnownType(WellKnownType type) { Debug.Assert(type.IsValid()); bool ignoreCorLibraryDuplicatedTypes = this.Options.TopLevelBinderFlags.Includes(BinderFlags.IgnoreCorLibraryDuplicatedTypes); int index = (int)type - (int)WellKnownType.First; if (_lazyWellKnownTypes == null || _lazyWellKnownTypes[index] is null) { if (_lazyWellKnownTypes == null) { Interlocked.CompareExchange(ref _lazyWellKnownTypes, new NamedTypeSymbol[(int)WellKnownTypes.Count], null); } string mdName = type.GetMetadataName(); var warnings = DiagnosticBag.GetInstance(); NamedTypeSymbol? result; (AssemblySymbol, AssemblySymbol) conflicts = default; if (IsTypeMissing(type)) { result = null; } else { // well-known types introduced before CSharp7 allow lookup ambiguity and report a warning DiagnosticBag? legacyWarnings = (type <= WellKnownType.CSharp7Sentinel) ? warnings : null; result = this.Assembly.GetTypeByMetadataName( mdName, includeReferences: true, useCLSCompliantNameArityEncoding: true, isWellKnownType: true, conflicts: out conflicts, warnings: legacyWarnings, ignoreCorLibraryDuplicatedTypes: ignoreCorLibraryDuplicatedTypes); } if (result is null) { // TODO: should GetTypeByMetadataName rather return a missing symbol? MetadataTypeName emittedName = MetadataTypeName.FromFullName(mdName, useCLSCompliantNameArityEncoding: true); if (type.IsValueTupleType()) { CSDiagnosticInfo errorInfo; if (conflicts.Item1 is null) { Debug.Assert(conflicts.Item2 is null); errorInfo = new CSDiagnosticInfo(ErrorCode.ERR_PredefinedValueTupleTypeNotFound, emittedName.FullName); } else { errorInfo = new CSDiagnosticInfo(ErrorCode.ERR_PredefinedValueTupleTypeAmbiguous3, emittedName.FullName, conflicts.Item1, conflicts.Item2); } result = new MissingMetadataTypeSymbol.TopLevel(this.Assembly.Modules[0], ref emittedName, type, errorInfo); } else { result = new MissingMetadataTypeSymbol.TopLevel(this.Assembly.Modules[0], ref emittedName, type); } } if (Interlocked.CompareExchange(ref _lazyWellKnownTypes[index], result, null) is object) { Debug.Assert( TypeSymbol.Equals(result, _lazyWellKnownTypes[index], TypeCompareKind.ConsiderEverything2) || (_lazyWellKnownTypes[index]!.IsErrorType() && result.IsErrorType()) ); } else { AdditionalCodegenWarnings.AddRange(warnings); } warnings.Free(); } return _lazyWellKnownTypes[index]!; } internal bool IsAttributeType(TypeSymbol type) { var discardedUseSiteInfo = CompoundUseSiteInfo<AssemblySymbol>.Discarded; return IsEqualOrDerivedFromWellKnownClass(type, WellKnownType.System_Attribute, ref discardedUseSiteInfo); } internal override bool IsAttributeType(ITypeSymbol type) { return IsAttributeType(type.EnsureCSharpSymbolOrNull(nameof(type))); } internal bool IsExceptionType(TypeSymbol type, ref CompoundUseSiteInfo<AssemblySymbol> useSiteInfo) { return IsEqualOrDerivedFromWellKnownClass(type, WellKnownType.System_Exception, ref useSiteInfo); } internal bool IsReadOnlySpanType(TypeSymbol type) { return TypeSymbol.Equals(type.OriginalDefinition, GetWellKnownType(WellKnownType.System_ReadOnlySpan_T), TypeCompareKind.ConsiderEverything2); } internal bool IsEqualOrDerivedFromWellKnownClass(TypeSymbol type, WellKnownType wellKnownType, ref CompoundUseSiteInfo<AssemblySymbol> useSiteInfo) { Debug.Assert(wellKnownType == WellKnownType.System_Attribute || wellKnownType == WellKnownType.System_Exception); if (type.Kind != SymbolKind.NamedType || type.TypeKind != TypeKind.Class) { return false; } var wkType = GetWellKnownType(wellKnownType); return type.Equals(wkType, TypeCompareKind.ConsiderEverything) || type.IsDerivedFrom(wkType, TypeCompareKind.ConsiderEverything, useSiteInfo: ref useSiteInfo); } internal override bool IsSystemTypeReference(ITypeSymbolInternal type) { return TypeSymbol.Equals((TypeSymbol)type, GetWellKnownType(WellKnownType.System_Type), TypeCompareKind.ConsiderEverything2); } internal override ISymbolInternal? CommonGetWellKnownTypeMember(WellKnownMember member) { return GetWellKnownTypeMember(member); } internal override ITypeSymbolInternal CommonGetWellKnownType(WellKnownType wellknownType) { return GetWellKnownType(wellknownType); } internal static Symbol? GetRuntimeMember(NamedTypeSymbol declaringType, in MemberDescriptor descriptor, SignatureComparer<MethodSymbol, FieldSymbol, PropertySymbol, TypeSymbol, ParameterSymbol> comparer, AssemblySymbol? accessWithinOpt) { var members = declaringType.GetMembers(descriptor.Name); return GetRuntimeMember(members, descriptor, comparer, accessWithinOpt); } internal static Symbol? GetRuntimeMember(ImmutableArray<Symbol> members, in MemberDescriptor descriptor, SignatureComparer<MethodSymbol, FieldSymbol, PropertySymbol, TypeSymbol, ParameterSymbol> comparer, AssemblySymbol? accessWithinOpt) { SymbolKind targetSymbolKind; MethodKind targetMethodKind = MethodKind.Ordinary; bool isStatic = (descriptor.Flags & MemberFlags.Static) != 0; Symbol? result = null; switch (descriptor.Flags & MemberFlags.KindMask) { case MemberFlags.Constructor: targetSymbolKind = SymbolKind.Method; targetMethodKind = MethodKind.Constructor; // static constructors are never called explicitly Debug.Assert(!isStatic); break; case MemberFlags.Method: targetSymbolKind = SymbolKind.Method; break; case MemberFlags.PropertyGet: targetSymbolKind = SymbolKind.Method; targetMethodKind = MethodKind.PropertyGet; break; case MemberFlags.Field: targetSymbolKind = SymbolKind.Field; break; case MemberFlags.Property: targetSymbolKind = SymbolKind.Property; break; default: throw ExceptionUtilities.UnexpectedValue(descriptor.Flags); } foreach (var member in members) { if (!member.Name.Equals(descriptor.Name)) { continue; } if (member.Kind != targetSymbolKind || member.IsStatic != isStatic || !(member.DeclaredAccessibility == Accessibility.Public || (accessWithinOpt is object && Symbol.IsSymbolAccessible(member, accessWithinOpt)))) { continue; } switch (targetSymbolKind) { case SymbolKind.Method: { MethodSymbol method = (MethodSymbol)member; MethodKind methodKind = method.MethodKind; // Treat user-defined conversions and operators as ordinary methods for the purpose // of matching them here. if (methodKind == MethodKind.Conversion || methodKind == MethodKind.UserDefinedOperator) { methodKind = MethodKind.Ordinary; } if (method.Arity != descriptor.Arity || methodKind != targetMethodKind || ((descriptor.Flags & MemberFlags.Virtual) != 0) != (method.IsVirtual || method.IsOverride || method.IsAbstract)) { continue; } if (!comparer.MatchMethodSignature(method, descriptor.Signature)) { continue; } } break; case SymbolKind.Property: { PropertySymbol property = (PropertySymbol)member; if (((descriptor.Flags & MemberFlags.Virtual) != 0) != (property.IsVirtual || property.IsOverride || property.IsAbstract)) { continue; } if (!comparer.MatchPropertySignature(property, descriptor.Signature)) { continue; } } break; case SymbolKind.Field: if (!comparer.MatchFieldSignature((FieldSymbol)member, descriptor.Signature)) { continue; } break; default: throw ExceptionUtilities.UnexpectedValue(targetSymbolKind); } // ambiguity if (result is object) { result = null; break; } result = member; } return result; } /// <summary> /// Synthesizes a custom attribute. /// Returns null if the <paramref name="constructor"/> symbol is missing, /// or any of the members in <paramref name="namedArguments" /> are missing. /// The attribute is synthesized only if present. /// </summary> /// <param name="constructor"> /// Constructor of the attribute. If it doesn't exist, the attribute is not created. /// </param> /// <param name="arguments">Arguments to the attribute constructor.</param> /// <param name="namedArguments"> /// Takes a list of pairs of well-known members and constants. The constants /// will be passed to the field/property referenced by the well-known member. /// If the well-known member does not exist in the compilation then no attribute /// will be synthesized. /// </param> /// <param name="isOptionalUse"> /// Indicates if this particular attribute application should be considered optional. /// </param> internal SynthesizedAttributeData? TrySynthesizeAttribute( WellKnownMember constructor, ImmutableArray<TypedConstant> arguments = default, ImmutableArray<KeyValuePair<WellKnownMember, TypedConstant>> namedArguments = default, bool isOptionalUse = false) { UseSiteInfo<AssemblySymbol> info; var ctorSymbol = (MethodSymbol)Binder.GetWellKnownTypeMember(this, constructor, out info, isOptional: true); if ((object)ctorSymbol == null) { // if this assert fails, UseSiteErrors for "member" have not been checked before emitting ... Debug.Assert(isOptionalUse || WellKnownMembers.IsSynthesizedAttributeOptional(constructor)); return null; } if (arguments.IsDefault) { arguments = ImmutableArray<TypedConstant>.Empty; } ImmutableArray<KeyValuePair<string, TypedConstant>> namedStringArguments; if (namedArguments.IsDefault) { namedStringArguments = ImmutableArray<KeyValuePair<string, TypedConstant>>.Empty; } else { var builder = new ArrayBuilder<KeyValuePair<string, TypedConstant>>(namedArguments.Length); foreach (var arg in namedArguments) { var wellKnownMember = Binder.GetWellKnownTypeMember(this, arg.Key, out info, isOptional: true); if (wellKnownMember == null || wellKnownMember is ErrorTypeSymbol) { // if this assert fails, UseSiteErrors for "member" have not been checked before emitting ... Debug.Assert(WellKnownMembers.IsSynthesizedAttributeOptional(constructor)); return null; } else { builder.Add(new KeyValuePair<string, TypedConstant>( wellKnownMember.Name, arg.Value)); } } namedStringArguments = builder.ToImmutableAndFree(); } return new SynthesizedAttributeData(ctorSymbol, arguments, namedStringArguments); } internal SynthesizedAttributeData? TrySynthesizeAttribute( SpecialMember constructor, bool isOptionalUse = false) { var ctorSymbol = (MethodSymbol)this.GetSpecialTypeMember(constructor); if ((object)ctorSymbol == null) { Debug.Assert(isOptionalUse); return null; } return new SynthesizedAttributeData( ctorSymbol, arguments: ImmutableArray<TypedConstant>.Empty, namedArguments: ImmutableArray<KeyValuePair<string, TypedConstant>>.Empty); } internal SynthesizedAttributeData? SynthesizeDecimalConstantAttribute(decimal value) { bool isNegative; byte scale; uint low, mid, high; value.GetBits(out isNegative, out scale, out low, out mid, out high); var systemByte = GetSpecialType(SpecialType.System_Byte); Debug.Assert(!systemByte.HasUseSiteError); var systemUnit32 = GetSpecialType(SpecialType.System_UInt32); Debug.Assert(!systemUnit32.HasUseSiteError); return TrySynthesizeAttribute( WellKnownMember.System_Runtime_CompilerServices_DecimalConstantAttribute__ctor, ImmutableArray.Create( new TypedConstant(systemByte, TypedConstantKind.Primitive, scale), new TypedConstant(systemByte, TypedConstantKind.Primitive, (byte)(isNegative ? 128 : 0)), new TypedConstant(systemUnit32, TypedConstantKind.Primitive, high), new TypedConstant(systemUnit32, TypedConstantKind.Primitive, mid), new TypedConstant(systemUnit32, TypedConstantKind.Primitive, low) )); } internal SynthesizedAttributeData? SynthesizeDebuggerBrowsableNeverAttribute() { if (Options.OptimizationLevel != OptimizationLevel.Debug) { return null; } return TrySynthesizeAttribute(WellKnownMember.System_Diagnostics_DebuggerBrowsableAttribute__ctor, ImmutableArray.Create(new TypedConstant( GetWellKnownType(WellKnownType.System_Diagnostics_DebuggerBrowsableState), TypedConstantKind.Enum, DebuggerBrowsableState.Never))); } internal SynthesizedAttributeData? SynthesizeDebuggerStepThroughAttribute() { if (Options.OptimizationLevel != OptimizationLevel.Debug) { return null; } return TrySynthesizeAttribute(WellKnownMember.System_Diagnostics_DebuggerStepThroughAttribute__ctor); } private void EnsureEmbeddableAttributeExists(EmbeddableAttributes attribute, BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { Debug.Assert(!modifyCompilation || !_needsGeneratedAttributes_IsFrozen); if (CheckIfAttributeShouldBeEmbedded(attribute, diagnostics, location) && modifyCompilation) { SetNeedsGeneratedAttributes(attribute); } if ((attribute & (EmbeddableAttributes.NullableAttribute | EmbeddableAttributes.NullableContextAttribute)) != 0 && modifyCompilation) { SetUsesNullableAttributes(); } } internal void EnsureIsReadOnlyAttributeExists(BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { EnsureEmbeddableAttributeExists(EmbeddableAttributes.IsReadOnlyAttribute, diagnostics, location, modifyCompilation); } internal void EnsureIsByRefLikeAttributeExists(BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { EnsureEmbeddableAttributeExists(EmbeddableAttributes.IsByRefLikeAttribute, diagnostics, location, modifyCompilation); } internal void EnsureIsUnmanagedAttributeExists(BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { EnsureEmbeddableAttributeExists(EmbeddableAttributes.IsUnmanagedAttribute, diagnostics, location, modifyCompilation); } internal void EnsureNullableAttributeExists(BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { EnsureEmbeddableAttributeExists(EmbeddableAttributes.NullableAttribute, diagnostics, location, modifyCompilation); } internal void EnsureNullableContextAttributeExists(BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { EnsureEmbeddableAttributeExists(EmbeddableAttributes.NullableContextAttribute, diagnostics, location, modifyCompilation); } internal void EnsureNativeIntegerAttributeExists(BindingDiagnosticBag? diagnostics, Location location, bool modifyCompilation) { EnsureEmbeddableAttributeExists(EmbeddableAttributes.NativeIntegerAttribute, diagnostics, location, modifyCompilation); } internal bool CheckIfAttributeShouldBeEmbedded(EmbeddableAttributes attribute, BindingDiagnosticBag? diagnosticsOpt, Location locationOpt) { switch (attribute) { case EmbeddableAttributes.IsReadOnlyAttribute: return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_IsReadOnlyAttribute, WellKnownMember.System_Runtime_CompilerServices_IsReadOnlyAttribute__ctor); case EmbeddableAttributes.IsByRefLikeAttribute: return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_IsByRefLikeAttribute, WellKnownMember.System_Runtime_CompilerServices_IsByRefLikeAttribute__ctor); case EmbeddableAttributes.IsUnmanagedAttribute: return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_IsUnmanagedAttribute, WellKnownMember.System_Runtime_CompilerServices_IsUnmanagedAttribute__ctor); case EmbeddableAttributes.NullableAttribute: // If the type exists, we'll check both constructors, regardless of which one(s) we'll eventually need. return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_NullableAttribute, WellKnownMember.System_Runtime_CompilerServices_NullableAttribute__ctorByte, WellKnownMember.System_Runtime_CompilerServices_NullableAttribute__ctorTransformFlags); case EmbeddableAttributes.NullableContextAttribute: return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_NullableContextAttribute, WellKnownMember.System_Runtime_CompilerServices_NullableContextAttribute__ctor); case EmbeddableAttributes.NullablePublicOnlyAttribute: return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_NullablePublicOnlyAttribute, WellKnownMember.System_Runtime_CompilerServices_NullablePublicOnlyAttribute__ctor); case EmbeddableAttributes.NativeIntegerAttribute: // If the type exists, we'll check both constructors, regardless of which one(s) we'll eventually need. return CheckIfAttributeShouldBeEmbedded( diagnosticsOpt, locationOpt, WellKnownType.System_Runtime_CompilerServices_NativeIntegerAttribute, WellKnownMember.System_Runtime_CompilerServices_NativeIntegerAttribute__ctor, WellKnownMember.System_Runtime_CompilerServices_NativeIntegerAttribute__ctorTransformFlags); default: throw ExceptionUtilities.UnexpectedValue(attribute); } } private bool CheckIfAttributeShouldBeEmbedded(BindingDiagnosticBag? diagnosticsOpt, Location? locationOpt, WellKnownType attributeType, WellKnownMember attributeCtor, WellKnownMember? secondAttributeCtor = null) { var userDefinedAttribute = GetWellKnownType(attributeType); if (userDefinedAttribute is MissingMetadataTypeSymbol) { if (Options.OutputKind == OutputKind.NetModule) { if (diagnosticsOpt != null) { var errorReported = Binder.ReportUseSite(userDefinedAttribute, diagnosticsOpt, locationOpt); Debug.Assert(errorReported); } } else { return true; } } else if (diagnosticsOpt != null) { // This should produce diagnostics if the member is missing or bad var member = Binder.GetWellKnownTypeMember(this, attributeCtor, diagnosticsOpt, locationOpt); if (member != null && secondAttributeCtor != null) { Binder.GetWellKnownTypeMember(this, secondAttributeCtor.Value, diagnosticsOpt, locationOpt); } } return false; } internal SynthesizedAttributeData? SynthesizeDebuggableAttribute() { TypeSymbol debuggableAttribute = GetWellKnownType(WellKnownType.System_Diagnostics_DebuggableAttribute); Debug.Assert((object)debuggableAttribute != null, "GetWellKnownType unexpectedly returned null"); if (debuggableAttribute is MissingMetadataTypeSymbol) { return null; } TypeSymbol debuggingModesType = GetWellKnownType(WellKnownType.System_Diagnostics_DebuggableAttribute__DebuggingModes); RoslynDebug.Assert((object)debuggingModesType != null, "GetWellKnownType unexpectedly returned null"); if (debuggingModesType is MissingMetadataTypeSymbol) { return null; } // IgnoreSymbolStoreDebuggingMode flag is checked by the CLR, it is not referred to by the debugger. // It tells the JIT that it doesn't need to load the PDB at the time it generates jitted code. // The PDB would still be used by a debugger, or even by the runtime for putting source line information // on exception stack traces. We always set this flag to avoid overhead of JIT loading the PDB. // The theoretical scenario for not setting it would be a language compiler that wants their sequence points // at specific places, but those places don't match what CLR's heuristics calculate when scanning the IL. var ignoreSymbolStoreDebuggingMode = (FieldSymbol?)GetWellKnownTypeMember(WellKnownMember.System_Diagnostics_DebuggableAttribute_DebuggingModes__IgnoreSymbolStoreSequencePoints); if (ignoreSymbolStoreDebuggingMode is null || !ignoreSymbolStoreDebuggingMode.HasConstantValue) { return null; } int constantVal = ignoreSymbolStoreDebuggingMode.GetConstantValue(ConstantFieldsInProgress.Empty, earlyDecodingWellKnownAttributes: false).Int32Value; // Since .NET 2.0 the combinations of None, Default and DisableOptimizations have the following effect: // // None JIT optimizations enabled // Default JIT optimizations enabled // DisableOptimizations JIT optimizations enabled // Default | DisableOptimizations JIT optimizations disabled if (_options.OptimizationLevel == OptimizationLevel.Debug) { var defaultDebuggingMode = (FieldSymbol?)GetWellKnownTypeMember(WellKnownMember.System_Diagnostics_DebuggableAttribute_DebuggingModes__Default); if (defaultDebuggingMode is null || !defaultDebuggingMode.HasConstantValue) { return null; } var disableOptimizationsDebuggingMode = (FieldSymbol?)GetWellKnownTypeMember(WellKnownMember.System_Diagnostics_DebuggableAttribute_DebuggingModes__DisableOptimizations); if (disableOptimizationsDebuggingMode is null || !disableOptimizationsDebuggingMode.HasConstantValue) { return null; } constantVal |= defaultDebuggingMode.GetConstantValue(ConstantFieldsInProgress.Empty, earlyDecodingWellKnownAttributes: false).Int32Value; constantVal |= disableOptimizationsDebuggingMode.GetConstantValue(ConstantFieldsInProgress.Empty, earlyDecodingWellKnownAttributes: false).Int32Value; } if (_options.EnableEditAndContinue) { var enableEncDebuggingMode = (FieldSymbol?)GetWellKnownTypeMember(WellKnownMember.System_Diagnostics_DebuggableAttribute_DebuggingModes__EnableEditAndContinue); if (enableEncDebuggingMode is null || !enableEncDebuggingMode.HasConstantValue) { return null; } constantVal |= enableEncDebuggingMode.GetConstantValue(ConstantFieldsInProgress.Empty, earlyDecodingWellKnownAttributes: false).Int32Value; } var typedConstantDebugMode = new TypedConstant(debuggingModesType, TypedConstantKind.Enum, constantVal); return TrySynthesizeAttribute( WellKnownMember.System_Diagnostics_DebuggableAttribute__ctorDebuggingModes, ImmutableArray.Create(typedConstantDebugMode)); } /// <summary> /// Given a type <paramref name="type"/>, which is either dynamic type OR is a constructed type with dynamic type present in it's type argument tree, /// returns a synthesized DynamicAttribute with encoded dynamic transforms array. /// </summary> /// <remarks>This method is port of AttrBind::CompileDynamicAttr from the native C# compiler.</remarks> internal SynthesizedAttributeData? SynthesizeDynamicAttribute(TypeSymbol type, int customModifiersCount, RefKind refKindOpt = RefKind.None) { RoslynDebug.Assert((object)type != null); Debug.Assert(type.ContainsDynamic()); if (type.IsDynamic() && refKindOpt == RefKind.None && customModifiersCount == 0) { return TrySynthesizeAttribute(WellKnownMember.System_Runtime_CompilerServices_DynamicAttribute__ctor); } else { NamedTypeSymbol booleanType = GetSpecialType(SpecialType.System_Boolean); RoslynDebug.Assert((object)booleanType != null); var transformFlags = DynamicTransformsEncoder.Encode(type, refKindOpt, customModifiersCount, booleanType); var boolArray = ArrayTypeSymbol.CreateSZArray(booleanType.ContainingAssembly, TypeWithAnnotations.Create(booleanType)); var arguments = ImmutableArray.Create(new TypedConstant(boolArray, transformFlags)); return TrySynthesizeAttribute(WellKnownMember.System_Runtime_CompilerServices_DynamicAttribute__ctorTransformFlags, arguments); } } internal SynthesizedAttributeData? SynthesizeTupleNamesAttribute(TypeSymbol type) { RoslynDebug.Assert((object)type != null); Debug.Assert(type.ContainsTuple()); var stringType = GetSpecialType(SpecialType.System_String); RoslynDebug.Assert((object)stringType != null); var names = TupleNamesEncoder.Encode(type, stringType); Debug.Assert(!names.IsDefault, "should not need the attribute when no tuple names"); var stringArray = ArrayTypeSymbol.CreateSZArray(stringType.ContainingAssembly, TypeWithAnnotations.Create(stringType)); var args = ImmutableArray.Create(new TypedConstant(stringArray, names)); return TrySynthesizeAttribute(WellKnownMember.System_Runtime_CompilerServices_TupleElementNamesAttribute__ctorTransformNames, args); } internal SynthesizedAttributeData? SynthesizeAttributeUsageAttribute(AttributeTargets targets, bool allowMultiple, bool inherited) { var attributeTargetsType = GetWellKnownType(WellKnownType.System_AttributeTargets); var boolType = GetSpecialType(SpecialType.System_Boolean); var arguments = ImmutableArray.Create( new TypedConstant(attributeTargetsType, TypedConstantKind.Enum, targets)); var namedArguments = ImmutableArray.Create( new KeyValuePair<WellKnownMember, TypedConstant>(WellKnownMember.System_AttributeUsageAttribute__AllowMultiple, new TypedConstant(boolType, TypedConstantKind.Primitive, allowMultiple)), new KeyValuePair<WellKnownMember, TypedConstant>(WellKnownMember.System_AttributeUsageAttribute__Inherited, new TypedConstant(boolType, TypedConstantKind.Primitive, inherited))); return TrySynthesizeAttribute(WellKnownMember.System_AttributeUsageAttribute__ctor, arguments, namedArguments); } internal static class TupleNamesEncoder { public static ImmutableArray<string?> Encode(TypeSymbol type) { var namesBuilder = ArrayBuilder<string?>.GetInstance(); if (!TryGetNames(type, namesBuilder)) { namesBuilder.Free(); return default; } return namesBuilder.ToImmutableAndFree(); } public static ImmutableArray<TypedConstant> Encode(TypeSymbol type, TypeSymbol stringType) { var namesBuilder = ArrayBuilder<string?>.GetInstance(); if (!TryGetNames(type, namesBuilder)) { namesBuilder.Free(); return default; } var names = namesBuilder.SelectAsArray((name, constantType) => new TypedConstant(constantType, TypedConstantKind.Primitive, name), stringType); namesBuilder.Free(); return names; } internal static bool TryGetNames(TypeSymbol type, ArrayBuilder<string?> namesBuilder) { type.VisitType((t, builder, _ignore) => AddNames(t, builder), namesBuilder); return namesBuilder.Any(name => name != null); } private static bool AddNames(TypeSymbol type, ArrayBuilder<string?> namesBuilder) { if (type.IsTupleType) { if (type.TupleElementNames.IsDefaultOrEmpty) { // If none of the tuple elements have names, put // null placeholders in. // TODO(https://github.com/dotnet/roslyn/issues/12347): // A possible optimization could be to emit an empty attribute // if all the names are missing, but that has to be true // recursively. namesBuilder.AddMany(null, type.TupleElementTypesWithAnnotations.Length); } else { namesBuilder.AddRange(type.TupleElementNames); } } // Always recur into nested types return false; } } /// <summary> /// Used to generate the dynamic attributes for the required typesymbol. /// </summary> internal static class DynamicTransformsEncoder { internal static ImmutableArray<TypedConstant> Encode(TypeSymbol type, RefKind refKind, int customModifiersCount, TypeSymbol booleanType) { var flagsBuilder = ArrayBuilder<bool>.GetInstance(); Encode(type, customModifiersCount, refKind, flagsBuilder, addCustomModifierFlags: true); Debug.Assert(flagsBuilder.Any()); Debug.Assert(flagsBuilder.Contains(true)); var result = flagsBuilder.SelectAsArray((flag, constantType) => new TypedConstant(constantType, TypedConstantKind.Primitive, flag), booleanType); flagsBuilder.Free(); return result; } internal static ImmutableArray<bool> Encode(TypeSymbol type, RefKind refKind, int customModifiersCount) { var builder = ArrayBuilder<bool>.GetInstance(); Encode(type, customModifiersCount, refKind, builder, addCustomModifierFlags: true); return builder.ToImmutableAndFree(); } internal static ImmutableArray<bool> EncodeWithoutCustomModifierFlags(TypeSymbol type, RefKind refKind) { var builder = ArrayBuilder<bool>.GetInstance(); Encode(type, -1, refKind, builder, addCustomModifierFlags: false); return builder.ToImmutableAndFree(); } internal static void Encode(TypeSymbol type, int customModifiersCount, RefKind refKind, ArrayBuilder<bool> transformFlagsBuilder, bool addCustomModifierFlags) { Debug.Assert(!transformFlagsBuilder.Any()); if (refKind != RefKind.None) { // Native compiler encodes an extra transform flag, always false, for ref/out parameters. transformFlagsBuilder.Add(false); } if (addCustomModifierFlags) { // Native compiler encodes an extra transform flag, always false, for each custom modifier. HandleCustomModifiers(customModifiersCount, transformFlagsBuilder); type.VisitType((typeSymbol, builder, isNested) => AddFlags(typeSymbol, builder, isNested, addCustomModifierFlags: true), transformFlagsBuilder); } else { type.VisitType((typeSymbol, builder, isNested) => AddFlags(typeSymbol, builder, isNested, addCustomModifierFlags: false), transformFlagsBuilder); } } private static bool AddFlags(TypeSymbol type, ArrayBuilder<bool> transformFlagsBuilder, bool isNestedNamedType, bool addCustomModifierFlags) { // Encode transforms flag for this type and its custom modifiers (if any). switch (type.TypeKind) { case TypeKind.Dynamic: transformFlagsBuilder.Add(true); break; case TypeKind.Array: if (addCustomModifierFlags) { HandleCustomModifiers(((ArrayTypeSymbol)type).ElementTypeWithAnnotations.CustomModifiers.Length, transformFlagsBuilder); } transformFlagsBuilder.Add(false); break; case TypeKind.Pointer: if (addCustomModifierFlags) { HandleCustomModifiers(((PointerTypeSymbol)type).PointedAtTypeWithAnnotations.CustomModifiers.Length, transformFlagsBuilder); } transformFlagsBuilder.Add(false); break; case TypeKind.FunctionPointer: Debug.Assert(!isNestedNamedType); handleFunctionPointerType((FunctionPointerTypeSymbol)type, transformFlagsBuilder, addCustomModifierFlags); // Function pointer types have nested custom modifiers and refkinds in line with types, and visit all their nested types // as part of this call. // We need a different way to indicate that we should not recurse for this type, but should continue walking for other // types. https://github.com/dotnet/roslyn/issues/44160 return true; default: // Encode transforms flag for this type. // For nested named types, a single flag (false) is encoded for the entire type name, followed by flags for all of the type arguments. // For example, for type "A<T>.B<dynamic>", encoded transform flags are: // { // false, // Type "A.B" // false, // Type parameter "T" // true, // Type parameter "dynamic" // } if (!isNestedNamedType) { transformFlagsBuilder.Add(false); } break; } // Continue walking types return false; static void handleFunctionPointerType(FunctionPointerTypeSymbol funcPtr, ArrayBuilder<bool> transformFlagsBuilder, bool addCustomModifierFlags) { Func<TypeSymbol, (ArrayBuilder<bool>, bool), bool, bool> visitor = (TypeSymbol type, (ArrayBuilder<bool> builder, bool addCustomModifierFlags) param, bool isNestedNamedType) => AddFlags(type, param.builder, isNestedNamedType, param.addCustomModifierFlags); // The function pointer type itself gets a false transformFlagsBuilder.Add(false); var sig = funcPtr.Signature; handle(sig.RefKind, sig.RefCustomModifiers, sig.ReturnTypeWithAnnotations); foreach (var param in sig.Parameters) { handle(param.RefKind, param.RefCustomModifiers, param.TypeWithAnnotations); } void handle(RefKind refKind, ImmutableArray<CustomModifier> customModifiers, TypeWithAnnotations twa) { if (addCustomModifierFlags) { HandleCustomModifiers(customModifiers.Length, transformFlagsBuilder); } if (refKind != RefKind.None) { transformFlagsBuilder.Add(false); } if (addCustomModifierFlags) { HandleCustomModifiers(twa.CustomModifiers.Length, transformFlagsBuilder); } twa.Type.VisitType(visitor, (transformFlagsBuilder, addCustomModifierFlags)); } } } private static void HandleCustomModifiers(int customModifiersCount, ArrayBuilder<bool> transformFlagsBuilder) { // Native compiler encodes an extra transforms flag, always false, for each custom modifier. transformFlagsBuilder.AddMany(false, customModifiersCount); } } internal static class NativeIntegerTransformsEncoder { internal static void Encode(ArrayBuilder<bool> builder, TypeSymbol type) { type.VisitType((typeSymbol, builder, isNested) => AddFlags(typeSymbol, builder), builder); } private static bool AddFlags(TypeSymbol type, ArrayBuilder<bool> builder) { switch (type.SpecialType) { case SpecialType.System_IntPtr: case SpecialType.System_UIntPtr: builder.Add(type.IsNativeIntegerType); break; } // Continue walking types return false; } } internal class SpecialMembersSignatureComparer : SignatureComparer<MethodSymbol, FieldSymbol, PropertySymbol, TypeSymbol, ParameterSymbol> { // Fields public static readonly SpecialMembersSignatureComparer Instance = new SpecialMembersSignatureComparer(); // Methods protected SpecialMembersSignatureComparer() { } protected override TypeSymbol? GetMDArrayElementType(TypeSymbol type) { if (type.Kind != SymbolKind.ArrayType) { return null; } ArrayTypeSymbol array = (ArrayTypeSymbol)type; if (array.IsSZArray) { return null; } return array.ElementType; } protected override TypeSymbol GetFieldType(FieldSymbol field) { return field.Type; } protected override TypeSymbol GetPropertyType(PropertySymbol property) { return property.Type; } protected override TypeSymbol? GetGenericTypeArgument(TypeSymbol type, int argumentIndex) { if (type.Kind != SymbolKind.NamedType) { return null; } NamedTypeSymbol named = (NamedTypeSymbol)type; if (named.Arity <= argumentIndex) { return null; } if ((object)named.ContainingType != null) { return null; } return named.TypeArgumentsWithAnnotationsNoUseSiteDiagnostics[argumentIndex].Type; } protected override TypeSymbol? GetGenericTypeDefinition(TypeSymbol type) { if (type.Kind != SymbolKind.NamedType) { return null; } NamedTypeSymbol named = (NamedTypeSymbol)type; if ((object)named.ContainingType != null) { return null; } if (named.Arity == 0) { return null; } return (NamedTypeSymbol)named.OriginalDefinition; } protected override ImmutableArray<ParameterSymbol> GetParameters(MethodSymbol method) { return method.Parameters; } protected override ImmutableArray<ParameterSymbol> GetParameters(PropertySymbol property) { return property.Parameters; } protected override TypeSymbol GetParamType(ParameterSymbol parameter) { return parameter.Type; } protected override TypeSymbol? GetPointedToType(TypeSymbol type) { return type.Kind == SymbolKind.PointerType ? ((PointerTypeSymbol)type).PointedAtType : null; } protected override TypeSymbol GetReturnType(MethodSymbol method) { return method.ReturnType; } protected override TypeSymbol? GetSZArrayElementType(TypeSymbol type) { if (type.Kind != SymbolKind.ArrayType) { return null; } ArrayTypeSymbol array = (ArrayTypeSymbol)type; if (!array.IsSZArray) { return null; } return array.ElementType; } protected override bool IsByRefParam(ParameterSymbol parameter) { return parameter.RefKind != RefKind.None; } protected override bool IsByRefMethod(MethodSymbol method) { return method.RefKind != RefKind.None; } protected override bool IsByRefProperty(PropertySymbol property) { return property.RefKind != RefKind.None; } protected override bool IsGenericMethodTypeParam(TypeSymbol type, int paramPosition) { if (type.Kind != SymbolKind.TypeParameter) { return false; } TypeParameterSymbol typeParam = (TypeParameterSymbol)type; if (typeParam.ContainingSymbol.Kind != SymbolKind.Method) { return false; } return (typeParam.Ordinal == paramPosition); } protected override bool IsGenericTypeParam(TypeSymbol type, int paramPosition) { if (type.Kind != SymbolKind.TypeParameter) { return false; } TypeParameterSymbol typeParam = (TypeParameterSymbol)type; if (typeParam.ContainingSymbol.Kind != SymbolKind.NamedType) { return false; } return (typeParam.Ordinal == paramPosition); } protected override bool MatchArrayRank(TypeSymbol type, int countOfDimensions) { if (type.Kind != SymbolKind.ArrayType) { return false; } ArrayTypeSymbol array = (ArrayTypeSymbol)type; return (array.Rank == countOfDimensions); } protected override bool MatchTypeToTypeId(TypeSymbol type, int typeId) { if ((int)type.OriginalDefinition.SpecialType == typeId) { if (type.IsDefinition) { return true; } return type.Equals(type.OriginalDefinition, TypeCompareKind.IgnoreNullableModifiersForReferenceTypes); } return false; } } internal sealed class WellKnownMembersSignatureComparer : SpecialMembersSignatureComparer { private readonly CSharpCompilation _compilation; public WellKnownMembersSignatureComparer(CSharpCompilation compilation) { _compilation = compilation; } protected override bool MatchTypeToTypeId(TypeSymbol type, int typeId) { WellKnownType wellKnownId = (WellKnownType)typeId; if (wellKnownId.IsWellKnownType()) { return type.Equals(_compilation.GetWellKnownType(wellKnownId), TypeCompareKind.IgnoreNullableModifiersForReferenceTypes); } return base.MatchTypeToTypeId(type, typeId); } } } }
-1