Skip to content
Merged
75 changes: 75 additions & 0 deletions src/System.Windows.Forms.Design/src/Resources/SR.resx
Original file line number Diff line number Diff line change
Expand Up @@ -300,4 +300,79 @@
<data name="ExtenderProviderServiceDuplicateProvider" xml:space="preserve">
<value>The extender provider {0} has already been added as an extender. Adding another would result in duplicate properties.</value>
</data>
<data name="SerializerBadElementTypes" xml:space="preserve">
<value>Elements of type {0} are not supported. The serializer expects the element to be one of the following: {1}.</value>
</data>
<data name="SerializerFieldTargetEvalFailed" xml:space="preserve">
<value>The field '{0}' could not be found on the target object. Make sure that the field is defined as an instance variable on the target object and has the correct scope.</value>
</data>
<data name="SerializerNoRootExpression" xml:space="preserve">
<value>The source code contains a reference to the class definition, but the class definition cannot be found.</value>
</data>
<data name="SerializerNoSuchEvent" xml:space="preserve">
<value>The type '{0}' has no event named '{1}'.</value>
</data>
<data name="SerializerNoSuchField" xml:space="preserve">
<value>The type '{0}' has no field named '{1}'.</value>
</data>
<data name="SerializerNoSuchProperty" xml:space="preserve">
<value>The type '{0}' has no property named '{1}'.</value>
</data>
<data name="SerializerResourceException" xml:space="preserve">
<value>Error reading resources from the resource file for the culture {0}: {1}</value>
</data>
<data name="SerializerResourceExceptionInvariant" xml:space="preserve">
<value>Error reading resources from the resource file for the default culture: {0}</value>
</data>
<data name="SerializerTypeNotFound" xml:space="preserve">
<value>Could not find type '{0}'. Please make sure that the assembly that contains this type is referenced. If this type is a part of your development project, make sure that the project has been successfully built using settings for your current platform or Any CPU.</value>
</data>
<data name="SerializerUndeclaredName" xml:space="preserve">
<value>The variable '{0}' is either undeclared or was never assigned.</value>
</data>
<data name="TypeNotFoundInTargetFramework" xml:space="preserve">
<value>Type '{0}' is not available in the target framework.</value>
</data>
<data name="SerializationManagerAreadyInSession" xml:space="preserve">
<value>You cannot create a new session because this serialization manager already has an active serialization session.</value>
</data>
<data name="SerializationManagerDuplicateComponentDecl" xml:space="preserve">
<value>Duplicate declaration of member '{0}'</value>
</data>
<data name="SerializationManagerNameInUse" xml:space="preserve">
<value>The name '{0}' is already used by another object.</value>
</data>
<data name="SerializationManagerNoMatchingCtor" xml:space="preserve">
<value>Type '{0}' does not have a constructor with parameters of types {1}.</value>
</data>
<data name="SerializationManagerNoSession" xml:space="preserve">
<value>This method cannot be invoked because the serialization manager does not have an active serialization session.</value>
</data>
<data name="SerializationManagerObjectHasName" xml:space="preserve">
<value>Cannot name the object '{0}' because it is already named '{1}'.</value>
</data>
<data name="SerializationManagerWithinSession" xml:space="preserve">
<value>This method cannot be invoked because the serialization manager has an active serialization session.</value>
</data>
<data name="SerializerLostStatements" xml:space="preserve">
<value>Code statements for the object '{0}' were lost during serialization. This may have been a result of another object misbehaving during serialization.</value>
</data>
<data name="SerializerNoSerializerForComponent" xml:space="preserve">
<value>The object '{0}' failed to serialize itself. It may not support code generation.</value>
</data>
<data name="SerializerInvalidArrayRank" xml:space="preserve">
<value>Array rank '{0}' is too high. Visual Studio can only save and load arrays with a rank of 1.</value>
</data>
<data name="SerializerMemberTypeNotSerializable" xml:space="preserve">
<value>Members of type '{0}' cannot be serialized.</value>
</data>
<data name="CodeDomComponentSerializationServiceDeserializationError" xml:space="preserve">
<value>Complete deserialization of {0} failed.</value>
</data>
<data name="CodeDomComponentSerializationServiceUnknownStore" xml:space="preserve">
<value>This type of serialization store is not supported. Use a store returned by the CreateStore method.</value>
</data>
<data name="CodeDomComponentSerializationServiceClosedStore" xml:space="preserve">
<value>The serialization store is closed. New objects cannot be added to a closed store.</value>
</data>
</root>
125 changes: 125 additions & 0 deletions src/System.Windows.Forms.Design/src/Resources/xlf/SR.cs.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@
<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="../SR.resx">
<body>
<trans-unit id="CodeDomComponentSerializationServiceClosedStore">
<source>The serialization store is closed. New objects cannot be added to a closed store.</source>
<target state="new">The serialization store is closed. New objects cannot be added to a closed store.</target>
<note />
</trans-unit>
<trans-unit id="CodeDomComponentSerializationServiceDeserializationError">
<source>Complete deserialization of {0} failed.</source>
<target state="new">Complete deserialization of {0} failed.</target>
<note />
</trans-unit>
<trans-unit id="CodeDomComponentSerializationServiceUnknownStore">
<source>This type of serialization store is not supported. Use a store returned by the CreateStore method.</source>
<target state="new">This type of serialization store is not supported. Use a store returned by the CreateStore method.</target>
<note />
</trans-unit>
<trans-unit id="ComponentDesignerAddEvent">
<source>Adding event '{0}'</source>
<target state="new">Adding event '{0}'</target>
Expand Down Expand Up @@ -237,6 +252,111 @@
<target state="translated">Winforms Designer není na této platformě podporován.</target>
<note />
</trans-unit>
<trans-unit id="SerializationManagerAreadyInSession">
<source>You cannot create a new session because this serialization manager already has an active serialization session.</source>
<target state="new">You cannot create a new session because this serialization manager already has an active serialization session.</target>
<note />
</trans-unit>
<trans-unit id="SerializationManagerDuplicateComponentDecl">
<source>Duplicate declaration of member '{0}'</source>
<target state="new">Duplicate declaration of member '{0}'</target>
<note />
</trans-unit>
<trans-unit id="SerializationManagerNameInUse">
<source>The name '{0}' is already used by another object.</source>
<target state="new">The name '{0}' is already used by another object.</target>
<note />
</trans-unit>
<trans-unit id="SerializationManagerNoMatchingCtor">
<source>Type '{0}' does not have a constructor with parameters of types {1}.</source>
<target state="new">Type '{0}' does not have a constructor with parameters of types {1}.</target>
<note />
</trans-unit>
<trans-unit id="SerializationManagerNoSession">
<source>This method cannot be invoked because the serialization manager does not have an active serialization session.</source>
<target state="new">This method cannot be invoked because the serialization manager does not have an active serialization session.</target>
<note />
</trans-unit>
<trans-unit id="SerializationManagerObjectHasName">
<source>Cannot name the object '{0}' because it is already named '{1}'.</source>
<target state="new">Cannot name the object '{0}' because it is already named '{1}'.</target>
<note />
</trans-unit>
<trans-unit id="SerializationManagerWithinSession">
<source>This method cannot be invoked because the serialization manager has an active serialization session.</source>
<target state="new">This method cannot be invoked because the serialization manager has an active serialization session.</target>
<note />
</trans-unit>
<trans-unit id="SerializerBadElementTypes">
<source>Elements of type {0} are not supported. The serializer expects the element to be one of the following: {1}.</source>
<target state="new">Elements of type {0} are not supported. The serializer expects the element to be one of the following: {1}.</target>
<note />
</trans-unit>
<trans-unit id="SerializerFieldTargetEvalFailed">
<source>The field '{0}' could not be found on the target object. Make sure that the field is defined as an instance variable on the target object and has the correct scope.</source>
<target state="new">The field '{0}' could not be found on the target object. Make sure that the field is defined as an instance variable on the target object and has the correct scope.</target>
<note />
</trans-unit>
<trans-unit id="SerializerInvalidArrayRank">
<source>Array rank '{0}' is too high. Visual Studio can only save and load arrays with a rank of 1.</source>
<target state="new">Array rank '{0}' is too high. Visual Studio can only save and load arrays with a rank of 1.</target>
<note />
</trans-unit>
<trans-unit id="SerializerLostStatements">
<source>Code statements for the object '{0}' were lost during serialization. This may have been a result of another object misbehaving during serialization.</source>
<target state="new">Code statements for the object '{0}' were lost during serialization. This may have been a result of another object misbehaving during serialization.</target>
<note />
</trans-unit>
<trans-unit id="SerializerMemberTypeNotSerializable">
<source>Members of type '{0}' cannot be serialized.</source>
<target state="new">Members of type '{0}' cannot be serialized.</target>
<note />
</trans-unit>
<trans-unit id="SerializerNoRootExpression">
<source>The source code contains a reference to the class definition, but the class definition cannot be found.</source>
<target state="new">The source code contains a reference to the class definition, but the class definition cannot be found.</target>
<note />
</trans-unit>
<trans-unit id="SerializerNoSerializerForComponent">
<source>The object '{0}' failed to serialize itself. It may not support code generation.</source>
<target state="new">The object '{0}' failed to serialize itself. It may not support code generation.</target>
<note />
</trans-unit>
<trans-unit id="SerializerNoSuchEvent">
<source>The type '{0}' has no event named '{1}'.</source>
<target state="new">The type '{0}' has no event named '{1}'.</target>
<note />
</trans-unit>
<trans-unit id="SerializerNoSuchField">
<source>The type '{0}' has no field named '{1}'.</source>
<target state="new">The type '{0}' has no field named '{1}'.</target>
<note />
</trans-unit>
<trans-unit id="SerializerNoSuchProperty">
<source>The type '{0}' has no property named '{1}'.</source>
<target state="new">The type '{0}' has no property named '{1}'.</target>
<note />
</trans-unit>
<trans-unit id="SerializerResourceException">
<source>Error reading resources from the resource file for the culture {0}: {1}</source>
<target state="new">Error reading resources from the resource file for the culture {0}: {1}</target>
<note />
</trans-unit>
<trans-unit id="SerializerResourceExceptionInvariant">
<source>Error reading resources from the resource file for the default culture: {0}</source>
<target state="new">Error reading resources from the resource file for the default culture: {0}</target>
<note />
</trans-unit>
<trans-unit id="SerializerTypeNotFound">
<source>Could not find type '{0}'. Please make sure that the assembly that contains this type is referenced. If this type is a part of your development project, make sure that the project has been successfully built using settings for your current platform or Any CPU.</source>
<target state="new">Could not find type '{0}'. Please make sure that the assembly that contains this type is referenced. If this type is a part of your development project, make sure that the project has been successfully built using settings for your current platform or Any CPU.</target>
<note />
</trans-unit>
<trans-unit id="SerializerUndeclaredName">
<source>The variable '{0}' is either undeclared or was never assigned.</source>
<target state="new">The variable '{0}' is either undeclared or was never assigned.</target>
<note />
</trans-unit>
<trans-unit id="ToolboxItemInvalidKey">
<source>Argument should be a non-empty string.</source>
<target state="new">Argument should be a non-empty string.</target>
Expand All @@ -257,6 +377,11 @@
<target state="new">Data type {0} is not serializable. Items added to a property dictionary must be serializable.</target>
<note />
</trans-unit>
<trans-unit id="TypeNotFoundInTargetFramework">
<source>Type '{0}' is not available in the target framework.</source>
<target state="new">Type '{0}' is not available in the target framework.</target>
<note />
</trans-unit>
<trans-unit id="UndoEngineComponentAdd0">
<source>Add Component</source>
<target state="new">Add Component</target>
Expand Down
Loading